]> git.pld-linux.org Git - packages/evolution.git/blame - evolution-as_needed-fix.patch
- updated for 2.28.0
[packages/evolution.git] / evolution-as_needed-fix.patch
CommitLineData
868a7fc5
MB
1diff -urN evolution-2.12.0/configure.in evolution-2.12.0.new/configure.in
2--- evolution-2.12.0/configure.in 2007-09-17 08:27:28.000000000 +0200
3+++ evolution-2.12.0.new/configure.in 2007-09-26 21:50:58.000000000 +0200
4@@ -758,24 +758,24 @@
5
6 msg_krb5="no"
7 if test "x${with_krb5}" != "xno"; then
8- LDFLAGS_save="$LDFLAGS"
9+ LIBS_save="$LIBS"
10
11 mitlibs="-lkrb5 -lk5crypto -lcom_err -lgssapi_krb5"
12 heimlibs="-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi"
13 sunlibs="-lkrb5 -lgss"
14 AC_CACHE_CHECK([for Kerberos 5], ac_cv_lib_kerberos5,
15 [
16- LDFLAGS="$LDFLAGS -L$with_krb5_libs $mitlibs"
17+ LIBS="$LIBS -L$with_krb5_libs $mitlibs"
18 AC_TRY_LINK_FUNC(krb5_init_context, ac_cv_lib_kerberos5="$mitlibs",
19 [
20- LDFLAGS="$LDFLAGS_save -L$with_krb5_libs $heimlibs"
21+ LIBS="$LIBS_save -L$with_krb5_libs $heimlibs"
22 AC_TRY_LINK_FUNC(krb5_init_context, ac_cv_lib_kerberos5="$heimlibs",
23 [
24- LDFLAGS="$LDFLAGS_save -L$with_krb5_libs $sunlibs"
25+ LIBS="$LIBS_save -L$with_krb5_libs $sunlibs"
26 AC_TRY_LINK_FUNC(krb5_init_context, ac_cv_lib_kerberos5="$sunlibs", ac_cv_lib_kerberos5="no")
27 ])
28 ])
29- LDFLAGS="$LDFLAGS_save"
30+ LIBS="$LIBS_save"
31 ])
32 if test "$ac_cv_lib_kerberos5" != "no"; then
33 AC_DEFINE(HAVE_KRB5,1,[Define if you have Krb5])
34@@ -818,32 +818,32 @@
35
36 msg_krb4="no"
37 if test "x${with_krb4}" != "xno"; then
38- LDFLAGS_save="$LDFLAGS"
39+ LIBS_save="$LIBS"
40 AC_CACHE_CHECK(for Kerberos 4, ac_cv_lib_kerberos4,
41 [
42 ac_cv_lib_kerberos4="no"
43
44 mitcompatlibs="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"
45 # Look for MIT krb5 compat krb4
46- LDFLAGS="$LDFLAGS -L$with_krb4_libs $mitcompatlibs"
47+ LIBS="$LIBS -L$with_krb4_libs $mitcompatlibs"
48 AC_TRY_LINK_FUNC(krb_mk_req, ac_cv_lib_kerberos4="$mitcompatlibs")
49
50 if test "$ac_cv_lib_kerberos4" = "no"; then
51 # Look for KTH krb4
52- LDFLAGS="$LDFLAGS_save -L$with_krb4_libs -lkrb -lcrypto -lcom_err -lroken"
53+ LIBS="$LIBS_save -L$with_krb4_libs -lkrb -lcrypto -lcom_err -lroken"
54 AC_TRY_LINK_FUNC(krb_mk_req, ac_cv_lib_kerberos4="-lkrb -lcrypto -lcom_err -lroken")
55 fi
56 if test "$ac_cv_lib_kerberos4" = "no"; then
57 # Look for old MIT krb4
58- LDFLAGS="$LDFLAGS_save -L$with_krb4_libs -lkrb"
59+ LIBS="$LIBS_save -L$with_krb4_libs -lkrb"
60 AC_TRY_LINK_FUNC(krb_mk_req, ac_cv_lib_kerberos4="-lkrb",
61 [
62- LDFLAGS="$LDFLAGS -ldes"
63+ LIBS="$LIBS -ldes"
64 AC_TRY_LINK_FUNC(krb_mk_req, ac_cv_lib_kerberos4="-lkrb -ldes")
65 ])
66 fi
67 ])
68- LDFLAGS="$LDFLAGS_save"
69+ LIBS="$LIBS_save"
70 if test "$ac_cv_lib_kerberos4" != "no"; then
71 AC_DEFINE(HAVE_KRB4,1,[Define if you have Krb4])
72 msg_krb4="yes"
1595ad52
MB
73--- evolution-2.24.0.orig/plugins/exchange-operations/Makefile.am 2008-10-03 20:33:29.000000000 +0200
74+++ evolution-2.24.0/plugins/exchange-operations/Makefile.am 2008-10-03 20:33:22.000000000 +0200
75@@ -55,6 +55,7 @@
b345ddbe
MB
76 $(top_builddir)/calendar/gui/libevolution-calendar.la \
77 $(top_builddir)/mail/libevolution-mail.la \
78 $(top_builddir)/addressbook/gui/component/libevolution-addressbook.la \
79+ $(top_builddir)/addressbook/gui/merging/libeabbookmerging.la \
1595ad52
MB
80 $(CAMEL_EXCHANGE_LIBS) \
81 $(EVOLUTION_MAIL_LIBS)
b345ddbe 82
This page took 0.4707 seconds and 4 git commands to generate.