Mercurial > pidgin
annotate configure.ac @ 3174:e75b4df7a770
[gaim-migrate @ 3190]
This is a dirty hack to attempt to maintain compatibility with autoconf 2.13
and 2.53. We'll eventually get tired of it and drop 2.13 altogether.
committer: Tailor Script <tailor@pidgin.im>
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Fri, 26 Apr 2002 00:59:30 +0000 |
| parents | 76d507a8bc5f |
| children | d62017ec438f |
| rev | line source |
|---|---|
| 2129 | 1 dnl Process this file with autoconf to produce a configure script. |
| 2 AC_INIT(src/aim.c) | |
| 3 AM_CONFIG_HEADER(config.h) | |
| 3174 | 4 AM_INIT_AUTOMAKE([gaim], [0.57]) |
| 5 | |
| 6 AC_PREREQ([2.50]) | |
| 2129 | 7 |
| 8 AC_PATH_PROG(sedpath, sed) | |
| 9 | |
| 10 dnl Checks for programs. | |
| 11 AC_PROG_CC | |
| 12 AC_DISABLE_STATIC | |
| 13 AM_PROG_LIBTOOL | |
| 14 LIBTOOL="$LIBTOOL --silent" | |
| 15 AC_PROG_INSTALL | |
| 16 | |
| 17 | |
| 3165 | 18 ALL_LINGUAS="da de es fr ko ru zh_CN pl nl sv fi sk it ja" |
| 2129 | 19 AM_GNU_GETTEXT |
| 20 | |
| 21 AC_CYGWIN | |
| 22 | |
| 23 | |
| 24 dnl Checks for header files. | |
| 25 AC_HEADER_STDC | |
| 26 AC_HEADER_SYS_WAIT | |
| 27 AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h locale.h signal.h) | |
| 28 | |
| 29 dnl Checks for typedefs, structures, and compiler characteristics. | |
| 30 AC_C_CONST | |
| 31 AC_STRUCT_TM | |
| 32 | |
| 33 dnl Checks for library functions. | |
| 34 AC_TYPE_SIGNAL | |
| 35 AC_FUNC_STRFTIME | |
| 36 AC_CHECK_FUNCS(socket strdup strstr atexit getaddrinfo) | |
| 37 | |
| 38 dnl Checks for getopt in standard library | |
| 3174 | 39 AC_CHECK_FUNCS(getopt_long , , |
| 40 AC_LIBOBJ(getopt) | |
| 41 AC_LIBOBJ(getopt1)) | |
| 42 | |
| 2129 | 43 |
| 2959 | 44 dnl Check for inet_aton |
| 45 AC_CHECK_FUNC(inet_aton, , [AC_CHECK_LIB(resolv, inet_aton, , | |
| 46 [AC_ERROR(inet_aton not found)])]) | |
| 47 | |
| 3150 | 48 dnl Check for socklen_t (in Unix98) |
| 49 AC_MSG_CHECKING(for socklen_t) | |
| 50 AC_TRY_COMPILE([#include <sys/types.h> | |
| 51 #include <sys/socket.h> | |
| 52 socklen_t x; | |
| 53 ], [], [AC_MSG_RESULT(yes)], [ | |
| 54 AC_TRY_COMPILE([#include <sys/types> | |
| 55 #include <sys/socket.h> | |
| 56 int accept(int, struct sockaddr *, size_t *); | |
| 57 ], [], [ | |
| 58 AC_MSG_RESULT(size_t) | |
| 59 AC_DEFINE(socklen_t, size_t)]. [ | |
| 60 AC_MSG_RESULT(int) | |
| 61 AC_DEFINE(socklen_t, int)])]) | |
| 62 | |
| 2129 | 63 dnl This is a bad, bad hack. I am a bad, bad man. |
| 64 CFLAGS="$CFLAGS -I/usr/local/include -I/opt/include -I\$(top_srcdir)" | |
| 65 | |
| 66 AC_ARG_ENABLE(distrib,,,enable_distrib=no) | |
| 67 AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes") | |
| 68 AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes) | |
| 69 AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes) | |
| 70 AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="oscar toc") | |
| 71 if test "x$STATIC_PRPLS" = "xall" ; then | |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
72 STATIC_PRPLS="gg icq irc jabber msn napster oscar toc yahoo zephyr" |
| 2129 | 73 fi |
| 74 AC_SUBST(STATIC_PRPLS) | |
| 75 STATIC_LINK_LIBS= | |
| 76 extern_init= | |
| 77 load_proto= | |
| 78 for i in $STATIC_PRPLS ; do | |
| 79 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" | |
| 80 extern_init="$extern_init extern void ${i}_init(struct prpl *);" | |
| 81 load_proto="$load_proto load_protocol(${i}_init, sizeof(struct prpl));" | |
| 82 case $i in | |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
83 gg) static_gg=yes ;; |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
84 icq) static_icq=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
85 irc) static_irc=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
86 jabber) static_jabber=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
87 msn) static_msn=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
88 napster) static_napster=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
89 oscar) static_oscar=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
90 toc) static_toc=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
91 yahoo) static_yahoo=yes ;; |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
92 zephyr) static_zephyr=yes ;; |
| 2129 | 93 *) echo "Invalid static protocol $i!!" ; exit ;; |
| 94 esac | |
| 95 done | |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
96 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") |
|
2244
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
97 AM_CONDITIONAL(STATIC_ICQ, test "x$static_icq" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
98 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
99 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
100 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
101 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
102 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
103 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
104 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
|
a647590a0979
[gaim-migrate @ 2254]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2238
diff
changeset
|
105 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
| 2129 | 106 AC_SUBST(STATIC_LINK_LIBS) |
| 107 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }) | |
| 108 | |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
109 AC_ARG_ENABLE(gtk2, [ --enable-gtk2 compile using GTK 2 (BROKEN)],,enable_gtk2=no) |
| 2129 | 110 AC_ARG_ENABLE(gnome, [ --disable-gnome compile without Gnome bits],,enable_gnome=yes) |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2852
diff
changeset
|
111 AC_ARG_ENABLE(pixbuf, [ --disable-pixbuf compile without GdkPixbuf],,enable_pixbuf=yes) |
| 2129 | 112 AC_ARG_ENABLE(panel, [ --enable-panel compile as a GNOME applet],,enable_panel=$enable_distrib) |
| 113 | |
| 114 AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_panel" = "xyes") | |
| 115 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes) | |
| 116 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) | |
|
2179
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
117 AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes) |
| 2129 | 118 |
| 119 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) | |
| 120 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
| 121 | |
|
2430
0ba75351a01b
[gaim-migrate @ 2443]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2416
diff
changeset
|
122 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) |
| 2129 | 123 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) |
| 124 AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") | |
| 125 | |
| 126 if test "$enable_debug" = yes ; then | |
|
2541
8229710b343b
[gaim-migrate @ 2554]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2540
diff
changeset
|
127 CFLAGS="$CFLAGS -Wall -g3" |
| 2129 | 128 AC_DEFINE(DEBUG) |
| 129 fi | |
| 130 | |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
131 if test "x$enable_gtk2" = "xyes" ; then |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
132 dnl AM_PATH_GTK_2_0(1.3.10,[ |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
133 dnl enable_gnome=no |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
134 dnl enable_pixbuf=no |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
135 dnl CFLAGS="$CFLAGS -DGTK_ENABLE_BROKEN" |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
136 dnl UI_LIBS="$UI_LIBS $GTK_LIBS" |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
137 dnl ],enable_gtk2=no) |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
138 |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
139 AC_PATH_PROG(pkgcfg, pkg-config) |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
140 if test "x$pkgcfg" = "x" ; then |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
141 enable_gtk2=no |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
142 else |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
143 GTK_VER=`$pkgcfg gtk+-2.0 --modversion 2>/dev/null` |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
144 if test "x$GTK_VER" = "x" ; then |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
145 enable_gtk2=no |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
146 else |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
147 GTK_CFLAGS=`$pkgcfg gtk+-2.0 --cflags` |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
148 CFLAGS="$CFLAGS -DGTK_ENABLE_BROKEN" |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
149 GTK_LIBS=`$pkgcfg gtk+-2.0 --libs` |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
150 UI_LIBS="$UI_LIBS $GTK_LIBS" |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
151 enable_gnome=no |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
152 enable_pixbuf=no |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
153 fi |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
154 fi |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
155 fi |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
156 |
| 2129 | 157 if test "x$enable_gnome" = "xyes" ; then |
| 158 if test "x$enable_panel" = "xyes" ; then | |
| 159 GNOME_INIT(applets) | |
| 160 GNOME_X_CHECKS | |
| 161 CFLAGS="$CFLAGS $GNOME_INCLUDEDIR" | |
| 162 AC_DEFINE(USE_APPLET) | |
| 163 AC_DEFINE(USE_GNOME) | |
|
2181
07611ad4aa2b
[gaim-migrate @ 2191]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2179
diff
changeset
|
164 UI_LIBS="$UI_LIBS $GTK_LIBS $GNOME_LIBDIR $GNOME_APPLETS_LIBS $GNOMEUI_LIBS" |
| 2129 | 165 AC_PATH_PROG(gaimpath, gaim_applet) |
| 166 else | |
| 167 AC_PATH_PROG(gnomepath, gnome-config) | |
| 168 AC_MSG_CHECKING(for Gnome compile flags) | |
| 169 GNOME_CFLAGS=`$gnomepath gnomeui --cflags 2>/dev/null` | |
| 170 if test "x$GNOME_CFLAGS" = "x" ; then | |
| 171 enable_gnome=no | |
| 172 AC_MSG_RESULT([Gnome not found, building without it.]) | |
| 173 else | |
| 174 GNOME_VER=`$gnomepath --version |$sedpath 's/gnome-libs //' 2>/dev/null` | |
| 175 GNOME_MAJOR=`echo $GNOME_VER |$sedpath 's/\([[0-9]*]*\).\([[0-9]*]*\).\([[0-9]*]*\)/\1/' 2>/dev/null` | |
| 176 if test "x$GNOME_MAJOR" = "x0" ; then | |
| 177 enable_gnome = no | |
| 178 AC_MSG_RESULT([old Gnome found, building without it.]) | |
| 179 else | |
| 180 AC_MSG_RESULT(ok) | |
| 181 CFLAGS="$CFLAGS $GNOME_CFLAGS" | |
|
2181
07611ad4aa2b
[gaim-migrate @ 2191]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2179
diff
changeset
|
182 UI_LIBS="$UI_LIBS `$gnomepath gnomeui --libs 2>/dev/null`" |
| 2129 | 183 AC_DEFINE(USE_GNOME) |
| 184 GNOME_CONFIG="$gnomepath" | |
| 185 AC_SUBST(GNOME_CONFIG) | |
| 186 AC_PATH_PROG(gaimpath, gaim) | |
| 187 fi | |
| 188 fi | |
| 189 fi | |
| 190 fi | |
| 191 | |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
192 if test "x$enable_gnome" != "xyes" -a "x$enable_gtk2" != "xyes" ; then |
|
2862
ad4057cb228f
[gaim-migrate @ 2875]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
193 AM_PATH_GLIB(1.2.5,,AC_MSG_ERROR([ |
| 2129 | 194 *** GLib is required to build Gaim; please make sure you have the GLib |
| 195 *** development headers installed. The latest version of GLib is | |
| 196 *** always available at http://www.gtk.org/.])) | |
|
2862
ad4057cb228f
[gaim-migrate @ 2875]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2856
diff
changeset
|
197 AM_PATH_GTK(1.2.5,,AC_MSG_ERROR([ |
| 2129 | 198 *** GTK+ is required to build Gaim; please make sure you have the GTK+ |
| 199 *** development headers installed. The latest version of GTK+ is | |
|
2730
a9aabf1170f1
[gaim-migrate @ 2743]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2726
diff
changeset
|
200 *** always available at http://www.gtk.org/.])) |
|
2181
07611ad4aa2b
[gaim-migrate @ 2191]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2179
diff
changeset
|
201 UI_LIBS="$UI_LIBS $GTK_LIBS" |
| 2129 | 202 AC_PATH_PROG(gaimpath, gaim) |
| 203 fi | |
| 204 CFLAGS="$CFLAGS $GTK_CFLAGS" | |
| 205 | |
|
2659
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
206 dnl if test "x$enable_panel" = "xyes" ; then |
| 2657 | 207 dnl Things moved with the new versoin of Orbit. Thanks for |
| 208 dnl telling me, Dan. This should fix them. | |
|
2659
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
209 dnl |
|
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
210 dnl The gnome-config script should pick this up and affect GNOME_ variables |
|
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
211 dnl correctly. Thus, this check is not needed; if it fails, it is because of |
|
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
212 dnl a broken installation or that your appletsConf.sh file is not updated |
|
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
213 dnl for the new orbit installation. Gaim shouldn't need to do this. |
|
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
214 dnl |
|
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
215 dnl CFLAGS="$CFLAGS $ORBIT_CFLAGS" |
|
ce0a757b4d36
[gaim-migrate @ 2672]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2658
diff
changeset
|
216 dnl fi |
| 2657 | 217 |
| 2129 | 218 use_pixbuf=no |
| 219 if test "x$enable_pixbuf" = "xyes" ; then | |
| 220 AC_PATH_PROG(pixbufcfg, gdk-pixbuf-config) | |
| 221 if test "x$pixbufcfg" != "x" ; then | |
| 222 GDK_PIXBUF_CFLAGS=`$pixbufcfg --cflags` | |
| 223 GDK_PIXBUF_LIBS=`$pixbufcfg --libs` | |
| 224 GDK_PIXBUF_CONFIG="$pixbufcfg" | |
| 225 AC_SUBST(GDK_PIXBUF_CONFIG) | |
| 226 AC_SUBST(GDK_PIXBUF_CFLAGS) | |
| 227 AC_SUBST(GDK_PIXBUF_LIBS) | |
| 228 CFLAGS="$CFLAGS $GDK_PIXBUF_CFLAGS" | |
|
2181
07611ad4aa2b
[gaim-migrate @ 2191]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2179
diff
changeset
|
229 UI_LIBS="$UI_LIBS $GDK_PIXBUF_LIBS" |
| 2129 | 230 dnl We should be doing checks to see that the header files and functions exist. eh. |
| 231 AC_DEFINE(USE_PIXBUF) | |
| 232 use_pixbuf=yes | |
| 233 fi | |
| 234 fi | |
|
2178
a22f18ae43c1
[gaim-migrate @ 2188]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2163
diff
changeset
|
235 AC_SUBST(UI_LIBS) |
| 2129 | 236 |
| 237 dnl Check for XScreenSaver | |
| 238 if test "x$enable_xss" = "xyes" ; then | |
|
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
239 old_LIBS="$LIBS" |
|
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
240 LIBS="$LIBS $UI_LIBS" |
| 2129 | 241 XSS_LIBS="no" |
| 242 XSS_HEADERS="no" | |
| 243 AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS=""],[],[-lX11 -lXext -lm]) | |
| 244 AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="-lXss"],[],[-lX11 -lXext -lm]) | |
| 245 if test \! "$XSS_LIBS" = "no"; then | |
| 246 AC_TRY_COMPILE([ | |
| 247 #include <X11/extensions/scrnsaver.h> | |
| 248 ],[],[enable_xss=no],[ | |
| 249 AC_DEFINE(USE_SCREENSAVER) | |
| 250 ]) | |
| 251 else | |
| 252 XSS_LIBS="" | |
| 253 enable_xss=no | |
| 254 fi | |
|
2182
665e1dbeb8da
[gaim-migrate @ 2192]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2181
diff
changeset
|
255 LIBS="$old_LIBS" |
| 2129 | 256 else |
| 257 XSS_LIBS="" | |
| 258 enable_xss=no | |
| 259 fi | |
| 260 AC_SUBST(XSS_LIBS) | |
| 261 | |
| 262 | |
| 263 | |
| 264 dnl This was taken straight from X-Chat. | |
| 265 dnl X-Chat is the greatest application ever, not only | |
| 266 dnl because it's a rocking IRC client but also because | |
| 267 dnl it's very easy to learn from. | |
| 268 if test "$enable_perl" = yes ; then | |
| 269 AC_PATH_PROG(perlpath, perl) | |
| 270 AC_MSG_CHECKING(for Perl compile flags) | |
| 271 PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
| 272 if test "_$PERL_CFLAGS" = _ ; then | |
| 273 AC_MSG_RESULT([not found, building without perl.]) | |
| 274 enable_perl = no | |
| 275 else | |
| 276 PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
| 277 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
| 278 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
| 279 if test "$system" = "Linux"; then | |
| 280 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
| 281 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
| 282 fi | |
| 283 PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
| 284 AC_MSG_RESULT(ok) | |
| 285 AC_SUBST(PERL_CFLAGS) | |
| 286 AC_SUBST(PERL_LIBS) | |
| 287 AC_DEFINE(USE_PERL) | |
| 288 AC_CHECK_FUNCS(Perl_eval_pv) | |
| 289 fi | |
| 290 fi | |
| 291 | |
| 292 if test "$enable_nas" = yes ; then | |
| 293 AC_DEFINE(NAS_SOUND) | |
|
2178
a22f18ae43c1
[gaim-migrate @ 2188]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2163
diff
changeset
|
294 SOUND_LIBS="-laudio -lXt" |
| 2129 | 295 fi |
| 296 if test "$enable_esd" = yes ; then | |
| 297 AM_PATH_GESD | |
| 298 if test "$no_esd" != yes ; then | |
|
2179
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
299 old_CFLAGS="$CFLAGS" |
| 2129 | 300 CFLAGS="$CFLAGS $ESD_CFLAGS" |
|
2184
3bd61577ab8b
[gaim-migrate @ 2194]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2182
diff
changeset
|
301 AC_TRY_COMPILE(,[#include <esd.h>], |
|
2179
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
302 [ |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
303 AC_DEFINE(ESD_SOUND) |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
304 SOUND_LIBS="$SOUND_LIBS $ESD_LIBS" |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
305 ],[ |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
306 enable_esd=no |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
307 CFLAGS="$old_CFLAGS" |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
308 ]) |
| 2129 | 309 else |
| 310 enable_esd=no | |
| 311 fi | |
| 312 fi | |
|
2179
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
313 if test "x$enable_artsc" = "xyes"; then |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
314 AM_PATH_ARTSC |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
315 if test "x$no_artsc" != "xyes" ; then |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
316 old_CFLAGS="$CFLAGS" |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
317 CFLAGS="$CFLAGS $ARTSC_CFLAGS" |
|
2184
3bd61577ab8b
[gaim-migrate @ 2194]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2182
diff
changeset
|
318 AC_TRY_COMPILE(,[#include <artsc.h>], |
|
2179
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
319 [ |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
320 AC_DEFINE(ARTSC_SOUND) |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
321 SOUND_LIBS="$SOUND_LIBS $ARTSC_LIBS" |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
322 ],[ |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
323 enable_artsc=no |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
324 CFLAGS="$old_CFLAGS" |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
325 ]) |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
326 else |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
327 enable_artsc=no |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
328 fi |
|
64d8ef561763
[gaim-migrate @ 2189]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2178
diff
changeset
|
329 fi |
|
2178
a22f18ae43c1
[gaim-migrate @ 2188]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2163
diff
changeset
|
330 AC_SUBST(SOUND_LIBS) |
| 2129 | 331 |
| 332 if test "$ac_cv_cygwin" = yes ; then | |
| 333 LDADD="$LDADD -static" | |
| 334 CFLAGS="$CFLAGS -Wall -g" | |
| 335 AC_DEFINE(DEBUG) | |
| 336 fi | |
| 337 | |
| 338 AC_SUBST(CFLAGS) | |
| 339 AC_SUBST(LDADD) | |
| 340 AC_SUBST(LIBS) | |
| 341 | |
| 342 if test "x$enable_multi" != "xyes" ; then | |
| 343 AC_DEFINE(NO_MULTI) | |
| 344 enable_multi=no | |
| 345 fi | |
| 346 | |
| 347 if test "x$enable_plugins" = "xyes" ; then | |
| 348 AC_DEFINE(GAIM_PLUGINS) | |
| 349 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") | |
| 350 else | |
| 351 enable_plugins=no | |
| 352 enable_prpls=no | |
| 353 fi | |
| 354 | |
| 355 if test "x$enable_prpls" = "xyes" ; then | |
| 356 AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
| 357 else | |
| 358 enable_prpls=no | |
| 359 fi | |
| 360 | |
| 361 dnl checks for icqlib | |
| 362 AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
| 363 AC_CHECK_FUNCS(bswap_32 bswap_16) | |
| 364 AC_C_BIGENDIAN | |
| 365 | |
| 366 dnl checks for jabber | |
| 367 dnl AC_CHECK_SIZEOF(short) | |
| 368 AC_CHECK_FUNCS(snprintf connect) | |
| 369 AC_CHECK_LIB(nsl, gethostent) | |
| 370 | |
| 371 dnl checks for zephyr | |
| 372 AC_DEFINE(ZEPHYR_INT32, long) | |
| 373 AC_SUBST(KRB4_CFLAGS) | |
| 374 AC_SUBST(KRB4_LDFLAGS) | |
| 375 AC_SUBST(KRB4_LIBS) | |
| 376 if test "$kerberos" != "no" ; then | |
| 377 if test "$kerberos" != "yes" ; then | |
| 378 KRB4_CFLAGS="-I${kerberos}/include" | |
| 379 if test -d "$kerberos/include/kerberosIV" ; then | |
| 380 KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
| 381 fi | |
| 382 KRB4_LDFLAGS="-L${kerberos}/lib" | |
| 383 elif test -d /usr/local/include/kerberosIV ; then | |
| 384 KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
| 385 elif test -d /usr/include/kerberosIV ; then | |
| 386 KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
| 387 fi | |
| 388 AC_DEFINE(ZEPHYR_USES_KERBEROS) | |
| 389 | |
| 390 orig_LDFLAGS="$LDFLAGS" | |
| 391 LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
| 392 AC_CHECK_LIB(krb4, krb_rd_req, | |
| 393 [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
| 394 [AC_CHECK_LIB(krb, krb_rd_req, | |
| 395 [KRB4_LIBS="-lkrb -ldes"], | |
| 396 [AC_ERROR(Kerberos 4 libraries not found)], | |
| 397 -ldes)], | |
| 398 -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
| 399 orig_LIBS="$LIBS" | |
| 400 LIBS="$LIBS $KRB4_LIBS" | |
| 401 AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
| 402 AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
| 403 LIBS="$orig_LIBS" | |
| 404 LDFLAGS="$orig_LDFLAGS" | |
| 405 fi | |
| 406 AC_CHECK_FUNCS(gethostid lrand48) | |
| 407 AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
| 408 AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
| 409 AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
| 410 AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
| 411 AC_CHECK_HEADERS(termios.h) | |
| 412 | |
| 413 AC_OUTPUT([Makefile | |
| 414 doc/Makefile | |
| 415 intl/Makefile | |
| 416 m4/Makefile | |
| 417 pixmaps/Makefile | |
| 3039 | 418 pixmaps/protocols/Makefile |
| 419 pixmaps/protocols/msn/Makefile | |
| 420 pixmaps/protocols/yahoo/Makefile | |
| 2129 | 421 plugins/Makefile |
| 422 po/Makefile.in | |
| 423 sounds/Makefile | |
| 424 src/Makefile | |
| 425 src/protocols/Makefile | |
|
2393
a7ecfd3f7714
[gaim-migrate @ 2406]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2330
diff
changeset
|
426 src/protocols/gg/Makefile |
| 2129 | 427 src/protocols/icq/Makefile |
| 428 src/protocols/irc/Makefile | |
| 429 src/protocols/jabber/Makefile | |
| 430 src/protocols/msn/Makefile | |
| 431 src/protocols/napster/Makefile | |
| 432 src/protocols/oscar/Makefile | |
| 433 src/protocols/toc/Makefile | |
| 434 src/protocols/yahoo/Makefile | |
| 435 src/protocols/zephyr/Makefile | |
| 436 gaim.spec | |
| 437 ]) | |
| 438 | |
| 439 echo | |
| 440 echo $PACKAGE $VERSION | |
| 441 | |
| 442 echo | |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
443 echo Allow Multiple Connections.... : $enable_multi |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
444 echo Build Protocol Plugins........ : $enable_prpls |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
445 echo Protocols to link statically.. : $STATIC_PRPLS |
| 2129 | 446 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
447 if test "x$enable_panel" = "xyes" ; then |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
448 echo UI Library.................... : GNOME Panel |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
449 elif test "x$enable_gnome" = "xyes" ; then |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
450 echo UI Library.................... : GNOME App |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
451 elif test "x$enable_gtk2" = "xyes" ; then |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
452 echo UI Library.................... : GTK+ 2.0 |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
453 else |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
454 echo UI Library.................... : GTK+ 1.2 |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
455 fi |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
456 if test "x$enable_gtk2" = "xyes" ; then |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2852
diff
changeset
|
457 echo Use GdkPixbuf................. : yes |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
458 else |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2852
diff
changeset
|
459 echo Use GdkPixbuf................. : $use_pixbuf |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
460 fi |
| 2129 | 461 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
462 echo Build with Plugin support..... : $enable_plugins |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
463 echo Build with Perl support....... : $enable_perl |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
464 echo |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
465 echo Use XScreenSaver Extension.... : $enable_xss |
| 2129 | 466 echo |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
467 echo Build with ESD................ : $enable_esd |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
468 echo Build with NAS................ : $enable_nas |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
469 echo Build with ArtsC.............. : $enable_artsc |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
470 echo |
|
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2711
diff
changeset
|
471 echo Print debugging messages...... : $enable_debug |
| 2129 | 472 echo |
|
2452
824e1afefdd3
[gaim-migrate @ 2465]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2436
diff
changeset
|
473 eval eval echo Gaim will be installed in $bindir. |
| 2129 | 474 if test "x$gaimpath" != "x" ; then |
| 475 echo Warning: You have an old copy of gaim at $gaimpath. | |
| 476 fi | |
| 477 echo | |
| 478 echo configure complete, now type \'make\' | |
| 479 echo |
