aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@nuclecu.unam.mx>2000-02-19 10:04:56 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2000-02-19 10:04:56 +0800
commit9124eeff4c359c9188a296194bb5ac5e9b492a38 (patch)
tree40b41ca7c192cd8cb8a8cdfc15a3fc816ddba8d8
parentac051f19eea6551b5e8075e30cd00b4f25c9b1cb (diff)
downloadgsoc2013-evolution-9124eeff4c359c9188a296194bb5ac5e9b492a38.tar
gsoc2013-evolution-9124eeff4c359c9188a296194bb5ac5e9b492a38.tar.gz
gsoc2013-evolution-9124eeff4c359c9188a296194bb5ac5e9b492a38.tar.bz2
gsoc2013-evolution-9124eeff4c359c9188a296194bb5ac5e9b492a38.tar.lz
gsoc2013-evolution-9124eeff4c359c9188a296194bb5ac5e9b492a38.tar.xz
gsoc2013-evolution-9124eeff4c359c9188a296194bb5ac5e9b492a38.tar.zst
gsoc2013-evolution-9124eeff4c359c9188a296194bb5ac5e9b492a38.zip
For now. make a libibex.a library so we can link it with the camel
2000-02-18 Miguel de Icaza <miguel@nuclecu.unam.mx> * Makefile.am (lookup_LDADD): For now. make a libibex.a library so we can link it with the camel provider. I hate libtool svn path=/trunk/; revision=1852
-rw-r--r--libibex/ChangeLog5
-rw-r--r--libibex/Makefile.am8
2 files changed, 8 insertions, 5 deletions
diff --git a/libibex/ChangeLog b/libibex/ChangeLog
index c527f6ec4b..4246d9b9d4 100644
--- a/libibex/ChangeLog
+++ b/libibex/ChangeLog
@@ -1,3 +1,8 @@
+2000-02-18 Miguel de Icaza <miguel@nuclecu.unam.mx>
+
+ * Makefile.am (lookup_LDADD): For now. make a libibex.a library so
+ we can link it with the camel provider. I hate libtool
+
2000-02-16 Dan Winship <danw@helixcode.com>
* Makefile.am: automakify
diff --git a/libibex/Makefile.am b/libibex/Makefile.am
index 6bbd72034f..2508d18acb 100644
--- a/libibex/Makefile.am
+++ b/libibex/Makefile.am
@@ -1,10 +1,8 @@
## Process this file with automake to produce Makefile.in
-lib_LTLIBRARIES = libibex.la
+noinst_LIBRARIES = libibex.a
-libibex_la_SOURCES = file.c index.c find.c words.c
-
-include_HEADERS = ibex.h
+libibex_a_SOURCES = file.c index.c find.c words.c ibex.h
noinst_HEADERS = ibex_internal.h
@@ -19,4 +17,4 @@ mkindex_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS)
lookup_SOURCES = lookup.c
-lookup_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS)
+lookup_LDADD = libibex.a $(GLIB_LIBS) $(UNICODE_LIBS)