Mercurial > pidgin
annotate configure.ac @ 6757:ddee8d7daf1b
[gaim-migrate @ 7289]
GNUTLS now has priority over NSS. NSS will only be used if GNUTLS is
missing, or if NSS is manually specified.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Fri, 05 Sep 2003 22:49:59 +0000 |
| parents | cdb4acfe777f |
| children | e624b492b981 |
| rev | line source |
|---|---|
| 2129 | 1 dnl Process this file with autoconf to produce a configure script. |
| 4489 | 2 AC_INIT(src/main.c) |
| 2129 | 3 AM_CONFIG_HEADER(config.h) |
| 6704 | 4 AM_INIT_AUTOMAKE([gaim], [0.69cvs]) |
| 3174 | 5 |
| 6 AC_PREREQ([2.50]) | |
| 2129 | 7 |
| 8 AC_PATH_PROG(sedpath, sed) | |
| 9 | |
| 10 dnl Checks for programs. | |
| 11 AC_PROG_CC | |
| 12 AC_DISABLE_STATIC | |
| 13 AM_PROG_LIBTOOL | |
| 14 LIBTOOL="$LIBTOOL --silent" | |
| 15 AC_PROG_INSTALL | |
| 16 | |
| 17 | |
| 6510 | 18 ALL_LINGUAS="am bg ca cs da de es fi fr he hi hu it ja ko nl no pl pt_BR ro ru sk sr sr@Latn sv zh_CN zh_TW" |
|
3408
ba6d0856c8e4
[gaim-migrate @ 3427]
Christian Hammond <chipx86@chipx86.com>
parents:
3391
diff
changeset
|
19 AM_GNU_GETTEXT_VERSION(0.10.40) |
| 2129 | 20 AM_GNU_GETTEXT |
| 21 | |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
22 dnl we don't use autobreak on cygwin!! |
|
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
23 dnl AC_CYGWIN |
| 2129 | 24 |
| 25 dnl Checks for header files. | |
| 26 AC_HEADER_STDC | |
| 27 AC_HEADER_SYS_WAIT | |
| 28 AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h locale.h signal.h) | |
| 29 | |
| 30 dnl Checks for typedefs, structures, and compiler characteristics. | |
| 31 AC_C_CONST | |
| 32 AC_STRUCT_TM | |
| 33 | |
| 34 dnl Checks for library functions. | |
| 35 AC_TYPE_SIGNAL | |
| 36 AC_FUNC_STRFTIME | |
| 4424 | 37 AC_CHECK_FUNCS(strdup strstr atexit) |
| 2129 | 38 dnl Checks for getopt in standard library |
| 3174 | 39 AC_CHECK_FUNCS(getopt_long , , |
| 40 AC_LIBOBJ(getopt) | |
| 41 AC_LIBOBJ(getopt1)) | |
| 42 | |
| 2129 | 43 |
| 2959 | 44 dnl Check for inet_aton |
| 45 AC_CHECK_FUNC(inet_aton, , [AC_CHECK_LIB(resolv, inet_aton, , | |
| 46 [AC_ERROR(inet_aton not found)])]) | |
| 4424 | 47 AC_CHECK_LIB(nsl, gethostent) |
| 48 AC_CHECK_FUNC(socket, , | |
| 49 [AC_CHECK_LIB(socket, socket, , [AC_ERROR([socket not found])])]) | |
| 50 dnl If all goes well, by this point the previous two checks will have | |
| 51 dnl pulled in -lsocket and -lnsl if we need them. | |
| 52 AC_CHECK_FUNC(getaddrinfo, [AC_DEFINE([HAVE_GETADDRINFO], [1], | |
| 53 [Define to 1 if you have the getaddrinfo function.])], | |
| 54 [AC_CHECK_LIB(socket, getaddrinfo, | |
| 55 [AC_DEFINE([HAVE_GETADDRINFO]) LIBS="-lsocket -lsnl $LIBS"], , , -lnsl)]) | |
| 2959 | 56 |
| 3150 | 57 dnl Check for socklen_t (in Unix98) |
| 58 AC_MSG_CHECKING(for socklen_t) | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
59 AC_TRY_COMPILE([ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
60 #include <sys/types.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
61 #include <sys/socket.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
62 socklen_t x; |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
63 ], [], |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
64 [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
65 AC_MSG_RESULT(yes) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
66 ], [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
67 AC_TRY_COMPILE([ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
68 #include <sys/types.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
69 #include <sys/socket.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
70 int accept(int, struct sockaddr *, size_t *); |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
71 ], [], [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
72 AC_MSG_RESULT(size_t) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
73 AC_DEFINE(socklen_t, size_t, [socklen_t size]) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
74 ], [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
75 AC_MSG_RESULT(int) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
76 AC_DEFINE(socklen_t, int, [socklen_t size]) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
77 ]) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
78 ]) |
| 3150 | 79 |
| 2129 | 80 AC_ARG_ENABLE(distrib,,,enable_distrib=no) |
| 81 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
| 82 AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes) | |
| 83 AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
| 3572 | 84 AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="") |
| 2129 | 85 if test "x$STATIC_PRPLS" = "xall" ; then |
| 3382 | 86 STATIC_PRPLS="gg irc jabber msn napster oscar toc yahoo zephyr" |
| 2129 | 87 fi |
| 88 AC_SUBST(STATIC_PRPLS) | |
| 89 STATIC_LINK_LIBS= | |
| 90 extern_init= | |
| 91 load_proto= | |
| 92 for i in $STATIC_PRPLS ; do | |
| 93 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
| 5449 | 94 extern_init="$extern_init extern gboolean gaim_init_${i}_plugin();" |
| 95 load_proto="$load_proto gaim_init_${i}_plugin();" | |
| 2129 | 96 case $i in |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
97 gg) static_gg=yes ;; |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
98 irc) static_irc=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
99 jabber) static_jabber=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
100 msn) static_msn=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
101 napster) static_napster=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
102 oscar) static_oscar=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
103 toc) static_toc=yes ;; |
|
5730
99ae9bd8b5fa
[gaim-migrate @ 6154]
Christian Hammond <chipx86@chipx86.com>
parents:
5719
diff
changeset
|
104 trepia) static_trepia=yes ;; |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
105 yahoo) static_yahoo=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
106 zephyr) static_zephyr=yes ;; |
| 2129 | 107 *) echo "Invalid static protocol $i!!" ; exit ;; |
| 108 esac | |
| 109 done | |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
110 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
111 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
112 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
113 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
114 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
115 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
116 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
|
5730
99ae9bd8b5fa
[gaim-migrate @ 6154]
Christian Hammond <chipx86@chipx86.com>
parents:
5719
diff
changeset
|
117 AM_CONDITIONAL(STATIC_TREPIA, test "x$static_trepia" = "xyes") |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
118 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
119 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
| 2129 | 120 AC_SUBST(STATIC_LINK_LIBS) |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
121 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }, |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
122 [Loads static protocol plugin module initialization functions.]) |
| 2129 | 123 |
| 4561 | 124 AC_ARG_ENABLE(audio, [ --disable-audio compile without libao/libaudiofile for sound playing],,enable_audio=yes) |
| 4581 | 125 AC_ARG_ENABLE(nas, [ --enable-nas enable NAS (Network Audio System) support],,enable_nas=no) |
| 2129 | 126 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) |
| 127 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
| 6694 | 128 AC_ARG_ENABLE(tcl, [ --disable-tcl compile without Tcl scripting],,enable_tcl=yes) |
| 129 AC_ARG_WITH(tclconfig, [ --with-tclconfig=DIR directory containing tclConfig.sh]) | |
| 130 AC_ARG_ENABLE(tk, [ --disable-tk compile without Tcl support for Tk],,enable_tk=yes) | |
| 131 AC_ARG_WITH(tkconfig, [ --with-tkconfig=DIR directory containing tkConfig.sh]) | |
| 3802 | 132 AC_ARG_ENABLE(gtkspell, [ --disable-gtkspell compile without GtkSpell automatic spell checking],,enable_gtkspell=yes) |
|
2430
0ba75351a01b
[gaim-migrate @ 2443]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2416
diff
changeset
|
133 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) |
| 2129 | 134 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) |
| 4157 | 135 AC_ARG_ENABLE(sm, [ --disable-sm compile without X session management support],,enable_sm=yes) |
| 2129 | 136 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") |
| 137 | |
| 138 if test "$enable_debug" = yes ; then | |
|
6723
296c45dd9a51
[gaim-migrate @ 7250]
Christian Hammond <chipx86@chipx86.com>
parents:
6722
diff
changeset
|
139 DEBUG_CFLAGS="$DEBUG_CFLAGS -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED" |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
140 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
| 2129 | 141 fi |
| 142 | |
|
6723
296c45dd9a51
[gaim-migrate @ 7250]
Christian Hammond <chipx86@chipx86.com>
parents:
6722
diff
changeset
|
143 CFLAGS="$CFLAGS -Wall -g3" |
|
296c45dd9a51
[gaim-migrate @ 7250]
Christian Hammond <chipx86@chipx86.com>
parents:
6722
diff
changeset
|
144 AC_SUBST(CFLAGS) |
|
296c45dd9a51
[gaim-migrate @ 7250]
Christian Hammond <chipx86@chipx86.com>
parents:
6722
diff
changeset
|
145 |
| 3551 | 146 AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ |
| 3425 | 147 *** GLib 2.0 is required to build Gaim; please make sure you have the GLib |
| 2129 | 148 *** development headers installed. The latest version of GLib is |
| 149 *** always available at http://www.gtk.org/.])) | |
| 3551 | 150 AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([ |
| 3425 | 151 *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ |
| 2129 | 152 *** development headers installed. The latest version of GTK+ is |
|
2730
a9aabf1170f1
[gaim-migrate @ 2743]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2726
diff
changeset
|
153 *** always available at http://www.gtk.org/.])) |
| 2129 | 154 |
| 3425 | 155 AC_PATH_PROG(gaimpath, gaim) |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
156 AC_SUBST(GTK_CFLAGS) |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
157 AC_SUBST(GLIB_CFLAGS) |
| 2129 | 158 |
| 4884 | 159 AC_PATH_XTRA |
| 5344 | 160 # We can't assume that $x_libraries will be set, because autoconf does not |
| 161 # set it in the case when the X libraries are in a standard place. | |
| 162 # Ditto for $x_includes | |
| 163 if test X"$x_libraries" = X"" ; then | |
| 164 x_libpath_add= | |
| 165 else | |
| 166 x_libpath_add="-L$x_libraries" | |
| 167 fi | |
| 168 if test X"$x_includes" = X"" ; then | |
| 169 x_incpath_add= | |
| 170 else | |
| 171 x_incpath_add="-I$x_includes" | |
| 172 fi | |
| 4157 | 173 |
| 2129 | 174 dnl Check for XScreenSaver |
| 175 if test "x$enable_xss" = "xyes" ; then | |
|
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
176 old_LIBS="$LIBS" |
| 5344 | 177 LIBS="$LIBS $GTK_LIBS $x_libpath_add" |
| 2129 | 178 XSS_LIBS="no" |
| 179 XSS_HEADERS="no" | |
| 4884 | 180 AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS="$X_LIBS $X_PRE_LIBS -lX11 -lXext $X_EXTRA_LIBS"],[],[-lX11 -lXext -lm]) |
| 181 AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="$X_LIBS $X_PRE_LIBS -lX11 -lXext $X_LIBS $X_EXTRA_LIBS -lXss"],[],[-lX11 -lXext -lm]) | |
| 2129 | 182 if test \! "$XSS_LIBS" = "no"; then |
| 183 AC_TRY_COMPILE([ | |
| 4884 | 184 #include <X11/Xlib.h> |
| 2129 | 185 #include <X11/extensions/scrnsaver.h> |
| 4884 | 186 ],[],[ |
| 187 AC_DEFINE(USE_SCREENSAVER, 1, [Define if we're using XScreenSaver.])],[enable_xss=no] | |
| 188 ) | |
| 2129 | 189 else |
| 190 XSS_LIBS="" | |
| 191 enable_xss=no | |
| 192 fi | |
|
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
193 LIBS="$old_LIBS" |
| 2129 | 194 else |
| 195 XSS_LIBS="" | |
| 196 enable_xss=no | |
| 197 fi | |
| 198 AC_SUBST(XSS_LIBS) | |
| 199 | |
| 200 | |
| 4157 | 201 dnl Check for X session management libs |
| 202 if test "x$enable_sm" = "xyes"; then | |
| 203 enable_sm=no | |
| 5344 | 204 AC_CHECK_LIB(SM, SmcSaveYourselfDone, found_sm_lib=true, , [$x_libpath_add -lICE]) |
| 4157 | 205 if test "$found_sm_lib" = "true"; then |
| 5344 | 206 AC_CHECK_HEADERS(X11/SM/SMlib.h, SM_LIBS="$x_libpath_add -lSM -lICE" enable_sm=yes) |
| 4157 | 207 fi |
| 208 else | |
| 209 SM_LIBS="" | |
| 210 enable_sm=no | |
| 211 fi | |
| 212 AC_SUBST(SM_LIBS) | |
| 213 if test "$enable_sm" = "yes"; then | |
| 214 AC_DEFINE(USE_SM, 1, [Define if we're using X Session Management.]) | |
| 215 fi | |
| 216 | |
| 217 | |
| 3203 | 218 AC_DEFUN(GC_TM_GMTOFF, |
| 219 [AC_REQUIRE([AC_STRUCT_TM])dnl | |
| 220 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, | |
| 221 [AC_TRY_COMPILE([#include <sys/types.h> | |
| 222 #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], | |
| 223 ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) | |
| 224 if test "$ac_cv_struct_tm_gmtoff" = yes; then | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
225 AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.]) |
| 3203 | 226 fi |
| 227 ]) | |
| 228 | |
| 229 GC_TM_GMTOFF | |
| 230 | |
| 231 | |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
232 dnl |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
233 dnl Perl stuff. Yeah. |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
234 dnl |
| 2129 | 235 if test "$enable_perl" = yes ; then |
| 236 AC_PATH_PROG(perlpath, perl) | |
| 237 AC_MSG_CHECKING(for Perl compile flags) | |
| 238 PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
| 239 if test "_$PERL_CFLAGS" = _ ; then | |
| 240 AC_MSG_RESULT([not found, building without perl.]) | |
| 241 enable_perl = no | |
| 242 else | |
| 243 PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
| 244 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
| 245 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
| 246 if test "$system" = "Linux"; then | |
| 247 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
| 248 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
| 249 fi | |
| 250 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
| 251 AC_MSG_RESULT(ok) | |
| 3931 | 252 |
| 253 oldLIBS=$LIBS | |
| 254 LIBS="$LIBS $PERL_LIBS" | |
| 255 AC_MSG_CHECKING(for libperl) | |
| 256 AC_CHECK_FUNCS(perl_run, [], enable_perl=no) | |
| 257 LIBS=$oldLIBS | |
| 2129 | 258 fi |
| 259 fi | |
| 260 | |
| 3931 | 261 if test "$enable_perl" = yes ; then |
| 262 AC_SUBST(PERL_CFLAGS) | |
| 263 AC_SUBST(PERL_LIBS) | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5193
diff
changeset
|
264 AM_CONDITIONAL(USE_PERL, test "x$enable_perl" = "xyes") |
| 3931 | 265 |
| 266 dnl This is almost definitely wrong, but in case there's | |
| 267 dnl something I'm missing, I'll leave it in. | |
| 268 AC_CHECK_FUNCS(Perl_eval_pv) | |
| 4298 | 269 |
| 270 AC_MSG_CHECKING(for old perl) | |
| 271 PERL_OLD=`$perlpath -e 'if($]<5.006){printf"yes\n";}else{printf"no\n";}'` | |
| 272 | |
| 273 if test "$PERL_OLD" = "yes"; then | |
| 274 AC_DEFINE(OLD_PERL, 1, [Define if old perl is installed.]) | |
| 275 AC_MSG_RESULT(yes) | |
| 276 else | |
| 277 AC_MSG_RESULT(no) | |
| 278 fi | |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
279 |
|
6586
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
280 prefix=`eval echo $prefix` |
|
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
281 PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=$prefix" |
|
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
282 |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
283 AC_ARG_WITH(perl-lib, |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
284 [ --with-perl-lib=[site|vendor|DIR] Specify where to install the |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
285 Perl libraries for gaim. Default is site.], |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
286 [ |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
287 if test "x$withval" = xsite; then |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
288 PERL_MM_PARAMS="" |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
289 elif test "x$withval" = xvendor; then |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
290 if test -z "`$perlpath -v | grep '5\.0'`"; then |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
291 PERL_MM_PARAMS="INSTALLDIRS=vendor" |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
292 else |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
293 PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=`perl -e 'use Config; print $Config{prefix}'`" |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
294 fi |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
295 else |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
296 PERL_MM_PARAMS="INSTALLDIRS=perl LIB=$withval" |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
297 fi |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
298 ]) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
299 |
|
6586
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
300 AC_SUBST(PERL_MM_PARAMS) |
|
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
301 |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
302 AC_MSG_CHECKING(for DynaLoader.a) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
303 DYNALOADER_A=`echo $PERL_LDFLAGS | $perlpath -pe 's/^(.* )*([[^ ]]*DynaLoader\.a).*/\2/'` |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
304 |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
305 dnl Don't check libperl.a if dynaloader.a wasn't found. |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
306 if test -n "$DYNALOADER_A"; then |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
307 AC_MSG_RESULT(yes) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
308 |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
309 dnl Find either libperl.a or libperl.so |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
310 AC_MSG_CHECKING(for libperl.a or libperl.so) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
311 LIBPERL_A=`echo "$PERL_LDFLAGS -L/usr/lib"|$perlpath -e 'foreach (split(/ /, <STDIN>)) { if (/^-L(.*)/) { my $dir=$1; if (\`ls $dir/libperl.so* 2>/dev/null\`) { print "-lperl"; last; }; if (-e "$dir/libperl.a") { print "$dir/libperl.a"; last } } };'` |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
312 if test -z "$LIBPERL_A"; then |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
313 AC_MSG_RESULT(no) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
314 DYNALOADER_A= |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
315 else |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
316 AC_MSG_RESULT(yes) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
317 |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
318 if test "$LIBPERL_A" = "-lperl"; then |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
319 LIBPERL_A= |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
320 fi |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
321 fi |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
322 |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
323 PERL_LIBS=`echo $PERL_LIBS | $perlpath -pe 's/^(.* )*[[^ ]]*DynaLoader\.a/\1libperl_dynaloader.la/'` |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
324 |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
325 if test -n "$LIBPERL_A"; then |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
326 PERL_LIBS=`echo $PERL_LDFLAGS | $sedpath -e 's/-lperl /libperl_orig.la /' -e 's/-lperl$/libperl_orig.la$/'` |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
327 fi |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
328 |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
329 AC_SUBST(DYNALOADER_A) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
330 AC_SUBST(LIBPERL_A) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
331 else |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
332 AC_MSG_RESULT(no) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
333 fi |
| 3931 | 334 else |
| 335 PERL_CFLAGS= | |
| 336 PERL_LIBS= | |
|
5232
2d58a9a46292
[gaim-migrate @ 5602]
Christian Hammond <chipx86@chipx86.com>
parents:
5229
diff
changeset
|
337 AM_CONDITIONAL(USE_PERL, false) |
| 3931 | 338 fi |
| 339 | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
340 dnl ####################################################################### |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
341 dnl # SSL support |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
342 dnl # |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
343 dnl # Thanks go to Evolution for the checks. |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
344 dnl ####################################################################### |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
345 |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
346 dnl These two are inverses of each other <-- stolen from evolution! |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
347 |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
348 AC_ARG_ENABLE(gnutls, |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
349 [ --enable-gnutls=[yes,no] Attempt to use GNUTLS for SSL support [default=yes]], |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
350 [enable_gnutls="$enableval"], |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
351 [enable_gnutls="yes"]) |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
352 |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
353 AC_ARG_ENABLE(nss, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
354 [ --enable-nss=[yes,no,static] Attempt to use Mozilla libnss for SSL support [default=no]], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
355 [enable_nss="$enableval"], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
356 [enable_nss="no"]) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
357 |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
358 if test "x$enable_nss" = "xyes"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
359 enable_gnutls="no" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
360 AC_MSG_WARN([NSS enabled. Disabling GNUTLS.]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
361 fi |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
362 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
363 msg_ssl="no" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
364 |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
365 dnl # |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
366 dnl # Check for GNUTLS if it's specified. |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
367 dnl # |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
368 if test "x$enable_gnutls" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
369 enable_gnutls="no" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
370 prefix=`eval echo $prefix` |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
371 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
372 AC_ARG_WITH(gnutls-includes, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
373 [ --with-gnutls-includes=PREFIX Location of GNUTLS includes.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
374 [ with_gnutls_includes="$withval" ], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
375 [ with_gnutls_includes="$prefix/include" ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
376 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
377 have_gnutls_includes="no" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
378 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
379 if test "x$with_gnutls_includes" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
380 CPPFLAGS_save="$CPPFLAGS" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
381 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
382 AC_MSG_CHECKING(for GNUTLS includes) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
383 AC_MSG_RESULT("") |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
384 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
385 CPPFLAGS="$CPPFLAGS -I$with_gnutls_includes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
386 AC_CHECK_HEADERS(gnutls/gnutls.h, [ gnutls_includes="yes" ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
387 CPPFLAGS="$CPPFLAGS_save" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
388 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
389 if test "x$gnutls_includes" != "xno" -a \ |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
390 "x$gnutls_includes" != "x"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
391 have_gnutls_includes="yes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
392 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
393 GNUTLS_CFLAGS="-I$with_gnutls_includes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
394 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
395 GNUTLS_CFLAGS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
396 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
397 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
398 AC_MSG_CHECKING(for GNUTLS includes) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
399 AC_MSG_RESULT(no) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
400 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
401 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
402 AC_ARG_WITH(gnutls-libs, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
403 [ --with-gnutls-libs=PREFIX Location of GNUTLS libraries.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
404 [ with_gnutls_libs="$withval" ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
405 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
406 if test "x$with_gnutls_libs" != "xno" -a \ |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
407 "x$have_gnutls_includes" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
408 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
409 LDFLAGS_save="$LDFLAGS" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
410 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
411 case $with_gnutls_libs in |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
412 ""|-L*) ;; |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
413 *) with_gnutls_libs="-L$with_gnutls_libs" ;; |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
414 esac |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
415 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
416 AC_CACHE_CHECK([for GNUTLS libraries], gnutls_libs, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
417 [ |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
418 LDFLAGS="$LDFLAGS $with_gnutls_libs -lgnutls -lgcrypt" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
419 AC_TRY_LINK_FUNC(gnutls_init, gnutls_libs="yes", gnutls_libs="no") |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
420 LDFLAGS="$LDFLAGS_save" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
421 ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
422 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
423 if test "x$gnutls_libs" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
424 AC_DEFINE(HAVE_GNUTLS, 1, [Define if you have GNUTLS]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
425 AC_DEFINE(HAVE_SSL) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
426 msg_ssl="yes (GNUTLS)" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
427 GNUTLS_LIBS="$with_gnutls_libs -lgnutls -lgcrypt" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
428 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
429 enable_gnutls="yes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
430 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
431 GNUTLS_CFLAGS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
432 GNUTLS_LIBS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
433 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
434 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
435 AC_MSG_CHECKING(for GNUTLS libraries) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
436 AC_MSG_RESULT(no) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
437 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
438 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
439 GNUTLS_CFLAGS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
440 GNUTLS_LIBS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
441 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
442 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
443 AC_SUBST(GNUTLS_CFLAGS) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
444 AC_SUBST(GNUTLS_LIBS) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
445 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
446 AM_CONDITIONAL(USE_GNUTLS, test "x$enable_gnutls" = "xyes") |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
447 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
448 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
449 dnl # |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
450 dnl # Check for NSS if it's specified, or if GNUTLS checks failed. |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
451 dnl # |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
452 if test "x$enable_nss" = "xyes" -o "x$enable_nss" = "xstatic" -o \ |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
453 "x$msg_ssl" = "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
454 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
455 AC_ARG_WITH(nspr-includes, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
456 [ --with-nspr-includes=PREFIX Specify location of Mozilla nspr4 includes.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
457 [with_nspr_includes="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
458 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
459 AC_ARG_WITH(nspr-libs, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
460 [ --with-nspr-libs=PREFIX Specify location of Mozilla nsp4 libs.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
461 [with_nspr_libs="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
462 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
463 AC_ARG_WITH(nss-includes, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
464 [ --with-nss-includes=PREFIX Specify location of Mozilla nss3 includes.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
465 [with_nss_includes="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
466 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
467 AC_ARG_WITH(nss-libs, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
468 [ --with-nss-libs=PREFIX Specify location of Mozilla nss3 libs.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
469 [with_nss_libs="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
470 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
471 |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
472 if test -n "$with_nspr_includes" || test -n "$with_nspr_libs" || \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
473 test -n "$with_nss_includes" || test -n "$with_nss_libs" || |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
474 test "x$enable_nss" = "xstatic"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
475 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
476 nss_manual_check="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
477 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
478 nss_manual_check="no" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
479 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
480 |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
481 enable_nss="no" |
|
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
482 |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
483 if test "x$nss_manual_check" = "xno"; then |
|
6756
cdb4acfe777f
[gaim-migrate @ 7288]
Christian Hammond <chipx86@chipx86.com>
parents:
6738
diff
changeset
|
484 PKG_CHECK_MODULES(NSS, mozilla-nss, have_nss="yes", have_nss="no") |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
485 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
486 if test "x$have_nss" = "xyes"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
487 mozilla_nspr="mozilla-nspr" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
488 mozilla_nss="mozilla-nss" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
489 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
490 AC_DEFINE(HAVE_NSS, 1, [Define if you have Mozilla NSS]) |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
491 AC_DEFINE(HAVE_SSL, 1, [Define if you have SSL]) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
492 |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
493 msg_ssl="yes (Mozilla NSS)" |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
494 enable_nss="yes" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
495 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
496 nss_manual_check="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
497 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
498 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
499 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
500 if test "x$nss_manual_check" = "xyes"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
501 mozilla_nss="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
502 have_nspr_includes="no" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
503 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
504 if test "x$with_nspr_includes" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
505 CPPFLAGS_save=$CPPFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
506 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
507 AC_MSG_CHECKING(for Mozilla nspr4 includes in $with_nspr_includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
508 AC_MSG_RESULT("") |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
509 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
510 CPPFLAGS="$CPPFLAGS -I$with_nspr_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
511 AC_CHECK_HEADERS(nspr.h prio.h, [ moz_nspr_includes="yes" ]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
512 CPPFLAGS=$CPPFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
513 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
514 if test "x$moz_nspr_includes" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
515 "x$moz_nspr_includes" != "x"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
516 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
517 have_nspr_includes="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
518 NSPR_CFLAGS="-I$with_nspr_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
519 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
520 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
521 AC_MSG_CHECKING(for Mozilla nspr4 includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
522 AC_MSG_RESULT(no) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
523 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
524 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
525 have_nspr_libs="no" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
526 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
527 if test "x$with_nspr_libs" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
528 "x$have_nspr_includes" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
529 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
530 CFLAGS_save=$CFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
531 LDFLAGS_save=$LDFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
532 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
533 if test "$enable_nss" = "static"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
534 if test -z "$with_nspr_libs"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
535 AC_MSG_ERROR( |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
536 [Static linkage requested, but path to nspr libraries not set.] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
537 [Please specify the path to libnspr4.a] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
538 [Example: --with-nspr-libs=/usr/lib]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
539 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
540 nsprlibs="-ldl $with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
541 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
542 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
543 nsprlibs="-ldl -lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
544 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
545 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
546 AC_CACHE_CHECK([for Mozilla nspr libraries], moz_nspr_libs, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
547 [ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
548 LIBS_save=$LIBS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
549 CFLAGS="$CFLAGS $NSPR_CFLAGS" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
550 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
551 LIBS="$nsprlibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
552 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
553 if test "x$with_nspr_libs" != "x"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
554 LDFLAGS="$LDFLAGS -L$with_nspr_libs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
555 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
556 LDFLAGS="$LDFLAGS" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
557 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
558 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
559 AC_TRY_LINK_FUNC(PR_Init, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
560 [moz_nspr_libs="yes"], |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
561 [moz_nspr_libs="no"]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
562 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
563 CFLAGS=$CFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
564 LDFLAGS=$LDFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
565 LIBS=$LIBS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
566 ]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
567 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
568 if test "x$moz_nspr_libs" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
569 have_nspr_libs="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
570 NSPR_LIBS="-L$with_nspr_libs $nsprlibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
571 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
572 NSPR_CFLAGS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
573 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
574 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
575 AC_MSG_CHECKING(for Mozilla nspr4 libraries) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
576 AC_MSG_RESULT(no) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
577 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
578 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
579 if test "x$with_nss_includes" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
580 "x$have_nspr_libs" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
581 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
582 CPPFLAGS_save=$CPPFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
583 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
584 AC_MSG_CHECKING(for Mozilla nss3 includes in $with_nss_includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
585 AC_MSG_RESULT("") |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
586 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
587 if test "x$with_nspr_includes" != "x"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
588 CPPFLAGS="$CPPFLAGS -I$with_nspr_includs -I$with_nss_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
589 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
590 CPPFLAGS="$CPPFLAGS -I$with_nss_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
591 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
592 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
593 AC_CHECK_HEADERS(nss.h ssl.h smime.h, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
594 [have_nss_includes="yes"], |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
595 [have_nss_includes="no"]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
596 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
597 CPPFLAGS=$CPPFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
598 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
599 if test "x$have_nss_includes" = "xyes"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
600 have_nss_includes="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
601 NSS_CFLAGS="-I$with_nss_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
602 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
603 NSPR_CFLAGS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
604 NSPR_LIBS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
605 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
606 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
607 AC_MSG_CHECKING(for Mozilla nss3 includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
608 AC_MSG_RESULT(no) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
609 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
610 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
611 if test "x$with_nss_libs" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
612 "x$have_nss_includes" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
613 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
614 LDFLAGS_save=$LDFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
615 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
616 if test "$enable_nss" = "static"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
617 if test -z "$with_nss_libs"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
618 AC_MSG_ERROR( |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
619 [Static linkage requested, but path to nss libraries not set.] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
620 [Please specify the path to libnss3.a] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
621 [Example: --with-nspr-libs=/usr/lib/mozilla]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
622 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
623 nsslibs="-ldb1 $with_nss_libs/libnssckfw.a $with_nss_libs/libasn1.a $with_nss_libs/libcrmf.a $with_nss_libs/libswfci.a $with_nss_libs/libjar.a $with_nss_libs/libpkcs12.a $with_nss_libs/libpkcs7.a $with_nss_libs/libpki1.a $with_nss_libs/libsmime.a $with_nss_libs/libssl.a $with_nss_libs/libnss.a $with_nss_libs/libpk11wrap.a $with_nss_libs/libsoftokn.a $with_nss_libs/libfreebl.a $with_nss_libs/libnsspki.a $with_nss_libs/libnssdev.a $with_nss_libs/libcryptohi.a $with_nss_libs/libcerthi.a $with_nss_libs/libcertdb.a $with_nss_libs/libsecutil.a $with_nss_libs/libnssb.a" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
624 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
625 case "$host" in |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
626 *solaris*) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
627 nsslibs="$nsslibs $with_nss_libs/libfreeb1.a" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
628 ;; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
629 esac |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
630 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
631 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
632 nsslibs="-lssl3 -lsmime3 -lnss3 -lsoftokn3" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
633 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
634 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
635 AC_CACHE_CHECK([for Mozilla nss libraries], moz_nss_libs, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
636 [ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
637 LIBS_save=$LIBS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
638 LDFLAGS="$LDFLAGS -L$with_nspr_libs $nsprlibs -L$with_nss_libs $nsslibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
639 LIBS="$nsslibs $nsprlibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
640 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
641 AC_TRY_LINK_FUNC(NSS_Init, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
642 [moz_nss_libs="yes"], |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
643 [moz_nss_libs="no"]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
644 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
645 if test "x$moz_nss_libs" = "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
646 nsslibs="-lssl3 -lsmime3 -lnss3 -lsoftokn3" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
647 LDFLAGS="$LDFLAGS -L$with_nspr_libs $nsprlibs -L$with_nss_libs $nsslibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
648 AC_TRY_LINK_FUNC(NSS_Init, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
649 [moz_nss_libs="yes"], |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
650 [moz_nss_libs="no"]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
651 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
652 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
653 LDFLAGS=$LDFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
654 LIBS=$LIBS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
655 ]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
656 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
657 if test "x$moz_nss_libs" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
658 AC_DEFINE(HAVE_NSS) |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
659 AC_DEFINE(HAVE_SSL) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
660 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
661 NSS_LIBS="-L$with_nss_libs $nsslibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
662 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
663 if test "$enable_nss" = "static"; then |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
664 msg_ssl="yes (Mozilla NSS, static)" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
665 else |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
666 msg_ssl="yes (Mozilla NSS)" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
667 fi |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
668 |
|
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
669 enable_nss="yes" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
670 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
671 NSS_CFLAGS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
672 NSPR_CFLAGS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
673 NSPR_LIBS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
674 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
675 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
676 AC_MSG_CHECKING(for Mozilla nss libraries) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
677 AC_MSG_ERROR(no) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
678 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
679 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
680 NSS_CFLAGS="$NSPR_CFLAGS $NSS_CFLAGS" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
681 NSS_LIBS="$NSPR_LIBS $NSS_LIBS" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
682 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
683 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
684 AC_SUBST(NSS_CFLAGS) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
685 AC_SUBST(NSS_LIBS) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
686 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
687 |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
688 AM_CONDITIONAL(USE_NSS, test "x$enable_nss" = "xyes") |
|
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
689 |
| 6694 | 690 dnl Check for Tcl |
| 691 if test "$enable_tcl" = yes; then | |
| 692 AC_MSG_CHECKING([for tclConfig.sh]) | |
| 693 TCLCONFIG=no | |
| 6710 | 694 TCLCONFIGDIRS="/usr/lib \ |
| 695 /usr/lib/tcl8.4 \ | |
| 696 /usr/lib/tcl8.3 \ | |
| 697 /usr/lib/tcl8.2 \ | |
| 698 /usr/local/lib" | |
| 699 for dir in $with_tclconfig $TCLCONFIGDIRS; do | |
| 6694 | 700 if test -f $dir/tclConfig.sh; then |
| 701 TCLCONFIG=$dir/tclConfig.sh | |
| 702 AC_MSG_RESULT([yes ($TCLCONFIG)]) | |
| 703 fi | |
| 704 done | |
| 6697 | 705 if test "$TCLCONFIG" = "no"; then |
| 6694 | 706 AC_MSG_RESULT([no]) |
| 707 enable_tcl=no | |
| 708 else | |
| 709 . $TCLCONFIG | |
| 6709 | 710 AC_MSG_CHECKING([Tcl version compatability]) |
| 711 if test "$TCL_MAJOR_VERSION" -lt 8 -o "$TCL_MINOR_VERSION" -lt 2; then | |
| 712 AC_MSG_RESULT([bad, $TCL_VERSION found but 8.3 required]) | |
| 713 enable_tcl=no | |
| 714 else | |
| 715 AC_MSG_RESULT([ok, $TCL_VERSION]) | |
| 716 eval "TCL_LIB_SPEC=\"$TCL_LIB_SPEC\"" | |
| 717 AC_MSG_CHECKING([for Tcl linkability]) | |
| 6713 | 718 oldCPPFLAGS=$CPPFLAGS |
| 719 CPPFLAGS="$CPPFLAGS $TCL_INCLUDE_SPEC" | |
| 6709 | 720 oldLIBS=$LIBS |
| 721 LIBS="$LIBS $TCL_LIB_SPEC" | |
| 722 AC_TRY_LINK([#include <tcl.h>], | |
| 723 [Tcl_Interp *interp; Tcl_Init(interp)], | |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
724 [AC_MSG_RESULT([yes]);enable_tcl=yes], |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
725 [AC_MSG_RESULT([no]);enable_tcl=no]) |
| 6713 | 726 CPPFLAGS="$oldCPPFLAGS" |
| 6709 | 727 LIBS="$oldLIBS" |
| 728 fi | |
| 6694 | 729 fi |
| 730 fi | |
| 731 | |
| 732 if test "$enable_tcl" = yes; then | |
| 733 AM_CONDITIONAL(USE_TCL, true) | |
| 734 TCL_LIBS=$TCL_LIB_SPEC | |
| 735 AC_SUBST(TCL_LIBS) | |
| 6712 | 736 TCL_CFLAGS=$TCL_INCLUDE_SPEC |
| 6717 | 737 if test "x$GCC" = "xyes"; then |
| 738 TCL_CFLAGS="$TCL_CFLAGS -fno-strict-aliasing" | |
| 739 fi | |
| 6712 | 740 AC_SUBST(TCL_CFLAGS) |
| 6694 | 741 else |
| 742 AM_CONDITIONAL(USE_TCL, false) | |
| 743 fi | |
| 744 | |
| 745 dnl Check for Tk | |
| 746 if test "$enable_tcl" = yes -a "$enable_tk" = yes; then | |
| 747 AC_MSG_CHECKING([for tkConfig.sh]) | |
| 748 TKCONFIG=no | |
| 6715 | 749 TKCONFIGDIRS="/usr/lib \ |
| 750 /usr/lib/tk8.4 \ | |
| 751 /usr/lib/tk8.3 \ | |
| 752 /usr/lib/tk8.2 \ | |
| 753 /usr/local/lib" | |
| 754 for dir in $with_tkconfig $TKCONFIGDIRS; do | |
| 6694 | 755 if test -f $dir/tkConfig.sh; then |
| 756 TKCONFIG=$dir/tkConfig.sh | |
| 757 AC_MSG_RESULT([yes ($TKCONFIG)]) | |
| 758 fi | |
| 759 done | |
| 760 if test "$TKCONFIG" = "no"; then | |
| 761 AC_MSG_RESULT([no]) | |
| 762 enable_tk=no | |
| 763 else | |
| 764 . $TKCONFIG | |
| 765 eval "TK_LIB_SPEC=\"$TK_LIB_SPEC\"" | |
| 766 AC_MSG_CHECKING([for Tk linkability]) | |
| 6716 | 767 oldCPPFLAGS=$CPPFLAGS |
| 768 CPPFLAGS="$CPPFLAGS $TCL_CFLAGS" | |
| 6694 | 769 oldLIBS=$LIBS |
| 770 LIBS="$LIBS $TCL_LIB_SPEC $TK_LIB_SPEC" | |
| 771 AC_TRY_LINK([#include <tk.h>], [Tcl_Interp *interp; Tcl_Init(interp); Tk_Init(interp);], | |
| 772 [AC_MSG_RESULT([yes]);enable_tk=yes], | |
| 773 [AC_MSG_RESULT([no]);enable_tk=no]) | |
| 6716 | 774 CPPFLAGS="$oldCPPFLAGS" |
| 6694 | 775 LIBS="$oldLIBS" |
| 776 fi | |
| 6710 | 777 else |
| 778 enable_tk=no | |
| 6694 | 779 fi |
| 780 | |
| 781 if test "$enable_tk" = yes; then | |
| 782 AM_CONDITIONAL(USE_TK, true) | |
| 783 AC_DEFINE(HAVE_TK, [1], [Compile with support for the Tk toolkit]) | |
| 784 TK_LIBS=$TK_LIB_SPEC | |
| 785 AC_SUBST(TK_LIBS) | |
| 786 else | |
| 787 AM_CONDITIONAL(USE_TK, false) | |
| 788 fi | |
| 789 | |
| 3802 | 790 dnl Thanks, Evan. |
| 791 if test "$enable_gtkspell" = yes ; then | |
| 792 PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.2, , enable_gtkspell=no) | |
| 793 if test "$enable_gtkspell" = "yes" ; then | |
| 794 AC_SUBST(GTKSPELL_CFLAGS) | |
| 795 AC_SUBST(GTKSPELL_LIBS) | |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
796 AC_DEFINE(USE_GTKSPELL,,[do we have gtkspell?]) |
| 3802 | 797 fi |
| 798 fi | |
| 799 | |
| 4581 | 800 if test "$enable_nas" = yes ; then |
| 801 AC_DEFINE(USE_NAS_AUDIO, 1, [Define if we have NAS sound support.]) | |
| 802 SOUND_LIBS="$SOUND_LIBS -laudio -lXt" | |
| 803 fi | |
| 804 | |
| 4561 | 805 if test "$enable_audio" = yes ; then |
| 806 GAIM_PATH_AO(found_ao_lib=true) | |
| 807 | |
| 808 AM_PATH_AUDIOFILE([0.2.0], found_af_lib=true) | |
| 809 | |
| 810 if test "$found_ao_lib" = "true" -a "$found_af_lib" = "true"; then | |
| 4581 | 811 SOUND_LIBS="$SOUND_LIBS $AO_LIBS $AUDIOFILE_LIBS" |
| 4561 | 812 AC_SUBST(SOUND_LIBS) |
| 813 AC_DEFINE(USE_AO, 1, [Define if we're using libao and libaudiofile for sound playing]) | |
| 814 enable_audio=yes | |
| 4430 | 815 else |
| 4561 | 816 enable_audio=no |
| 817 fi | |
| 818 else | |
| 819 enable_audio=no | |
| 4430 | 820 fi |
| 2129 | 821 |
| 822 if test "$ac_cv_cygwin" = yes ; then | |
| 823 LDADD="$LDADD -static" | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
824 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
825 fi |
| 2129 | 826 |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
827 AC_SUBST(DEBUG_CFLAGS) |
| 2129 | 828 AC_SUBST(LDADD) |
| 829 AC_SUBST(LIBS) | |
| 830 | |
| 831 if test "x$enable_multi" != "xyes" ; then | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
832 AC_DEFINE(NO_MULTI, 1, [Define if multiple connections is disabled.]) |
| 2129 | 833 enable_multi=no |
| 834 fi | |
| 835 | |
| 836 if test "x$enable_plugins" = "xyes" ; then | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
837 AC_DEFINE(GAIM_PLUGINS, 1, [Define if plugins are enabled.]) |
| 2129 | 838 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") |
| 839 else | |
|
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
840 AM_CONDITIONAL(PLUGINS, false) |
| 2129 | 841 enable_plugins=no |
| 842 enable_prpls=no | |
| 843 fi | |
| 844 | |
| 845 if test "x$enable_prpls" = "xyes" ; then | |
| 846 AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
| 847 else | |
|
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
848 AM_CONDITIONAL(PRPLS, false) |
| 2129 | 849 enable_prpls=no |
| 850 fi | |
| 851 | |
| 852 dnl checks for icqlib | |
| 853 AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
| 854 AC_CHECK_FUNCS(bswap_32 bswap_16) | |
| 855 AC_C_BIGENDIAN | |
| 856 | |
| 857 dnl checks for jabber | |
| 858 dnl AC_CHECK_SIZEOF(short) | |
| 859 AC_CHECK_FUNCS(snprintf connect) | |
| 860 | |
| 861 dnl checks for zephyr | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
862 AC_DEFINE(ZEPHYR_INT32, long, [Size of an int32.]) |
| 2129 | 863 AC_SUBST(KRB4_CFLAGS) |
| 864 AC_SUBST(KRB4_LDFLAGS) | |
| 865 AC_SUBST(KRB4_LIBS) | |
| 866 if test "$kerberos" != "no" ; then | |
| 867 if test "$kerberos" != "yes" ; then | |
| 868 KRB4_CFLAGS="-I${kerberos}/include" | |
| 869 if test -d "$kerberos/include/kerberosIV" ; then | |
| 870 KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
| 871 fi | |
| 872 KRB4_LDFLAGS="-L${kerberos}/lib" | |
| 873 elif test -d /usr/local/include/kerberosIV ; then | |
| 874 KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
| 875 elif test -d /usr/include/kerberosIV ; then | |
| 876 KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
| 877 fi | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
878 AC_DEFINE(ZEPHYR_USES_KERBEROS, 1, [Define if kerberos should be used in Zephyr.]) |
| 2129 | 879 |
| 880 orig_LDFLAGS="$LDFLAGS" | |
| 881 LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
| 882 AC_CHECK_LIB(krb4, krb_rd_req, | |
| 883 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
| 884 [AC_CHECK_LIB(krb, krb_rd_req, | |
| 885 [KRB4_LIBS="-lkrb -ldes"], | |
| 886 [AC_ERROR(Kerberos 4 libraries not found)], | |
| 887 -ldes)], | |
| 888 -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
| 889 orig_LIBS="$LIBS" | |
| 890 LIBS="$LIBS $KRB4_LIBS" | |
| 891 AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
| 892 AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
| 893 LIBS="$orig_LIBS" | |
| 894 LDFLAGS="$orig_LDFLAGS" | |
| 895 fi | |
| 6150 | 896 |
| 897 AC_MSG_CHECKING(for me pot o' gold) | |
| 898 AC_MSG_RESULT(no) | |
| 2129 | 899 AC_CHECK_FUNCS(gethostid lrand48) |
| 900 AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
| 901 AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
| 902 AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
| 903 AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
| 904 AC_CHECK_HEADERS(termios.h) | |
| 3194 | 905 AC_VAR_TIMEZONE_EXTERNALS |
| 2129 | 906 |
| 907 AC_OUTPUT([Makefile | |
|
4554
fbf9f873abfc
[gaim-migrate @ 4834]
Christian Hammond <chipx86@chipx86.com>
parents:
4489
diff
changeset
|
908 Doxyfile |
| 2129 | 909 doc/Makefile |
| 910 intl/Makefile | |
| 911 pixmaps/Makefile | |
| 4252 | 912 pixmaps/smileys/Makefile |
| 913 pixmaps/smileys/default/Makefile | |
| 4687 | 914 pixmaps/status/Makefile |
| 915 pixmaps/status/default/Makefile | |
| 2129 | 916 plugins/Makefile |
| 3510 | 917 plugins/docklet/Makefile |
|
5859
022786c7ab53
[gaim-migrate @ 6290]
Christian Hammond <chipx86@chipx86.com>
parents:
5759
diff
changeset
|
918 plugins/gaim-remote/Makefile |
|
4390
16540914c963
[gaim-migrate @ 4656]
Christian Hammond <chipx86@chipx86.com>
parents:
4298
diff
changeset
|
919 plugins/gestures/Makefile |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5193
diff
changeset
|
920 plugins/perl/Makefile |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
921 plugins/perl/common/Makefile.PL |
| 6694 | 922 plugins/tcl/Makefile |
| 3391 | 923 plugins/ticker/Makefile |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
924 po/Makefile.in |
| 2129 | 925 sounds/Makefile |
| 926 src/Makefile | |
| 927 src/protocols/Makefile | |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
928 src/protocols/gg/Makefile |
| 2129 | 929 src/protocols/irc/Makefile |
| 930 src/protocols/jabber/Makefile | |
| 931 src/protocols/msn/Makefile | |
| 932 src/protocols/napster/Makefile | |
| 933 src/protocols/oscar/Makefile | |
| 934 src/protocols/toc/Makefile | |
| 935 src/protocols/yahoo/Makefile | |
| 936 src/protocols/zephyr/Makefile | |
| 937 gaim.spec | |
| 938 ]) | |
| 939 | |
| 940 echo | |
| 941 echo $PACKAGE $VERSION | |
| 942 | |
| 943 echo | |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
944 echo Allow Multiple Connections.... : $enable_multi |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
945 echo Build Protocol Plugins........ : $enable_prpls |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
946 echo Protocols to link statically.. : $STATIC_PRPLS |
| 2129 | 947 echo |
| 4561 | 948 echo UI Library.................... : GTK 2.x |
| 2129 | 949 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
950 echo Build with Plugin support..... : $enable_plugins |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
951 echo Build with Perl support....... : $enable_perl |
| 6694 | 952 echo Build with Tcl support........ : $enable_tcl |
| 953 echo Build with Tk support......... : $enable_tk | |
| 4561 | 954 echo Build with Audio support...... : $enable_audio |
| 4581 | 955 echo Build with NAS support........ : $enable_nas |
| 4561 | 956 echo Build with GtkSpell support... : $enable_gtkspell |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
957 echo Build with SSL support........ : $msg_ssl |
| 3802 | 958 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
959 echo Use XScreenSaver Extension.... : $enable_xss |
| 4157 | 960 echo Use X Session Management...... : $enable_sm |
| 2129 | 961 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
962 echo Print debugging messages...... : $enable_debug |
| 2129 | 963 echo |
|
2452
824e1afefdd3
[gaim-migrate @ 2465]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2436
diff
changeset
|
964 eval eval echo Gaim will be installed in $bindir. |
| 2129 | 965 if test "x$gaimpath" != "x" ; then |
| 966 echo Warning: You have an old copy of gaim at $gaimpath. | |
| 967 fi | |
| 968 echo | |
| 969 echo configure complete, now type \'make\' | |
| 970 echo |
