aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-08-20 21:22:23 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-08-20 21:22:23 +0800
commit85f3f150b2b57a691357af4f2420f174d127c340 (patch)
tree4405a8a9b2d224b5e8d1cef08bf728e732af1af4
parent2abeceb4cd2cb358ba256e7165dd0701fe53576f (diff)
downloadgsoc2013-evolution-85f3f150b2b57a691357af4f2420f174d127c340.tar
gsoc2013-evolution-85f3f150b2b57a691357af4f2420f174d127c340.tar.gz
gsoc2013-evolution-85f3f150b2b57a691357af4f2420f174d127c340.tar.bz2
gsoc2013-evolution-85f3f150b2b57a691357af4f2420f174d127c340.tar.lz
gsoc2013-evolution-85f3f150b2b57a691357af4f2420f174d127c340.tar.xz
gsoc2013-evolution-85f3f150b2b57a691357af4f2420f174d127c340.tar.zst
gsoc2013-evolution-85f3f150b2b57a691357af4f2420f174d127c340.zip
build a static camel for the addressbook conduit
2001-08-20 JP Rosevear <jpr@ximian.com> * Makefile.am: build a static camel for the addressbook conduit svn path=/trunk/; revision=12287
-rw-r--r--camel/ChangeLog4
-rw-r--r--camel/Makefile.am4
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)