diff options
author | Seth Alves <alves@src.gnome.org> | 2000-07-13 02:26:16 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-07-13 02:26:16 +0800 |
commit | ed332931e1de0b90d90f887e412308d38253e0bc (patch) | |
tree | 68663330a489dd72de798b5ef584acbc88b44b5d /calendar/cal-client | |
parent | 355d3fae6600497b302fb494efee628197ac4a5f (diff) | |
download | gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.gz gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.bz2 gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.lz gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.xz gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.zst gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.zip |
fixed various problems
* conduits/calendar/calendar-conduit.c: fixed various problems
* cal-client/Makefile.am: build a static version of the library
to link with the conduits
* cal-util/Makefile.am: same
svn path=/trunk/; revision=4116
Diffstat (limited to 'calendar/cal-client')
-rw-r--r-- | calendar/cal-client/.cvsignore | 1 | ||||
-rw-r--r-- | calendar/cal-client/Makefile.am | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/calendar/cal-client/.cvsignore b/calendar/cal-client/.cvsignore index bd3fc7c91c..6ac95f13c4 100644 --- a/calendar/cal-client/.cvsignore +++ b/calendar/cal-client/.cvsignore @@ -14,3 +14,4 @@ cal-client.lo cal-listener.lo libcal-client.la client-test +libcal-client-static.la
\ No newline at end of file diff --git a/calendar/cal-client/Makefile.am b/calendar/cal-client/Makefile.am index 9aef9d2fee..8a88215257 100644 --- a/calendar/cal-client/Makefile.am +++ b/calendar/cal-client/Makefile.am @@ -43,6 +43,14 @@ libcal_clientinclude_HEADERS = \ # +# make a static library for use by calendar conduit's shared library +# +noinst_LTLIBRARIES = libcal-client-static.la +libcal_client_static_la_SOURCES = $(libcal_client_la_SOURCES) +libcal_client_static_la_LDFLAGS = --all-static + + +# # client-test program # |