diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-11-14 14:07:34 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-11-14 14:07:34 +0800 |
commit | 779f6f2b35ca464614ebe5e4447ceb297bbc67b9 (patch) | |
tree | 79ffbc89655633dc1277013e676c811d8baac684 /e-util | |
parent | f8eb0e8982b4a596123edcd02d30835ee692c47e (diff) | |
download | gsoc2013-evolution-779f6f2b35ca464614ebe5e4447ceb297bbc67b9.tar.gz gsoc2013-evolution-779f6f2b35ca464614ebe5e4447ceb297bbc67b9.tar.zst gsoc2013-evolution-779f6f2b35ca464614ebe5e4447ceb297bbc67b9.zip |
Remove `-lc'. It makes the mailer do strange things when it calls
* Makefile.am (libeutil_la_LIBADD): Remove `-lc'. It makes the
mailer do strange things when it calls `fork()', thus breaking
e.g. mail sending through sendmail.
svn path=/trunk/; revision=14694
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 6 | ||||
-rw-r--r-- | e-util/Makefile.am | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index b0aa0c53da..ff7722a872 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,9 @@ +2001-11-13 Ettore Perazzoli <ettore@ximian.com> + + * Makefile.am (libeutil_la_LIBADD): Remove `-lc'. It makes the + mailer do strange things when it calls `fork()', thus breaking + e.g. mail sending through sendmail. + 2001-11-13 JP Rosevear <jpr@ximian.com> * e-pilot-map.c (real_e_pilot_map_insert): only insert non-0 pids diff --git a/e-util/Makefile.am b/e-util/Makefile.am index ea8367db19..4e6199b3d1 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -66,7 +66,7 @@ libeutil_la_SOURCES = \ md5-utils.c \ md5-utils.h -libeutil_la_LIBADD = -lc $(GAL_LIBS) +libeutil_la_LIBADD = $(GAL_LIBS) libeutil_static_la_SOURCES = $(libeutil_la_SOURCES) libeutil_static_la_LIBADD = $(libeutil_la_LIBADD) |