Mercurial > pidgin
annotate configure.ac @ 8637:dc5f694e1cab
[gaim-migrate @ 9389]
Rendezvous shouldn't cause any problems, but you still won't show
up in other people's buddy lists. I'm willing to accept bug
fixes, but no patches for new functionality.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 12 Apr 2004 01:37:18 +0000 |
| parents | b11948aed48c |
| children | 8c4f33ffe17c |
| rev | line source |
|---|---|
| 2129 | 1 dnl Process this file with autoconf to produce a configure script. |
| 8555 | 2 AC_INIT([gaim], [0.77cvs], [gaim-devel@lists.sourceforge.net]) |
| 2129 | 3 AM_CONFIG_HEADER(config.h) |
| 8485 | 4 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) |
| 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 | |
| 7603 | 17 # before gettexting, in case iconv matters |
| 18 case "$host_os" in | |
| 19 darwin*) | |
| 20 AC_MSG_CHECKING([for fink]) | |
| 21 if test -d /sw; then | |
| 22 AC_MSG_RESULT([found, adding /sw to search paths]) | |
| 23 CFLAGS="$CFLAGS -I/sw/include" | |
| 24 else | |
| 25 AC_MSG_RESULT([not found]) | |
| 26 fi | |
| 27 ;; | |
| 28 *) | |
| 29 ;; | |
| 30 esac | |
| 2129 | 31 |
| 8626 | 32 ALL_LINGUAS="am bg ca cs da de en_GB es fi fr he hi hu it ja ko mk nl no pl pt_BR pt ro ru sk sr sr@Latn sv vi zh_CN zh_TW" |
|
3408
ba6d0856c8e4
[gaim-migrate @ 3427]
Christian Hammond <chipx86@chipx86.com>
parents:
3391
diff
changeset
|
33 AM_GNU_GETTEXT_VERSION(0.10.40) |
| 2129 | 34 AM_GNU_GETTEXT |
| 35 | |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
36 dnl we don't use autobreak on cygwin!! |
|
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
37 dnl AC_CYGWIN |
| 2129 | 38 |
| 39 dnl Checks for header files. | |
| 40 AC_HEADER_STDC | |
| 41 AC_HEADER_SYS_WAIT | |
| 42 AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h locale.h signal.h) | |
| 43 | |
| 44 dnl Checks for typedefs, structures, and compiler characteristics. | |
| 45 AC_C_CONST | |
| 46 AC_STRUCT_TM | |
| 47 | |
| 48 dnl Checks for library functions. | |
| 49 AC_TYPE_SIGNAL | |
| 50 AC_FUNC_STRFTIME | |
| 4424 | 51 AC_CHECK_FUNCS(strdup strstr atexit) |
| 2129 | 52 dnl Checks for getopt in standard library |
|
7451
81959bd9fe1f
[gaim-migrate @ 8063]
Christian Hammond <chipx86@chipx86.com>
parents:
7396
diff
changeset
|
53 AC_CHECK_FUNCS(getopt_long,, |
|
81959bd9fe1f
[gaim-migrate @ 8063]
Christian Hammond <chipx86@chipx86.com>
parents:
7396
diff
changeset
|
54 [ |
|
81959bd9fe1f
[gaim-migrate @ 8063]
Christian Hammond <chipx86@chipx86.com>
parents:
7396
diff
changeset
|
55 AC_LIBOBJ(getopt) |
|
81959bd9fe1f
[gaim-migrate @ 8063]
Christian Hammond <chipx86@chipx86.com>
parents:
7396
diff
changeset
|
56 AC_LIBOBJ(getopt1) |
|
81959bd9fe1f
[gaim-migrate @ 8063]
Christian Hammond <chipx86@chipx86.com>
parents:
7396
diff
changeset
|
57 ]) |
| 2129 | 58 |
| 2959 | 59 dnl Check for inet_aton |
| 60 AC_CHECK_FUNC(inet_aton, , [AC_CHECK_LIB(resolv, inet_aton, , | |
| 61 [AC_ERROR(inet_aton not found)])]) | |
| 4424 | 62 AC_CHECK_LIB(nsl, gethostent) |
| 63 AC_CHECK_FUNC(socket, , | |
| 64 [AC_CHECK_LIB(socket, socket, , [AC_ERROR([socket not found])])]) | |
| 65 dnl If all goes well, by this point the previous two checks will have | |
| 66 dnl pulled in -lsocket and -lnsl if we need them. | |
| 67 AC_CHECK_FUNC(getaddrinfo, [AC_DEFINE([HAVE_GETADDRINFO], [1], | |
| 68 [Define to 1 if you have the getaddrinfo function.])], | |
| 69 [AC_CHECK_LIB(socket, getaddrinfo, | |
| 70 [AC_DEFINE([HAVE_GETADDRINFO]) LIBS="-lsocket -lsnl $LIBS"], , , -lnsl)]) | |
| 2959 | 71 |
| 3150 | 72 dnl Check for socklen_t (in Unix98) |
| 73 AC_MSG_CHECKING(for socklen_t) | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
74 AC_TRY_COMPILE([ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
75 #include <sys/types.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
76 #include <sys/socket.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
77 socklen_t x; |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
78 ], [], |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
79 [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
80 AC_MSG_RESULT(yes) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
81 ], [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
82 AC_TRY_COMPILE([ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
83 #include <sys/types.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
84 #include <sys/socket.h> |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
85 int accept(int, struct sockaddr *, size_t *); |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
86 ], [], [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
87 AC_MSG_RESULT(size_t) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
88 AC_DEFINE(socklen_t, size_t, [socklen_t size]) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
89 ], [ |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
90 AC_MSG_RESULT(int) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
91 AC_DEFINE(socklen_t, int, [socklen_t size]) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
92 ]) |
|
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
93 ]) |
| 3150 | 94 |
| 2129 | 95 AC_ARG_ENABLE(distrib,,,enable_distrib=no) |
| 96 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
| 97 AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
| 8031 | 98 DYNAMIC_PRPLS=all |
| 3572 | 99 AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="") |
| 8031 | 100 if test "x$STATIC_PRPLS" != "x" -a "x$DYNAMIC_PRPLS" = "xall"; then |
| 101 DYNAMIC_PRPLS="" | |
| 102 fi | |
| 103 | |
| 2129 | 104 if test "x$STATIC_PRPLS" = "xall" ; then |
| 8606 | 105 STATIC_PRPLS="gg irc jabber msn napster oscar yahoo zephyr" |
| 2129 | 106 fi |
| 107 AC_SUBST(STATIC_PRPLS) | |
| 108 STATIC_LINK_LIBS= | |
| 109 extern_init= | |
| 110 load_proto= | |
| 111 for i in $STATIC_PRPLS ; do | |
| 112 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
| 5449 | 113 extern_init="$extern_init extern gboolean gaim_init_${i}_plugin();" |
| 114 load_proto="$load_proto gaim_init_${i}_plugin();" | |
| 2129 | 115 case $i in |
| 8637 | 116 gg) static_gg=yes ;; |
| 117 irc) static_irc=yes ;; | |
| 118 jabber) static_jabber=yes ;; | |
| 119 msn) static_msn=yes ;; | |
| 120 napster) static_napster=yes ;; | |
| 121 oscar) static_oscar=yes ;; | |
| 122 rendezvous) static_rendezvous=yes ;; | |
| 123 toc) static_toc=yes ;; | |
| 124 trepia) static_trepia=yes ;; | |
| 125 yahoo) static_yahoo=yes ;; | |
| 126 zephyr) static_zephyr=yes ;; | |
| 127 *) echo "Invalid static protocol $i!!" ; exit ;; | |
| 2129 | 128 esac |
| 129 done | |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
130 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
131 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
132 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
133 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
134 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
135 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
| 8637 | 136 AM_CONDITIONAL(STATIC_RENDEZVOUS, test "x$static_rendezvous" = "xyes") |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
137 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
|
5730
99ae9bd8b5fa
[gaim-migrate @ 6154]
Christian Hammond <chipx86@chipx86.com>
parents:
5719
diff
changeset
|
138 AM_CONDITIONAL(STATIC_TREPIA, test "x$static_trepia" = "xyes") |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
139 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
140 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
| 2129 | 141 AC_SUBST(STATIC_LINK_LIBS) |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
142 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
|
143 [Loads static protocol plugin module initialization functions.]) |
| 2129 | 144 |
| 8403 | 145 AC_ARG_WITH(dynamic_prpls, [ --with-dynamic-prpls specify which protocols to build dynamically],[DYNAMIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`]) |
|
7373
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
146 if test "x$DYNAMIC_PRPLS" = "xall" ; then |
| 8606 | 147 DYNAMIC_PRPLS="gg irc jabber msn napster oscar yahoo zephyr" |
|
7373
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
148 fi |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
149 AC_SUBST(DYNAMIC_PRPLS) |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
150 for i in $DYNAMIC_PRPLS ; do |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
151 case $i in |
| 8637 | 152 gg) dynamic_gg=yes ;; |
| 153 irc) dynamic_irc=yes ;; | |
| 154 jabber) dynamic_jabber=yes ;; | |
| 155 msn) dynamic_msn=yes ;; | |
| 156 napster) dynamic_napster=yes ;; | |
| 157 oscar) dynamic_oscar=yes ;; | |
| 158 rendezvous) dynamic_rendezvous=yes ;; | |
| 159 toc) dynamic_toc=yes ;; | |
| 160 trepia) dynamic_trepia=yes ;; | |
| 161 yahoo) dynamic_yahoo=yes ;; | |
| 162 zephyr) dynamic_zephyr=yes ;; | |
| 163 *) echo "Invalid dynamic protocol $i!!" ; exit ;; | |
|
7373
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
164 esac |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
165 done |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
166 AM_CONDITIONAL(DYNAMIC_GG, test "x$dynamic_gg" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
167 AM_CONDITIONAL(DYNAMIC_IRC, test "x$dynamic_irc" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
168 AM_CONDITIONAL(DYNAMIC_JABBER, test "x$dynamic_jabber" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
169 AM_CONDITIONAL(DYNAMIC_MSN, test "x$dynamic_msn" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
170 AM_CONDITIONAL(DYNAMIC_NAPSTER, test "x$dynamic_napster" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
171 AM_CONDITIONAL(DYNAMIC_OSCAR, test "x$dynamic_oscar" = "xyes") |
| 8637 | 172 AM_CONDITIONAL(DYNAMIC_RENDEZVOUS, test "x$dynamic_rendezvous" = "xyes") |
|
7373
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
173 AM_CONDITIONAL(DYNAMIC_TOC, test "x$dynamic_toc" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
174 AM_CONDITIONAL(DYNAMIC_TREPIA, test "x$dynamic_trepia" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
175 AM_CONDITIONAL(DYNAMIC_YAHOO, test "x$dynamic_yahoo" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
176 AM_CONDITIONAL(DYNAMIC_ZEPHYR, test "x$dynamic_zephyr" = "xyes") |
|
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
177 |
| 4561 | 178 AC_ARG_ENABLE(audio, [ --disable-audio compile without libao/libaudiofile for sound playing],,enable_audio=yes) |
| 4581 | 179 AC_ARG_ENABLE(nas, [ --enable-nas enable NAS (Network Audio System) support],,enable_nas=no) |
| 2129 | 180 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) |
| 181 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
| 6694 | 182 AC_ARG_ENABLE(tcl, [ --disable-tcl compile without Tcl scripting],,enable_tcl=yes) |
| 183 AC_ARG_WITH(tclconfig, [ --with-tclconfig=DIR directory containing tclConfig.sh]) | |
| 184 AC_ARG_ENABLE(tk, [ --disable-tk compile without Tcl support for Tk],,enable_tk=yes) | |
| 185 AC_ARG_WITH(tkconfig, [ --with-tkconfig=DIR directory containing tkConfig.sh]) | |
| 3802 | 186 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
|
187 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) |
|
8525
d8dfab355d2c
[gaim-migrate @ 9264]
Christian Hammond <chipx86@chipx86.com>
parents:
8485
diff
changeset
|
188 AC_ARG_ENABLE(deprecated, [ --disable-deprecated compile without deprecated API usage],,enable_deprecated=yes) |
| 2129 | 189 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) |
| 4157 | 190 AC_ARG_ENABLE(sm, [ --disable-sm compile without X session management support],,enable_sm=yes) |
| 2129 | 191 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") |
| 192 | |
| 8378 | 193 AC_ARG_WITH(zephyr, [ --with-zephyr=PREFIX Compile Zephyr plugin against external libzephyr],zephyr="$withval",zephyr="no") |
| 194 AM_CONDITIONAL(EXTERNAL_LIBZEPHYR, test "x$zephyr" != "xno") | |
| 195 | |
| 2129 | 196 if test "$enable_debug" = yes ; then |
|
8525
d8dfab355d2c
[gaim-migrate @ 9264]
Christian Hammond <chipx86@chipx86.com>
parents:
8485
diff
changeset
|
197 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
|
d8dfab355d2c
[gaim-migrate @ 9264]
Christian Hammond <chipx86@chipx86.com>
parents:
8485
diff
changeset
|
198 fi |
|
d8dfab355d2c
[gaim-migrate @ 9264]
Christian Hammond <chipx86@chipx86.com>
parents:
8485
diff
changeset
|
199 |
|
d8dfab355d2c
[gaim-migrate @ 9264]
Christian Hammond <chipx86@chipx86.com>
parents:
8485
diff
changeset
|
200 if test "x$enable_deprecated" = no; then |
| 7691 | 201 DEBUG_CFLAGS="$DEBUG_CFLAGS -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED" |
| 2129 | 202 fi |
| 203 | |
| 7021 | 204 if test "x$GCC" = "xyes"; then |
| 205 CFLAGS="$CFLAGS -Wall -g3" | |
| 206 fi | |
|
6723
296c45dd9a51
[gaim-migrate @ 7250]
Christian Hammond <chipx86@chipx86.com>
parents:
6722
diff
changeset
|
207 AC_SUBST(CFLAGS) |
|
296c45dd9a51
[gaim-migrate @ 7250]
Christian Hammond <chipx86@chipx86.com>
parents:
6722
diff
changeset
|
208 |
| 3551 | 209 AM_PATH_GLIB_2_0(2.0.0,,AC_MSG_ERROR([ |
| 3425 | 210 *** GLib 2.0 is required to build Gaim; please make sure you have the GLib |
| 2129 | 211 *** development headers installed. The latest version of GLib is |
| 212 *** always available at http://www.gtk.org/.])) | |
| 3551 | 213 AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR([ |
| 3425 | 214 *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ |
| 2129 | 215 *** development headers installed. The latest version of GTK+ is |
|
2730
a9aabf1170f1
[gaim-migrate @ 2743]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2726
diff
changeset
|
216 *** always available at http://www.gtk.org/.])) |
| 2129 | 217 |
| 3425 | 218 AC_PATH_PROG(gaimpath, gaim) |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
219 AC_SUBST(GTK_CFLAGS) |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6360
diff
changeset
|
220 AC_SUBST(GLIB_CFLAGS) |
| 2129 | 221 |
| 4884 | 222 AC_PATH_XTRA |
| 5344 | 223 # We can't assume that $x_libraries will be set, because autoconf does not |
| 224 # set it in the case when the X libraries are in a standard place. | |
| 225 # Ditto for $x_includes | |
| 226 if test X"$x_libraries" = X"" ; then | |
| 227 x_libpath_add= | |
| 228 else | |
| 229 x_libpath_add="-L$x_libraries" | |
| 230 fi | |
| 231 if test X"$x_includes" = X"" ; then | |
| 232 x_incpath_add= | |
| 233 else | |
| 234 x_incpath_add="-I$x_includes" | |
| 235 fi | |
| 4157 | 236 |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
237 dnl Check for startup notification |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
238 PKG_CHECK_MODULES(STARTUP_NOTIFICATION, libstartup-notification-1.0 >= 0.5, |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
239 [ |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
240 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, [Define if we're using libstartup-notification.]) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
241 echo "Building with libstartup-notification" |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
242 enable_startup_notification=yes |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
243 ], |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
244 [ |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
245 echo "Building without libstartup-notification" |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
246 enable_startup_notification=no |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
247 ]) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
248 |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
249 AC_SUBST(STARTUP_NOTIFICATION_CFLAGS) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
250 AC_SUBST(STARTUP_NOTIFICATION_LIBS) |
|
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
251 |
| 8089 | 252 |
| 253 dnl Check for stuff needed by the evolution integration plugin. | |
| 254 build_gevo=no | |
| 255 | |
| 256 evo_deps="libxml-2.0 libebook-1.0 libedata-book-1.0" | |
| 257 PKG_CHECK_MODULES(EVOLUTION_ADDRESSBOOK, $evo_deps, build_gevo=yes, build_gevo=no) | |
| 258 | |
| 259 AC_SUBST(EVOLUTION_ADDRESSBOOK_CFLAGS) | |
| 260 AC_SUBST(EVOLUTION_ADDRESSBOOK_LIBS) | |
| 261 | |
| 262 AM_CONDITIONAL(BUILD_GEVOLUTION, test "x$build_gevo" = "xyes") | |
| 263 | |
| 2129 | 264 dnl Check for XScreenSaver |
| 265 if test "x$enable_xss" = "xyes" ; then | |
|
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
266 old_LIBS="$LIBS" |
| 5344 | 267 LIBS="$LIBS $GTK_LIBS $x_libpath_add" |
| 2129 | 268 XSS_LIBS="no" |
| 269 XSS_HEADERS="no" | |
| 4884 | 270 AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS="$X_LIBS $X_PRE_LIBS -lX11 -lXext $X_EXTRA_LIBS"],[],[-lX11 -lXext -lm]) |
| 271 AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="$X_LIBS $X_PRE_LIBS -lX11 -lXext $X_LIBS $X_EXTRA_LIBS -lXss"],[],[-lX11 -lXext -lm]) | |
| 2129 | 272 if test \! "$XSS_LIBS" = "no"; then |
|
6844
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
273 oldCPPFLAGS="$CPPFLAGS" |
|
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
274 CPPFLAGS="$CPPFLAGS -I$x_includes" |
| 2129 | 275 AC_TRY_COMPILE([ |
| 4884 | 276 #include <X11/Xlib.h> |
| 2129 | 277 #include <X11/extensions/scrnsaver.h> |
| 4884 | 278 ],[],[ |
| 279 AC_DEFINE(USE_SCREENSAVER, 1, [Define if we're using XScreenSaver.])],[enable_xss=no] | |
| 280 ) | |
|
6844
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
281 CPPFLAGS="$oldCPPFLAGS" |
| 2129 | 282 else |
| 283 XSS_LIBS="" | |
| 284 enable_xss=no | |
| 285 fi | |
|
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
286 LIBS="$old_LIBS" |
| 2129 | 287 else |
| 288 XSS_LIBS="" | |
| 289 enable_xss=no | |
| 290 fi | |
| 291 AC_SUBST(XSS_LIBS) | |
| 292 | |
| 293 | |
| 4157 | 294 dnl Check for X session management libs |
| 295 if test "x$enable_sm" = "xyes"; then | |
| 296 enable_sm=no | |
| 5344 | 297 AC_CHECK_LIB(SM, SmcSaveYourselfDone, found_sm_lib=true, , [$x_libpath_add -lICE]) |
| 4157 | 298 if test "$found_sm_lib" = "true"; then |
|
6844
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
299 oldCPPFLAGS="$CPPFLAGS" |
|
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
300 CPPFLAGS="$CPPFLAGS -I$x_includes" |
| 5344 | 301 AC_CHECK_HEADERS(X11/SM/SMlib.h, SM_LIBS="$x_libpath_add -lSM -lICE" enable_sm=yes) |
|
6844
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
302 CPPFLAGS="$oldCPPFLAGS" |
| 4157 | 303 fi |
| 304 else | |
| 305 SM_LIBS="" | |
| 306 enable_sm=no | |
| 307 fi | |
| 308 AC_SUBST(SM_LIBS) | |
| 309 if test "$enable_sm" = "yes"; then | |
| 310 AC_DEFINE(USE_SM, 1, [Define if we're using X Session Management.]) | |
| 311 fi | |
| 312 | |
| 313 | |
| 3203 | 314 AC_DEFUN(GC_TM_GMTOFF, |
| 315 [AC_REQUIRE([AC_STRUCT_TM])dnl | |
| 316 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, | |
| 317 [AC_TRY_COMPILE([#include <sys/types.h> | |
| 318 #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], | |
| 319 ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) | |
| 320 if test "$ac_cv_struct_tm_gmtoff" = yes; then | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
321 AC_DEFINE(HAVE_TM_GMTOFF, 1, [tm_gmtoff is available.]) |
| 3203 | 322 fi |
| 323 ]) | |
| 324 | |
| 325 GC_TM_GMTOFF | |
| 326 | |
| 327 | |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
328 dnl |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
329 dnl Perl stuff. Yeah. |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
330 dnl |
| 2129 | 331 if test "$enable_perl" = yes ; then |
| 332 AC_PATH_PROG(perlpath, perl) | |
| 333 AC_MSG_CHECKING(for Perl compile flags) | |
| 334 PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
| 335 if test "_$PERL_CFLAGS" = _ ; then | |
| 336 AC_MSG_RESULT([not found, building without perl.]) | |
| 337 enable_perl = no | |
| 338 else | |
| 339 PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
| 340 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
| 341 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
| 342 if test "$system" = "Linux"; then | |
| 343 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
| 344 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
| 345 fi | |
| 346 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
| 347 AC_MSG_RESULT(ok) | |
| 3931 | 348 |
|
6844
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
349 oldLIBS="$LIBS" |
| 3931 | 350 LIBS="$LIBS $PERL_LIBS" |
| 351 AC_MSG_CHECKING(for libperl) | |
| 352 AC_CHECK_FUNCS(perl_run, [], enable_perl=no) | |
|
6844
ffc40208c1e9
[gaim-migrate @ 7389]
Christian Hammond <chipx86@chipx86.com>
parents:
6836
diff
changeset
|
353 LIBS="$oldLIBS" |
| 2129 | 354 fi |
| 355 fi | |
| 356 | |
| 3931 | 357 if test "$enable_perl" = yes ; then |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
358 AC_PROG_PERL_MODULES(ExtUtils::MakeMaker, , have_makemaker=no) |
| 3931 | 359 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
360 if test "x$have_makemaker" = "xno"; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
361 enable_perl=no |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
362 PERL_CFLAGS= |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
363 PERL_LIBS= |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
364 AM_CONDITIONAL(USE_PERL, false) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
365 AC_MSG_WARN(Compiling perl requires ExtUtils::MakeMaker) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
366 else |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
367 AC_SUBST(PERL_CFLAGS) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
368 AC_SUBST(PERL_LIBS) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
369 AM_CONDITIONAL(USE_PERL, test "x$enable_perl" = "xyes") |
| 4298 | 370 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
371 dnl This is almost definitely wrong, but in case there's |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
372 dnl something I'm missing, I'll leave it in. |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
373 AC_CHECK_FUNCS(Perl_eval_pv) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
374 |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
375 AC_MSG_CHECKING(for old perl) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
376 PERL_OLD=`$perlpath -e 'if($]<5.006){printf"yes\n";}else{printf"no\n";}'` |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
377 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
378 if test "x$PERL_OLD" = "xyes"; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
379 AC_DEFINE(OLD_PERL, 1, [Define if old perl is installed.]) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
380 AC_MSG_RESULT(yes) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
381 else |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
382 AC_MSG_RESULT(no) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
383 fi |
|
6586
c3388f361bdf
[gaim-migrate @ 7108]
Christian Hammond <chipx86@chipx86.com>
parents:
6535
diff
changeset
|
384 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
385 if test "x$prefix" != "xNONE"; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
386 prefix=`eval echo $prefix` |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
387 PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=$prefix" |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
388 fi |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
389 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
390 AC_ARG_WITH(perl-lib, |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
391 [ --with-perl-lib=[site|vendor|DIR] Specify where to install the |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
392 Perl libraries for gaim. Default is site.], |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
393 [ |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
394 if test "x$withval" = xsite; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
395 PERL_MM_PARAMS="" |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
396 elif test "x$withval" = xvendor; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
397 if test -z "`$perlpath -v | grep '5\.0'`"; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
398 PERL_MM_PARAMS="INSTALLDIRS=vendor" |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
399 else |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
400 PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=`perl -e 'use Config; print $Config{prefix}'`" |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
401 fi |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
402 else |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
403 PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=$withval" |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
404 fi |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
405 ]) |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
406 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
407 AC_SUBST(PERL_MM_PARAMS) |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
408 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
409 AC_MSG_CHECKING(for DynaLoader.a) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
410 DYNALOADER_A=`echo $PERL_LDFLAGS | $perlpath -pe 's/^(.* )*([[^ ]]*DynaLoader\.a).*/\2/'` |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
411 |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
412 dnl Don't check libperl.a if dynaloader.a wasn't found. |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
413 if test -n "$DYNALOADER_A"; then |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
414 AC_MSG_RESULT(yes) |
|
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
415 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
416 dnl Find either libperl.a or libperl.so |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
417 AC_MSG_CHECKING(for libperl.a or libperl.so) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
418 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 } } };'` |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
419 if test -z "$LIBPERL_A"; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
420 AC_MSG_RESULT(no) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
421 DYNALOADER_A= |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
422 else |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
423 AC_MSG_RESULT(yes) |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
424 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
425 if test "$LIBPERL_A" = "-lperl"; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
426 LIBPERL_A= |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
427 fi |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
428 fi |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
429 |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
430 PERL_LIBS=`echo $PERL_LIBS | $perlpath -pe 's/^(.* )*[[^ ]]*DynaLoader\.a/\1libperl_dynaloader.la/'` |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
431 |
|
7200
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
432 if test -n "$LIBPERL_A"; then |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
433 PERL_LIBS=`echo $PERL_LDFLAGS | $sedpath -e 's/-lperl /libperl_orig.la /' -e 's/-lperl$/libperl_orig.la$/'` |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
434 fi |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
435 |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
436 AC_SUBST(DYNALOADER_A) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
437 AC_SUBST(LIBPERL_A) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
438 else |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
439 AC_MSG_RESULT(no) |
|
2ddd145c9420
[gaim-migrate @ 7769]
Christian Hammond <chipx86@chipx86.com>
parents:
7168
diff
changeset
|
440 fi |
|
6508
cbd24b37350d
[gaim-migrate @ 7025]
Christian Hammond <chipx86@chipx86.com>
parents:
6475
diff
changeset
|
441 fi |
| 3931 | 442 else |
| 443 PERL_CFLAGS= | |
| 444 PERL_LIBS= | |
|
5232
2d58a9a46292
[gaim-migrate @ 5602]
Christian Hammond <chipx86@chipx86.com>
parents:
5229
diff
changeset
|
445 AM_CONDITIONAL(USE_PERL, false) |
| 3931 | 446 fi |
| 447 | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
448 dnl ####################################################################### |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
449 dnl # SSL support |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
450 dnl # |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
451 dnl # Thanks go to Evolution for the checks. |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
452 dnl ####################################################################### |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
453 |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
454 dnl These two are inverses of each other <-- stolen from evolution! |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
455 |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
456 AC_ARG_ENABLE(gnutls, |
| 6968 | 457 [ --enable-gnutls=[yes,no] Attempt to use GNUTLS for SSL support (preferred) [default=yes]], |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
458 [enable_gnutls="$enableval"], |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
459 [enable_gnutls="yes"]) |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
460 |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
461 AC_ARG_ENABLE(nss, |
| 6968 | 462 [ --enable-nss=[yes,no,static] Attempt to use Mozilla libnss for SSL support [default=yes]], |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
463 [enable_nss="$enableval"], |
| 6968 | 464 [enable_nss="yes"]) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
465 |
| 6782 | 466 msg_ssl="None" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
467 |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
468 dnl # |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
469 dnl # Check for GNUTLS if it's specified. |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
470 dnl # |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
471 if test "x$enable_gnutls" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
472 enable_gnutls="no" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
473 prefix=`eval echo $prefix` |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
474 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
475 AC_ARG_WITH(gnutls-includes, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
476 [ --with-gnutls-includes=PREFIX Location of GNUTLS includes.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
477 [ with_gnutls_includes="$withval" ], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
478 [ with_gnutls_includes="$prefix/include" ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
479 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
480 have_gnutls_includes="no" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
481 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
482 if test "x$with_gnutls_includes" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
483 CPPFLAGS_save="$CPPFLAGS" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
484 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
485 AC_MSG_CHECKING(for GNUTLS includes) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
486 AC_MSG_RESULT("") |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
487 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
488 CPPFLAGS="$CPPFLAGS -I$with_gnutls_includes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
489 AC_CHECK_HEADERS(gnutls/gnutls.h, [ gnutls_includes="yes" ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
490 CPPFLAGS="$CPPFLAGS_save" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
491 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
492 if test "x$gnutls_includes" != "xno" -a \ |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
493 "x$gnutls_includes" != "x"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
494 have_gnutls_includes="yes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
495 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
496 GNUTLS_CFLAGS="-I$with_gnutls_includes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
497 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
498 GNUTLS_CFLAGS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
499 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
500 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
501 AC_MSG_CHECKING(for GNUTLS includes) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
502 AC_MSG_RESULT(no) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
503 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
504 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
505 AC_ARG_WITH(gnutls-libs, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
506 [ --with-gnutls-libs=PREFIX Location of GNUTLS libraries.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
507 [ with_gnutls_libs="$withval" ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
508 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
509 if test "x$with_gnutls_libs" != "xno" -a \ |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
510 "x$have_gnutls_includes" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
511 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
512 LDFLAGS_save="$LDFLAGS" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
513 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
514 case $with_gnutls_libs in |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
515 ""|-L*) ;; |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
516 *) with_gnutls_libs="-L$with_gnutls_libs" ;; |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
517 esac |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
518 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
519 AC_CACHE_CHECK([for GNUTLS libraries], gnutls_libs, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
520 [ |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
521 LDFLAGS="$LDFLAGS $with_gnutls_libs -lgnutls -lgcrypt" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
522 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
|
523 LDFLAGS="$LDFLAGS_save" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
524 ]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
525 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
526 if test "x$gnutls_libs" != "xno"; then |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
527 AC_DEFINE(HAVE_GNUTLS, 1, [Define if you have GNUTLS]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
528 AC_DEFINE(HAVE_SSL) |
|
7155
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
529 msg_gnutls="GNUTLS" |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
530 GNUTLS_LIBS="$with_gnutls_libs -lgnutls -lgcrypt" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
531 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
532 enable_gnutls="yes" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
533 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
534 GNUTLS_CFLAGS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
535 GNUTLS_LIBS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
536 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
537 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
538 AC_MSG_CHECKING(for GNUTLS libraries) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
539 AC_MSG_RESULT(no) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
540 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
541 else |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
542 GNUTLS_CFLAGS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
543 GNUTLS_LIBS="" |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
544 fi |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
545 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
546 AC_SUBST(GNUTLS_CFLAGS) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
547 AC_SUBST(GNUTLS_LIBS) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
548 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
549 AM_CONDITIONAL(USE_GNUTLS, test "x$enable_gnutls" = "xyes") |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
550 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
551 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
552 dnl # |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
553 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
|
554 dnl # |
|
7155
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
555 if test "x$enable_nss" != "xno"; then |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
556 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
557 AC_ARG_WITH(nspr-includes, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
558 [ --with-nspr-includes=PREFIX Specify location of Mozilla nspr4 includes.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
559 [with_nspr_includes="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
560 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
561 AC_ARG_WITH(nspr-libs, |
| 8403 | 562 [ --with-nspr-libs=PREFIX Specify location of Mozilla nspr4 libs.], |
|
6757
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
563 [with_nspr_libs="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
564 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
565 AC_ARG_WITH(nss-includes, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
566 [ --with-nss-includes=PREFIX Specify location of Mozilla nss3 includes.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
567 [with_nss_includes="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
568 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
569 AC_ARG_WITH(nss-libs, |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
570 [ --with-nss-libs=PREFIX Specify location of Mozilla nss3 libs.], |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
571 [with_nss_libs="$withval"]) |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
572 |
|
ddee8d7daf1b
[gaim-migrate @ 7289]
Christian Hammond <chipx86@chipx86.com>
parents:
6756
diff
changeset
|
573 |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
574 if test -n "$with_nspr_includes" || test -n "$with_nspr_libs" || \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
575 test -n "$with_nss_includes" || test -n "$with_nss_libs" || |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
576 test "x$enable_nss" = "xstatic"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
577 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
578 nss_manual_check="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
579 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
580 nss_manual_check="no" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
581 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
582 |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
583 enable_nss="no" |
|
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
584 |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
585 if test "x$nss_manual_check" = "xno"; then |
|
6756
cdb4acfe777f
[gaim-migrate @ 7288]
Christian Hammond <chipx86@chipx86.com>
parents:
6738
diff
changeset
|
586 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
|
587 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
588 if test "x$have_nss" = "xyes"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
589 mozilla_nspr="mozilla-nspr" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
590 mozilla_nss="mozilla-nss" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
591 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
592 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
|
593 AC_DEFINE(HAVE_SSL, 1, [Define if you have SSL]) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
594 |
|
7155
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
595 msg_nss="Mozilla NSS" |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
596 enable_nss="yes" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
597 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
598 nss_manual_check="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
599 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
600 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
601 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
602 if test "x$nss_manual_check" = "xyes"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
603 mozilla_nss="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
604 have_nspr_includes="no" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
605 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
606 if test "x$with_nspr_includes" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
607 CPPFLAGS_save=$CPPFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
608 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
609 AC_MSG_CHECKING(for Mozilla nspr4 includes in $with_nspr_includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
610 AC_MSG_RESULT("") |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
611 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
612 CPPFLAGS="$CPPFLAGS -I$with_nspr_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
613 AC_CHECK_HEADERS(nspr.h prio.h, [ moz_nspr_includes="yes" ]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
614 CPPFLAGS=$CPPFLAGS_save |
|
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 "x$moz_nspr_includes" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
617 "x$moz_nspr_includes" != "x"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
618 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
619 have_nspr_includes="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
620 NSPR_CFLAGS="-I$with_nspr_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
621 fi |
|
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 AC_MSG_CHECKING(for Mozilla nspr4 includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
624 AC_MSG_RESULT(no) |
|
7087
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
625 |
|
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
626 enable_nss="no" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
627 fi |
|
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 have_nspr_libs="no" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
630 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
631 if test "x$with_nspr_libs" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
632 "x$have_nspr_includes" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
633 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
634 CFLAGS_save=$CFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
635 LDFLAGS_save=$LDFLAGS |
|
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 if test "$enable_nss" = "static"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
638 if test -z "$with_nspr_libs"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
639 AC_MSG_ERROR( |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
640 [Static linkage requested, but path to nspr libraries not set.] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
641 [Please specify the path to libnspr4.a] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
642 [Example: --with-nspr-libs=/usr/lib]) |
|
7087
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
643 |
|
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
644 enable_nss="no" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
645 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
646 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
|
647 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
648 else |
| 7286 | 649 nsprlibs="-ldl -lplc4 -lplds4 -lnspr4 $PTHREAD_LIB" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
650 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
651 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
652 AC_CACHE_CHECK([for Mozilla nspr libraries], moz_nspr_libs, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
653 [ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
654 LIBS_save=$LIBS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
655 CFLAGS="$CFLAGS $NSPR_CFLAGS" |
|
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 LIBS="$nsprlibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
658 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
659 if test "x$with_nspr_libs" != "x"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
660 LDFLAGS="$LDFLAGS -L$with_nspr_libs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
661 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
662 LDFLAGS="$LDFLAGS" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
663 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
664 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
665 AC_TRY_LINK_FUNC(PR_Init, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
666 [moz_nspr_libs="yes"], |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
667 [moz_nspr_libs="no"]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
668 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
669 CFLAGS=$CFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
670 LDFLAGS=$LDFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
671 LIBS=$LIBS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
672 ]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
673 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
674 if test "x$moz_nspr_libs" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
675 have_nspr_libs="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
676 NSPR_LIBS="-L$with_nspr_libs $nsprlibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
677 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
678 NSPR_CFLAGS="" |
|
7087
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
679 enable_nss="no" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
680 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
681 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
682 AC_MSG_CHECKING(for Mozilla nspr4 libraries) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
683 AC_MSG_RESULT(no) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
684 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
685 |
| 6968 | 686 have_nss_includes="no" |
| 687 | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
688 if test "x$with_nss_includes" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
689 "x$have_nspr_libs" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
690 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
691 CPPFLAGS_save=$CPPFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
692 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
693 AC_MSG_CHECKING(for Mozilla nss3 includes in $with_nss_includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
694 AC_MSG_RESULT("") |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
695 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
696 if test "x$with_nspr_includes" != "x"; then |
| 6990 | 697 CPPFLAGS="$CPPFLAGS -I$with_nspr_includes -I$with_nss_includes" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
698 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
699 CPPFLAGS="$CPPFLAGS -I$with_nss_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
700 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
701 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
702 AC_CHECK_HEADERS(nss.h ssl.h smime.h, |
| 6968 | 703 [moz_nss_includes="yes"], |
| 704 [moz_nss_includes="no"]) | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
705 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
706 CPPFLAGS=$CPPFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
707 |
| 6968 | 708 if test "x$moz_nss_includes" = "xyes"; then |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
709 have_nss_includes="yes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
710 NSS_CFLAGS="-I$with_nss_includes" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
711 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
712 NSPR_CFLAGS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
713 NSPR_LIBS="" |
|
7252
1a808d72caff
[gaim-migrate @ 7829]
Christian Hammond <chipx86@chipx86.com>
parents:
7233
diff
changeset
|
714 enable_nss="no" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
715 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
716 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
717 AC_MSG_CHECKING(for Mozilla nss3 includes) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
718 AC_MSG_RESULT(no) |
|
7087
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
719 enable_nss="no" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
720 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
721 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
722 if test "x$with_nss_libs" != "xno" -a \ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
723 "x$have_nss_includes" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
724 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
725 LDFLAGS_save=$LDFLAGS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
726 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
727 if test "$enable_nss" = "static"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
728 if test -z "$with_nss_libs"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
729 AC_MSG_ERROR( |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
730 [Static linkage requested, but path to nss libraries not set.] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
731 [Please specify the path to libnss3.a] |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
732 [Example: --with-nspr-libs=/usr/lib/mozilla]) |
|
7087
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
733 enable_nss="no" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
734 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
735 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
|
736 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
737 case "$host" in |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
738 *solaris*) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
739 nsslibs="$nsslibs $with_nss_libs/libfreeb1.a" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
740 ;; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
741 esac |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
742 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
743 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
744 nsslibs="-lssl3 -lsmime3 -lnss3 -lsoftokn3" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
745 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
746 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
747 AC_CACHE_CHECK([for Mozilla nss libraries], moz_nss_libs, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
748 [ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
749 LIBS_save=$LIBS |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
750 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
|
751 LIBS="$nsslibs $nsprlibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
752 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
753 AC_TRY_LINK_FUNC(NSS_Init, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
754 [moz_nss_libs="yes"], |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
755 [moz_nss_libs="no"]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
756 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
757 if test "x$moz_nss_libs" = "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
758 nsslibs="-lssl3 -lsmime3 -lnss3 -lsoftokn3" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
759 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
|
760 AC_TRY_LINK_FUNC(NSS_Init, |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
761 [moz_nss_libs="yes"], |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
762 [moz_nss_libs="no"]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
763 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
764 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
765 LDFLAGS=$LDFLAGS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
766 LIBS=$LIBS_save |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
767 ]) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
768 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
769 if test "x$moz_nss_libs" != "xno"; then |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
770 AC_DEFINE(HAVE_NSS) |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
771 AC_DEFINE(HAVE_SSL) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
772 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
773 NSS_LIBS="-L$with_nss_libs $nsslibs" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
774 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
775 if test "$enable_nss" = "static"; then |
|
7155
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
776 msg_nss="Mozilla NSS (static)" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
777 else |
|
7155
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
778 msg_nss="Mozilla NSS" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
779 fi |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
780 |
|
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
781 enable_nss="yes" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
782 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
783 NSS_CFLAGS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
784 NSPR_CFLAGS="" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
785 NSPR_LIBS="" |
|
7087
bbf7f4604140
[gaim-migrate @ 7652]
Christian Hammond <chipx86@chipx86.com>
parents:
7021
diff
changeset
|
786 enable_nss="no" |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
787 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
788 else |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
789 AC_MSG_CHECKING(for Mozilla nss libraries) |
| 6968 | 790 AC_MSG_RESULT(no) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
791 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
792 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
793 NSS_CFLAGS="$NSPR_CFLAGS $NSS_CFLAGS" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
794 NSS_LIBS="$NSPR_LIBS $NSS_LIBS" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
795 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
796 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
797 AC_SUBST(NSS_CFLAGS) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
798 AC_SUBST(NSS_LIBS) |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
799 fi |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
800 |
|
6738
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
801 AM_CONDITIONAL(USE_NSS, test "x$enable_nss" = "xyes") |
|
6c95f01aaf49
[gaim-migrate @ 7270]
Christian Hammond <chipx86@chipx86.com>
parents:
6734
diff
changeset
|
802 |
|
7155
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
803 if test "x$msg_nss" != "x" -a "x$msg_gnutls" != "x"; then |
|
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
804 msg_ssl="$msg_nss and $msg_gnutls" |
|
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
805 elif test "x$msg_nss" != "x"; then |
|
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
806 msg_ssl=$msg_nss |
|
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
807 elif test "x$msg_gnutls" != "x"; then |
|
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
808 msg_ssl=$msg_gnutls |
|
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
809 fi |
|
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
810 |
| 6694 | 811 dnl Check for Tcl |
| 812 if test "$enable_tcl" = yes; then | |
| 813 AC_MSG_CHECKING([for tclConfig.sh]) | |
| 814 TCLCONFIG=no | |
| 6710 | 815 TCLCONFIGDIRS="/usr/lib \ |
| 816 /usr/lib/tcl8.4 \ | |
| 817 /usr/lib/tcl8.3 \ | |
| 818 /usr/lib/tcl8.2 \ | |
| 7596 | 819 /System/Library/Tcl/8.3 \ |
| 6710 | 820 /usr/local/lib" |
| 821 for dir in $with_tclconfig $TCLCONFIGDIRS; do | |
| 6694 | 822 if test -f $dir/tclConfig.sh; then |
| 823 TCLCONFIG=$dir/tclConfig.sh | |
| 824 AC_MSG_RESULT([yes ($TCLCONFIG)]) | |
| 825 fi | |
| 826 done | |
| 6697 | 827 if test "$TCLCONFIG" = "no"; then |
| 6694 | 828 AC_MSG_RESULT([no]) |
| 829 enable_tcl=no | |
| 830 else | |
| 831 . $TCLCONFIG | |
| 6709 | 832 AC_MSG_CHECKING([Tcl version compatability]) |
| 7822 | 833 if test "$TCL_MAJOR_VERSION" -ne 8 -o "$TCL_MINOR_VERSION" -lt 3; then |
| 834 AC_MSG_RESULT([bad, $TCL_VERSION found but 8.3 or later required]) | |
| 6709 | 835 enable_tcl=no |
| 836 else | |
| 837 AC_MSG_RESULT([ok, $TCL_VERSION]) | |
| 838 eval "TCL_LIB_SPEC=\"$TCL_LIB_SPEC\"" | |
| 839 AC_MSG_CHECKING([for Tcl linkability]) | |
| 6713 | 840 oldCPPFLAGS=$CPPFLAGS |
| 7351 | 841 CPPFLAGS="$CPPFLAGS $TCL_INCLUDE_SPEC -I$TCL_PREFIX/include" |
| 6709 | 842 oldLIBS=$LIBS |
| 843 LIBS="$LIBS $TCL_LIB_SPEC" | |
| 844 AC_TRY_LINK([#include <tcl.h>], | |
| 845 [Tcl_Interp *interp; Tcl_Init(interp)], | |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
846 [AC_MSG_RESULT([yes]);enable_tcl=yes], |
|
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
847 [AC_MSG_RESULT([no]);enable_tcl=no]) |
| 6713 | 848 CPPFLAGS="$oldCPPFLAGS" |
| 6709 | 849 LIBS="$oldLIBS" |
| 850 fi | |
| 6694 | 851 fi |
| 852 fi | |
| 853 | |
| 854 if test "$enable_tcl" = yes; then | |
| 855 AM_CONDITIONAL(USE_TCL, true) | |
| 856 TCL_LIBS=$TCL_LIB_SPEC | |
| 857 AC_SUBST(TCL_LIBS) | |
| 7351 | 858 TCL_CFLAGS="$TCL_INCLUDE_SPEC -I$TCL_PREFIX/include" |
| 6717 | 859 if test "x$GCC" = "xyes"; then |
| 860 TCL_CFLAGS="$TCL_CFLAGS -fno-strict-aliasing" | |
| 861 fi | |
| 6712 | 862 AC_SUBST(TCL_CFLAGS) |
| 6694 | 863 else |
| 864 AM_CONDITIONAL(USE_TCL, false) | |
| 865 fi | |
| 866 | |
| 867 dnl Check for Tk | |
| 868 if test "$enable_tcl" = yes -a "$enable_tk" = yes; then | |
| 869 AC_MSG_CHECKING([for tkConfig.sh]) | |
| 870 TKCONFIG=no | |
| 6715 | 871 TKCONFIGDIRS="/usr/lib \ |
| 872 /usr/lib/tk8.4 \ | |
| 873 /usr/lib/tk8.3 \ | |
| 874 /usr/lib/tk8.2 \ | |
| 875 /usr/local/lib" | |
| 876 for dir in $with_tkconfig $TKCONFIGDIRS; do | |
| 6694 | 877 if test -f $dir/tkConfig.sh; then |
| 878 TKCONFIG=$dir/tkConfig.sh | |
| 879 AC_MSG_RESULT([yes ($TKCONFIG)]) | |
| 880 fi | |
| 881 done | |
| 882 if test "$TKCONFIG" = "no"; then | |
| 883 AC_MSG_RESULT([no]) | |
| 884 enable_tk=no | |
| 885 else | |
| 886 . $TKCONFIG | |
| 887 eval "TK_LIB_SPEC=\"$TK_LIB_SPEC\"" | |
| 888 AC_MSG_CHECKING([for Tk linkability]) | |
| 6716 | 889 oldCPPFLAGS=$CPPFLAGS |
| 890 CPPFLAGS="$CPPFLAGS $TCL_CFLAGS" | |
| 6694 | 891 oldLIBS=$LIBS |
| 892 LIBS="$LIBS $TCL_LIB_SPEC $TK_LIB_SPEC" | |
| 893 AC_TRY_LINK([#include <tk.h>], [Tcl_Interp *interp; Tcl_Init(interp); Tk_Init(interp);], | |
| 894 [AC_MSG_RESULT([yes]);enable_tk=yes], | |
| 895 [AC_MSG_RESULT([no]);enable_tk=no]) | |
| 6716 | 896 CPPFLAGS="$oldCPPFLAGS" |
| 6694 | 897 LIBS="$oldLIBS" |
| 898 fi | |
| 6710 | 899 else |
| 900 enable_tk=no | |
| 6694 | 901 fi |
| 902 | |
| 903 if test "$enable_tk" = yes; then | |
| 904 AM_CONDITIONAL(USE_TK, true) | |
| 905 AC_DEFINE(HAVE_TK, [1], [Compile with support for the Tk toolkit]) | |
| 906 TK_LIBS=$TK_LIB_SPEC | |
| 907 AC_SUBST(TK_LIBS) | |
| 908 else | |
| 909 AM_CONDITIONAL(USE_TK, false) | |
| 910 fi | |
| 911 | |
| 3802 | 912 dnl Thanks, Evan. |
| 913 if test "$enable_gtkspell" = yes ; then | |
| 914 PKG_CHECK_MODULES(GTKSPELL, gtkspell-2.0 >= 2.0.2, , enable_gtkspell=no) | |
| 915 if test "$enable_gtkspell" = "yes" ; then | |
| 916 AC_SUBST(GTKSPELL_CFLAGS) | |
| 917 AC_SUBST(GTKSPELL_LIBS) | |
|
6734
bf77a7db61c2
[gaim-migrate @ 7266]
Christian Hammond <chipx86@chipx86.com>
parents:
6723
diff
changeset
|
918 AC_DEFINE(USE_GTKSPELL,,[do we have gtkspell?]) |
| 3802 | 919 fi |
| 920 fi | |
| 921 | |
| 4581 | 922 if test "$enable_nas" = yes ; then |
| 923 AC_DEFINE(USE_NAS_AUDIO, 1, [Define if we have NAS sound support.]) | |
| 924 SOUND_LIBS="$SOUND_LIBS -laudio -lXt" | |
| 925 fi | |
| 926 | |
| 4561 | 927 if test "$enable_audio" = yes ; then |
| 928 GAIM_PATH_AO(found_ao_lib=true) | |
| 929 | |
| 930 AM_PATH_AUDIOFILE([0.2.0], found_af_lib=true) | |
| 931 | |
| 932 if test "$found_ao_lib" = "true" -a "$found_af_lib" = "true"; then | |
| 4581 | 933 SOUND_LIBS="$SOUND_LIBS $AO_LIBS $AUDIOFILE_LIBS" |
| 4561 | 934 AC_SUBST(SOUND_LIBS) |
| 935 AC_DEFINE(USE_AO, 1, [Define if we're using libao and libaudiofile for sound playing]) | |
| 936 enable_audio=yes | |
| 4430 | 937 else |
| 4561 | 938 enable_audio=no |
| 939 fi | |
| 940 else | |
| 941 enable_audio=no | |
| 4430 | 942 fi |
| 2129 | 943 |
| 944 if test "$ac_cv_cygwin" = yes ; then | |
| 945 LDADD="$LDADD -static" | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
946 AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.]) |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
6697
diff
changeset
|
947 fi |
| 2129 | 948 |
|
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
949 AC_SUBST(DEBUG_CFLAGS) |
| 2129 | 950 AC_SUBST(LDADD) |
| 951 AC_SUBST(LIBS) | |
| 952 | |
| 953 if test "x$enable_plugins" = "xyes" ; then | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
954 AC_DEFINE(GAIM_PLUGINS, 1, [Define if plugins are enabled.]) |
| 2129 | 955 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") |
| 956 else | |
|
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
957 AM_CONDITIONAL(PLUGINS, false) |
| 2129 | 958 enable_plugins=no |
| 959 enable_prpls=no | |
| 960 fi | |
| 961 | |
| 962 if test "x$enable_prpls" = "xyes" ; then | |
| 963 AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
| 964 else | |
|
3411
5df423e0bca8
[gaim-migrate @ 3430]
Christian Hammond <chipx86@chipx86.com>
parents:
3408
diff
changeset
|
965 AM_CONDITIONAL(PRPLS, false) |
| 2129 | 966 enable_prpls=no |
| 967 fi | |
| 968 | |
| 969 dnl checks for icqlib | |
| 970 AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
| 971 AC_CHECK_FUNCS(bswap_32 bswap_16) | |
| 972 AC_C_BIGENDIAN | |
| 973 | |
| 974 dnl checks for jabber | |
| 975 dnl AC_CHECK_SIZEOF(short) | |
| 976 AC_CHECK_FUNCS(snprintf connect) | |
| 977 | |
| 978 dnl checks for zephyr | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
979 AC_DEFINE(ZEPHYR_INT32, long, [Size of an int32.]) |
| 2129 | 980 AC_SUBST(KRB4_CFLAGS) |
| 981 AC_SUBST(KRB4_LDFLAGS) | |
| 982 AC_SUBST(KRB4_LIBS) | |
| 983 if test "$kerberos" != "no" ; then | |
| 984 if test "$kerberos" != "yes" ; then | |
| 985 KRB4_CFLAGS="-I${kerberos}/include" | |
| 986 if test -d "$kerberos/include/kerberosIV" ; then | |
| 987 KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
| 988 fi | |
| 989 KRB4_LDFLAGS="-L${kerberos}/lib" | |
| 990 elif test -d /usr/local/include/kerberosIV ; then | |
| 991 KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
| 992 elif test -d /usr/include/kerberosIV ; then | |
| 993 KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
| 994 fi | |
|
3662
4fcd36091737
[gaim-migrate @ 3791]
Christian Hammond <chipx86@chipx86.com>
parents:
3589
diff
changeset
|
995 AC_DEFINE(ZEPHYR_USES_KERBEROS, 1, [Define if kerberos should be used in Zephyr.]) |
| 2129 | 996 |
| 997 orig_LDFLAGS="$LDFLAGS" | |
| 998 LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
| 999 AC_CHECK_LIB(krb4, krb_rd_req, | |
| 1000 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
| 1001 [AC_CHECK_LIB(krb, krb_rd_req, | |
| 1002 [KRB4_LIBS="-lkrb -ldes"], | |
| 1003 [AC_ERROR(Kerberos 4 libraries not found)], | |
| 1004 -ldes)], | |
| 1005 -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
| 1006 orig_LIBS="$LIBS" | |
| 1007 LIBS="$LIBS $KRB4_LIBS" | |
| 1008 AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
| 1009 AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
| 1010 LIBS="$orig_LIBS" | |
| 1011 LDFLAGS="$orig_LDFLAGS" | |
| 1012 fi | |
| 6150 | 1013 |
| 8378 | 1014 dnl checks for an external libzephyr |
| 1015 AC_SUBST(ZEPHYR_CFLAGS) | |
| 1016 AC_SUBST(ZEPHYR_LDFLAGS) | |
| 1017 AC_SUBST(ZEPHYR_LIBS) | |
| 1018 if test "$zephyr" != "no" ; then | |
| 1019 if test "$zephyr" != "yes" ; then | |
| 1020 ZEPHYR_CFLAGS="-I${zephyr}/include" | |
| 1021 ZEPHYR_LDFLAGS="-L${zephyr}/lib" | |
| 1022 elif test -d /usr/athena/include/zephyr ; then | |
| 1023 ZEPHYR_CFLAGS="-I/usr/athena/include" | |
| 1024 elif test -d /usr/include/zephyr ; then | |
| 1025 ZEPHYR_CFLAGS="-I/usr/include" | |
| 1026 elif test -d /usr/local/include/zephyr ; then | |
| 1027 ZEPHYR_CFLAGS="-I/usr/local/include" | |
| 1028 fi | |
| 1029 AC_DEFINE(LIBZEPHYR_EXT, 1 , [Define if external libzephyr should be used.]) | |
| 1030 AM_CONDITIONAL(EXTERNAL_LIBZEPHYR, test "x$zephyr" != "xno") | |
| 1031 orig_LDFLAGS="$LDFLAGS" | |
| 1032 LDFLAGS="$LDFLAGS $ZEPHYR_LDFLAGS" | |
| 1033 AC_CHECK_LIB(zephyr, ZInitialize, | |
| 1034 [ZEPHYR_LIBS="-lzephyr"], | |
| 1035 [AC_ERROR(Zephyr libraries not found)], | |
| 1036 -lzephyr) | |
| 1037 orig_LIBS="$LIBS" | |
| 1038 LIBS="$orig_LIBS" | |
| 1039 LDFLAGS="$orig_LDFLAGS" | |
| 1040 fi | |
| 1041 | |
| 1042 | |
| 6150 | 1043 AC_MSG_CHECKING(for me pot o' gold) |
| 1044 AC_MSG_RESULT(no) | |
| 2129 | 1045 AC_CHECK_FUNCS(gethostid lrand48) |
| 1046 AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
| 1047 AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
| 1048 AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
| 1049 AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
| 1050 AC_CHECK_HEADERS(termios.h) | |
| 3194 | 1051 AC_VAR_TIMEZONE_EXTERNALS |
| 2129 | 1052 |
| 1053 AC_OUTPUT([Makefile | |
| 6968 | 1054 Doxyfile |
| 1055 doc/Makefile | |
| 6954 | 1056 doc/gaim.1 |
| 1057 doc/gaim-remote.1 | |
| 1058 intl/Makefile | |
| 6968 | 1059 pixmaps/Makefile |
| 6954 | 1060 pixmaps/smileys/Makefile |
| 1061 pixmaps/smileys/default/Makefile | |
| 1062 pixmaps/status/Makefile | |
| 1063 pixmaps/status/default/Makefile | |
| 1064 plugins/Makefile | |
| 1065 plugins/docklet/Makefile | |
| 8089 | 1066 plugins/gevolution/Makefile |
| 6954 | 1067 plugins/gaim-remote/Makefile |
| 1068 plugins/gestures/Makefile | |
| 1069 plugins/perl/Makefile | |
| 1070 plugins/perl/common/Makefile.PL | |
|
7016
aa619031193b
[gaim-migrate @ 7579]
Christian Hammond <chipx86@chipx86.com>
parents:
7012
diff
changeset
|
1071 plugins/ssl/Makefile |
| 6954 | 1072 plugins/tcl/Makefile |
| 1073 plugins/ticker/Makefile | |
| 1074 po/Makefile.in | |
| 1075 sounds/Makefile | |
| 1076 src/Makefile | |
| 1077 src/protocols/Makefile | |
| 1078 src/protocols/gg/Makefile | |
| 1079 src/protocols/irc/Makefile | |
| 1080 src/protocols/jabber/Makefile | |
| 1081 src/protocols/msn/Makefile | |
| 1082 src/protocols/napster/Makefile | |
| 1083 src/protocols/oscar/Makefile | |
| 8637 | 1084 src/protocols/rendezvous/Makefile |
| 6954 | 1085 src/protocols/toc/Makefile |
| 7380 | 1086 src/protocols/trepia/Makefile |
| 6954 | 1087 src/protocols/yahoo/Makefile |
| 1088 src/protocols/zephyr/Makefile | |
| 1089 gaim.spec | |
| 6968 | 1090 ]) |
| 2129 | 1091 |
| 1092 echo | |
| 1093 echo $PACKAGE $VERSION | |
| 1094 | |
| 1095 echo | |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
1096 echo Build Protocol Plugins........ : $enable_prpls |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
1097 echo Protocols to link statically.. : $STATIC_PRPLS |
|
7373
1dbf83536d83
[gaim-migrate @ 7968]
Christian Hammond <chipx86@chipx86.com>
parents:
7351
diff
changeset
|
1098 echo Protocols to build dynamically : $DYNAMIC_PRPLS |
| 2129 | 1099 echo |
| 4561 | 1100 echo UI Library.................... : GTK 2.x |
|
7155
6448e0163d7b
[gaim-migrate @ 7722]
Christian Hammond <chipx86@chipx86.com>
parents:
7087
diff
changeset
|
1101 echo SSL Library/Libraries......... : $msg_ssl |
| 2129 | 1102 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
1103 echo Build with Plugin support..... : $enable_plugins |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
1104 echo Build with Perl support....... : $enable_perl |
| 6694 | 1105 echo Build with Tcl support........ : $enable_tcl |
| 1106 echo Build with Tk support......... : $enable_tk | |
| 4561 | 1107 echo Build with Audio support...... : $enable_audio |
| 4581 | 1108 echo Build with NAS support........ : $enable_nas |
| 4561 | 1109 echo Build with GtkSpell support... : $enable_gtkspell |
| 3802 | 1110 echo |
| 8378 | 1111 echo Use kerberos 4 with zephyr.... : $kerberos |
| 1112 echo Use external libzephyr........ : $zephyr | |
| 1113 echo | |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
1114 echo Use XScreenSaver Extension.... : $enable_xss |
| 4157 | 1115 echo Use X Session Management...... : $enable_sm |
|
7168
282887c9e3dc
[gaim-migrate @ 7735]
Christian Hammond <chipx86@chipx86.com>
parents:
7155
diff
changeset
|
1116 echo Use startup notification.......: $enable_startup_notification |
| 2129 | 1117 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
1118 echo Print debugging messages...... : $enable_debug |
| 2129 | 1119 echo |
|
2452
824e1afefdd3
[gaim-migrate @ 2465]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2436
diff
changeset
|
1120 eval eval echo Gaim will be installed in $bindir. |
| 2129 | 1121 if test "x$gaimpath" != "x" ; then |
| 1122 echo Warning: You have an old copy of gaim at $gaimpath. | |
| 1123 fi | |
| 1124 echo | |
| 1125 echo configure complete, now type \'make\' | |
| 1126 echo |
