diff options
author | Peter Teichman <teichman@src.gnome.org> | 1999-08-03 01:43:13 +0800 |
---|---|---|
committer | Peter Teichman <teichman@src.gnome.org> | 1999-08-03 01:43:13 +0800 |
commit | ffca276dba406039f74f79b275e2ca54be5c2a08 (patch) | |
tree | 3a26725ec77cc780e42b93495d0a679273f6db17 | |
parent | b83d509e961197fa3bc182af8205fd554405a905 (diff) | |
download | gsoc2013-evolution-ffca276dba406039f74f79b275e2ca54be5c2a08.tar gsoc2013-evolution-ffca276dba406039f74f79b275e2ca54be5c2a08.tar.gz gsoc2013-evolution-ffca276dba406039f74f79b275e2ca54be5c2a08.tar.bz2 gsoc2013-evolution-ffca276dba406039f74f79b275e2ca54be5c2a08.tar.lz gsoc2013-evolution-ffca276dba406039f74f79b275e2ca54be5c2a08.tar.xz gsoc2013-evolution-ffca276dba406039f74f79b275e2ca54be5c2a08.tar.zst gsoc2013-evolution-ffca276dba406039f74f79b275e2ca54be5c2a08.zip |
don't try to run GNOME_CONDUIT_CHECK if it doesn't exist
* configure.in: don't try to run GNOME_CONDUIT_CHECK if it
doesn't exist
* gncal/Makefile.am: libcalendar_conduit now installs
svn path=/trunk/; revision=1066
-rw-r--r-- | calendar/ChangeLog | 3 | ||||
-rw-r--r-- | calendar/Makefile.am | 3 | ||||
-rw-r--r-- | calendar/gui/Makefile.am | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 05e37e260f..d7a0eb3450 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,8 @@ 1999-08-02 Peter Teichman <pat4@acpub.duke.edu> + * Makefile.am (libcalendar_conduit_la_LDFLAGS): + libcalendar_conduit now installs + * calendar-pilot-sync.c (sync_pilot): do deletion of appointments correctly, when they are deleted on the pilot (conduit_free_Appointment): protect against double-freeing parts diff --git a/calendar/Makefile.am b/calendar/Makefile.am index 50e6e98092..0796c6b142 100644 --- a/calendar/Makefile.am +++ b/calendar/Makefile.am @@ -122,7 +122,8 @@ calendar_conduits_LTLIBRARIES = @CALCONDUITLIB@ EXTRA_LTLIBRARIES = libcalendar_conduit.la -GNOME_CONDUIT_LIBS= +libcalendar_conduit_la_LDFLAGS = \ + -rpath $(libdir) libcalendar_conduit_la_LIBADD = \ $(GNOME_CONDUIT_LIBS) \ diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 50e6e98092..0796c6b142 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -122,7 +122,8 @@ calendar_conduits_LTLIBRARIES = @CALCONDUITLIB@ EXTRA_LTLIBRARIES = libcalendar_conduit.la -GNOME_CONDUIT_LIBS= +libcalendar_conduit_la_LDFLAGS = \ + -rpath $(libdir) libcalendar_conduit_la_LIBADD = \ $(GNOME_CONDUIT_LIBS) \ |