diff options
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/Makefile.am | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 20297da0be..38657f1458 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,7 @@ +2001-08-20 JP Rosevear <jpr@ximian.com> + + * Makefile.am: build a static camel for the addressbook conduit + 2001-08-20 Ettore Perazzoli <ettore@ximian.com> * providers/local/camel-mbox-summary.c (mbox_summary_sync_full): diff --git a/camel/Makefile.am b/camel/Makefile.am index 572ad3bafa..5cb85553f3 100644 --- a/camel/Makefile.am +++ b/camel/Makefile.am @@ -8,6 +8,7 @@ providerdir = $(libdir)/evolution/camel-providers/$(VERSION) sbin_PROGRAMS = camel-lock-helper lib_LTLIBRARIES = libcamel.la +noinst_LTLIBRARIES = libcamel-static.la INCLUDES = -I.. -I$(srcdir)/.. \ -I$(top_srcdir)/intl \ @@ -200,6 +201,9 @@ libcamel_la_LIBADD = $(top_builddir)/e-util/libeutil.la \ $(NSS_LDFLAGS) \ $(OPENSSL_LDFLAGS) +libcamel_static_la_SOURCES = $(libcamel_la_SOURCES) +libcamel_static_la_LIBADD = $(libcamel_la_LIBADD) +libcamel_static_la_LDFLAGS = --all-static camel-lock-helper: camel-lock-helper.o camel-lock.o $(CC) -o $@ $^ -I$(srcdir)/.. -I$(srcdir) |