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