diff options
author | Seth Alves <alves@src.gnome.org> | 2000-07-26 03:20:32 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-07-26 03:20:32 +0800 |
commit | be392a44144c4c4a1083d04c6ad948d4d63eb28e (patch) | |
tree | a8bdbd0b41851da4b9844f00ecb53dbcf15a0345 /addressbook | |
parent | 43ef719142fe37dc8aa8c9ae32d8f44002036aaf (diff) | |
download | gsoc2013-evolution-be392a44144c4c4a1083d04c6ad948d4d63eb28e.tar gsoc2013-evolution-be392a44144c4c4a1083d04c6ad948d4d63eb28e.tar.gz gsoc2013-evolution-be392a44144c4c4a1083d04c6ad948d4d63eb28e.tar.bz2 gsoc2013-evolution-be392a44144c4c4a1083d04c6ad948d4d63eb28e.tar.lz gsoc2013-evolution-be392a44144c4c4a1083d04c6ad948d4d63eb28e.tar.xz gsoc2013-evolution-be392a44144c4c4a1083d04c6ad948d4d63eb28e.tar.zst gsoc2013-evolution-be392a44144c4c4a1083d04c6ad948d4d63eb28e.zip |
build static versions of some util libraries for the conduit to link with
svn path=/trunk/; revision=4320
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 8 | ||||
-rw-r--r-- | addressbook/Makefile.am | 2 | ||||
-rw-r--r-- | addressbook/backend/ebook/Makefile.am | 9 | ||||
-rw-r--r-- | addressbook/conduit/Makefile.am | 5 | ||||
-rw-r--r-- | addressbook/conduit/address-conduit.c | 6 | ||||
-rw-r--r-- | addressbook/ename/Makefile.am | 5 |
6 files changed, 30 insertions, 5 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 748c8a0c4e..553ba6b3ac 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,11 @@ +2000-07-25 Seth Alves <alves@hungry.com> + + * ename/Makefile.am (libename_static_la_LDFLAGS): build static + version of the library for address conduit to use + + * backend/ebook/Makefile.am: build a static version of the library + to link into the conduit + 2000-07-25 Christopher James Lahey <clahey@helixcode.com> * backend/ebook/e-card.c: Added a #define for diff --git a/addressbook/Makefile.am b/addressbook/Makefile.am index 044eb9fa12..92b5fe5607 100644 --- a/addressbook/Makefile.am +++ b/addressbook/Makefile.am @@ -1,2 +1,2 @@ SUBDIRS = \ - ename backend printing contact-editor gui + ename backend printing contact-editor gui conduit diff --git a/addressbook/backend/ebook/Makefile.am b/addressbook/backend/ebook/Makefile.am index c28b911271..ed05a02fcd 100644 --- a/addressbook/backend/ebook/Makefile.am +++ b/addressbook/backend/ebook/Makefile.am @@ -50,6 +50,15 @@ libebookinclude_HEADERS = \ e-card-types.h \ e-card.h + +# +# make a static library for use by addressbook's conduit's shared library +# +noinst_LTLIBRARIES = libebook-static.la +libebook_static_la_SOURCES = $(libebook_la_SOURCES) +libebook_static_la_LDFLAGS = --all-static + + test_client_SOURCES = \ test-client.c diff --git a/addressbook/conduit/Makefile.am b/addressbook/conduit/Makefile.am index 01c37f4a30..056045001f 100644 --- a/addressbook/conduit/Makefile.am +++ b/addressbook/conduit/Makefile.am @@ -42,8 +42,9 @@ libaddress_conduit_la_LDFLAGS = \ -rpath $(libdir) libaddress_conduit_la_LIBADD = \ - $(top_builddir)/calendar/cal-client/libcal-client-static.la \ - $(top_builddir)/calendar/cal-util/libcal-util-static.la \ + $(top_builddir)/addressbook/backend/ebook/libebook-static.la \ + $(top_builddir)/e-util/libeutil-static.la \ + $(top_builddir)/addressbook/ename/libename-static.la \ $(top_builddir)/libversit/libversit.la \ $(top_builddir)/libical/src/libical/libical-static.la \ $(BONOBO_VFS_GNOME_LIBS) \ diff --git a/addressbook/conduit/address-conduit.c b/addressbook/conduit/address-conduit.c index 3c6ccf573b..d6168abb90 100644 --- a/addressbook/conduit/address-conduit.c +++ b/addressbook/conduit/address-conduit.c @@ -69,7 +69,7 @@ conduit_destroy_configuration(AddressbookConduitCfg **c) { g_return_if_fail(c!=NULL); g_return_if_fail(*c!=NULL); - g_free(*c); + //g_free(*c); FIX ME *c = NULL; } @@ -898,7 +898,9 @@ conduit_get_gpilot_conduit (guint32 pilotId) printf ("in address's conduit_get_gpilot_conduit\n"); - retval = gnome_pilot_conduit_standard_abs_new ("AddressDB", 0x746F646F); + retval = gnome_pilot_conduit_standard_abs_new ("AddressDB", + 0x61646472); + g_assert (retval != NULL); gnome_pilot_conduit_construct(GNOME_PILOT_CONDUIT(retval),"AddressConduit"); diff --git a/addressbook/ename/Makefile.am b/addressbook/ename/Makefile.am index e30796574a..25a67a929c 100644 --- a/addressbook/ename/Makefile.am +++ b/addressbook/ename/Makefile.am @@ -30,6 +30,11 @@ libenameinclude_HEADERS = \ e-name-western.h +noinst_LTLIBRARIES = libename-static.la +libename_static_la_SOURCES = $(libename_la_SOURCES) +libename_static_la_LDFLAGS = --all-static + + noinst_PROGRAMS = \ test-ename-western \ test-ename-western-gtk |