From: Tristan Chabredier Date: Thu, 2 Mar 2006 16:07:43 +0000 (+0000) Subject: 2006-03-02 [wwp] 2.0.0cvs101 X-Git-Tag: REL_2_1_0~93 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=2c0cab864afb06ad17fbdfcd05db00194dd697c2 2006-03-02 [wwp] 2.0.0cvs101 * configure.ac fixed linker flags for libetpan support on Cygwin (thanks to H.Merijn Brand). --- diff --git a/ChangeLog b/ChangeLog index c2f20887f..36d5592f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-03-02 [wwp] 2.0.0cvs101 + + * configure.ac + fixed linker flags for libetpan support on Cygwin + (thanks to H.Merijn Brand). + 2006-03-02 [wwp] 2.0.0cvs100 * src/addressbook.c diff --git a/PATCHSETS b/PATCHSETS index e9762e95f..059260f66 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1284,3 +1284,4 @@ ( cvs diff -u -r 1.395.2.178 -r 1.395.2.179 src/summaryview.c; ) > 2.0.0cvs98.patchset ( cvs diff -u -r 1.18.2.29 -r 1.18.2.30 src/plugins/spamassassin/spamassassin.c; ) > 2.0.0cvs99.patchset ( cvs diff -u -r 1.60.2.49 -r 1.60.2.50 src/addressbook.c; ) > 2.0.0cvs100.patchset +( cvs diff -u -r 1.654.2.1330 -r 1.654.2.1331 configure.ac; ) > 2.0.0cvs101.patchset diff --git a/configure.ac b/configure.ac index 8cc631b4b..e3c1f2219 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=0 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=100 +EXTRA_VERSION=101 EXTRA_RELEASE= EXTRA_GTK2_VERSION= @@ -738,7 +738,7 @@ if test x"$ac_cv_enable_libetpan" = xyes; then AC_CHECK_HEADER(libetpan/libetpan.h, [libetpan_result=yes]) if test "x$libetpan_result" = "xyes"; then AC_MSG_CHECKING([whether libetpan-config hints compiles and links fine]) - LDFLAGS="$LDFLAGS `$libetpanconfig --libs 2>/dev/null`" + LIBS="$LIBS `$libetpanconfig --libs 2>/dev/null`" AC_TRY_LINK([#include ], [db_mailstorage_init(NULL, NULL);], [libetpan_result=yes], [libetpan_result=no]) AC_MSG_RESULT([$libetpan_result]) fi