Sun, 18 Aug 2002 18:21:08 +0000
[gaim-migrate @ 3427]
This should work a little bit better for everyone.
| 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
556a16131861
[gaim-migrate @ 3370]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3282
diff
changeset
|
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
986dbc812cb2
[gaim-migrate @ 3284]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3265
diff
changeset
|
18 | ALL_LINGUAS="bg cs da de es fi fr hu it ja ko nl pl ru sk sv zh_CN zh_TW" |
|
3408
8fc1650b2eef
[gaim-migrate @ 3427]
Christian Hammond <chipx86@chipx86.com>
parents:
3391
diff
changeset
|
19 | AM_GNU_GETTEXT_VERSION(0.10.40) |
| 2129 | 20 | AM_GNU_GETTEXT |
| 21 | ||
| 22 | AC_CYGWIN | |
| 23 | ||
| 24 | ||
| 25 | dnl Checks for header files. | |
| 26 | AC_HEADER_STDC | |
| 27 | AC_HEADER_SYS_WAIT | |
| 28 | AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h locale.h signal.h) | |
| 29 | ||
| 30 | dnl Checks for typedefs, structures, and compiler characteristics. | |
| 31 | AC_C_CONST | |
| 32 | AC_STRUCT_TM | |
| 33 | ||
| 34 | dnl Checks for library functions. | |
| 35 | AC_TYPE_SIGNAL | |
| 36 | AC_FUNC_STRFTIME | |
| 37 | AC_CHECK_FUNCS(socket strdup strstr atexit getaddrinfo) | |
| 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)], [ | |
|
3194
9404dfabed94
[gaim-migrate @ 3211]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3191
diff
changeset
|
54 | AC_TRY_COMPILE([#include <sys/types.h> |
| 3150 | 55 | #include <sys/socket.h> |
| 56 | int accept(int, struct sockaddr *, size_t *); | |
| 57 | ], [], [ | |
| 58 | AC_MSG_RESULT(size_t) | |
|
3194
9404dfabed94
[gaim-migrate @ 3211]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3191
diff
changeset
|
59 | AC_DEFINE(socklen_t, size_t)], [ |
| 3150 | 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) | |
| 3383 | 70 | AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="oscar") |
| 2129 | 71 | if test "x$STATIC_PRPLS" = "xall" ; then |
| 3382 | 72 | STATIC_PRPLS="gg 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
cfef0212506b
[gaim-migrate @ 2406]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2330
diff
changeset
|
83 | gg) static_gg=yes ;; |
|
2244
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
84 | irc) static_irc=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
85 | jabber) static_jabber=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
86 | msn) static_msn=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
87 | napster) static_napster=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
88 | oscar) static_oscar=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
89 | toc) static_toc=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
90 | yahoo) static_yahoo=yes ;; |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
91 | zephyr) static_zephyr=yes ;; |
| 2129 | 92 | *) echo "Invalid static protocol $i!!" ; exit ;; |
| 93 | esac | |
| 94 | done | |
|
2393
cfef0212506b
[gaim-migrate @ 2406]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2330
diff
changeset
|
95 | AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") |
|
2244
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
96 | AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
97 | AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
98 | AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
99 | AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
100 | AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
101 | AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
102 | AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") |
|
7231c3f80615
[gaim-migrate @ 2254]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2238
diff
changeset
|
103 | AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") |
| 2129 | 104 | AC_SUBST(STATIC_LINK_LIBS) |
| 105 | AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }) | |
| 106 | ||
|
2725
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
107 | AC_ARG_ENABLE(gtk2, [ --enable-gtk2 compile using GTK 2 (BROKEN)],,enable_gtk2=no) |
| 2129 | 108 | AC_ARG_ENABLE(gnome, [ --disable-gnome compile without Gnome bits],,enable_gnome=yes) |
|
2856
046ed5e89321
[gaim-migrate @ 2869]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2852
diff
changeset
|
109 | AC_ARG_ENABLE(pixbuf, [ --disable-pixbuf compile without GdkPixbuf],,enable_pixbuf=yes) |
| 2129 | 110 | AC_ARG_ENABLE(panel, [ --enable-panel compile as a GNOME applet],,enable_panel=$enable_distrib) |
| 111 | ||
| 112 | AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_panel" = "xyes") | |
| 113 | AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes) | |
| 114 | AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) | |
| 2179 | 115 | AC_ARG_ENABLE(artsc, [ --disable-artsc Turn off ArtsC (default=auto)],,enable_artsc=yes) |
| 2129 | 116 | |
| 117 | AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) | |
| 118 | AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) | |
| 119 | ||
|
2430
c1cb49692a34
[gaim-migrate @ 2443]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2416
diff
changeset
|
120 | AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) |
| 2129 | 121 | AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) |
| 122 | AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Compile Zephyr plugin with Kerberos 4 support],kerberos="$withval",kerberos="no") | |
| 123 | ||
| 124 | if test "$enable_debug" = yes ; then | |
|
2541
0afd3aaba327
[gaim-migrate @ 2554]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2540
diff
changeset
|
125 | CFLAGS="$CFLAGS -Wall -g3" |
| 2129 | 126 | AC_DEFINE(DEBUG) |
| 127 | fi | |
| 128 | ||
|
2725
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
129 | if test "x$enable_gtk2" = "xyes" ; then |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
130 | dnl AM_PATH_GTK_2_0(1.3.10,[ |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
131 | dnl enable_gnome=no |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
132 | dnl enable_pixbuf=no |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
133 | dnl CFLAGS="$CFLAGS -DGTK_ENABLE_BROKEN" |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
134 | dnl UI_LIBS="$UI_LIBS $GTK_LIBS" |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
135 | dnl ],enable_gtk2=no) |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
136 | |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
137 | AC_PATH_PROG(pkgcfg, pkg-config) |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
138 | if test "x$pkgcfg" = "x" ; then |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
139 | enable_gtk2=no |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
140 | else |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
141 | GTK_VER=`$pkgcfg gtk+-2.0 --modversion 2>/dev/null` |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
142 | if test "x$GTK_VER" = "x" ; then |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
143 | enable_gtk2=no |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
144 | else |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
145 | GTK_CFLAGS=`$pkgcfg gtk+-2.0 --cflags` |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
146 | CFLAGS="$CFLAGS -DGTK_ENABLE_BROKEN" |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
147 | GTK_LIBS=`$pkgcfg gtk+-2.0 --libs` |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
148 | UI_LIBS="$UI_LIBS $GTK_LIBS" |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
149 | enable_gnome=no |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
150 | enable_pixbuf=no |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
151 | fi |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
152 | fi |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
153 | fi |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
154 | |
| 2129 | 155 | if test "x$enable_gnome" = "xyes" ; then |
| 156 | if test "x$enable_panel" = "xyes" ; then | |
| 157 | GNOME_INIT(applets) | |
| 158 | GNOME_X_CHECKS | |
| 159 | CFLAGS="$CFLAGS $GNOME_INCLUDEDIR" | |
| 160 | AC_DEFINE(USE_APPLET) | |
| 161 | AC_DEFINE(USE_GNOME) | |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
162 | UI_LIBS="$UI_LIBS $GTK_LIBS $GNOME_LIBDIR $GNOME_APPLETS_LIBS $GNOMEUI_LIBS" |
| 2129 | 163 | AC_PATH_PROG(gaimpath, gaim_applet) |
| 164 | else | |
| 165 | AC_PATH_PROG(gnomepath, gnome-config) | |
| 166 | AC_MSG_CHECKING(for Gnome compile flags) | |
| 167 | GNOME_CFLAGS=`$gnomepath gnomeui --cflags 2>/dev/null` | |
| 168 | if test "x$GNOME_CFLAGS" = "x" ; then | |
| 169 | enable_gnome=no | |
| 170 | AC_MSG_RESULT([Gnome not found, building without it.]) | |
| 171 | else | |
| 172 | GNOME_VER=`$gnomepath --version |$sedpath 's/gnome-libs //' 2>/dev/null` | |
| 173 | GNOME_MAJOR=`echo $GNOME_VER |$sedpath 's/\([[0-9]*]*\).\([[0-9]*]*\).\([[0-9]*]*\)/\1/' 2>/dev/null` | |
| 174 | if test "x$GNOME_MAJOR" = "x0" ; then | |
| 175 | enable_gnome = no | |
| 176 | AC_MSG_RESULT([old Gnome found, building without it.]) | |
| 177 | else | |
| 178 | AC_MSG_RESULT(ok) | |
| 179 | CFLAGS="$CFLAGS $GNOME_CFLAGS" | |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
180 | UI_LIBS="$UI_LIBS `$gnomepath gnomeui --libs 2>/dev/null`" |
| 2129 | 181 | AC_DEFINE(USE_GNOME) |
| 182 | GNOME_CONFIG="$gnomepath" | |
| 183 | AC_SUBST(GNOME_CONFIG) | |
| 184 | AC_PATH_PROG(gaimpath, gaim) | |
| 185 | fi | |
| 186 | fi | |
| 187 | fi | |
| 188 | fi | |
| 189 | ||
|
2725
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
190 | if test "x$enable_gnome" != "xyes" -a "x$enable_gtk2" != "xyes" ; then |
|
2862
962a6d4da169
[gaim-migrate @ 2875]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2856
diff
changeset
|
191 | AM_PATH_GLIB(1.2.5,,AC_MSG_ERROR([ |
| 2129 | 192 | *** GLib is required to build Gaim; please make sure you have the GLib |
| 193 | *** development headers installed. The latest version of GLib is | |
| 194 | *** always available at http://www.gtk.org/.])) | |
|
2862
962a6d4da169
[gaim-migrate @ 2875]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2856
diff
changeset
|
195 | AM_PATH_GTK(1.2.5,,AC_MSG_ERROR([ |
| 2129 | 196 | *** GTK+ is required to build Gaim; please make sure you have the GTK+ |
| 197 | *** development headers installed. The latest version of GTK+ is | |
|
2730
4ef197916fd0
[gaim-migrate @ 2743]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2726
diff
changeset
|
198 | *** always available at http://www.gtk.org/.])) |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
199 | UI_LIBS="$UI_LIBS $GTK_LIBS" |
| 2129 | 200 | AC_PATH_PROG(gaimpath, gaim) |
| 201 | fi | |
| 202 | CFLAGS="$CFLAGS $GTK_CFLAGS" | |
| 203 | ||
|
2659
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
204 | dnl if test "x$enable_panel" = "xyes" ; then |
| 2657 | 205 | dnl Things moved with the new versoin of Orbit. Thanks for |
| 206 | dnl telling me, Dan. This should fix them. | |
|
2659
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
207 | dnl |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
208 | dnl The gnome-config script should pick this up and affect GNOME_ variables |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
209 | dnl correctly. Thus, this check is not needed; if it fails, it is because of |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
210 | dnl a broken installation or that your appletsConf.sh file is not updated |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
211 | dnl for the new orbit installation. Gaim shouldn't need to do this. |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
212 | dnl |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
213 | dnl CFLAGS="$CFLAGS $ORBIT_CFLAGS" |
|
e32eb63436f1
[gaim-migrate @ 2672]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2658
diff
changeset
|
214 | dnl fi |
| 2657 | 215 | |
| 2129 | 216 | use_pixbuf=no |
| 217 | if test "x$enable_pixbuf" = "xyes" ; then | |
| 218 | AC_PATH_PROG(pixbufcfg, gdk-pixbuf-config) | |
| 219 | if test "x$pixbufcfg" != "x" ; then | |
| 220 | GDK_PIXBUF_CFLAGS=`$pixbufcfg --cflags` | |
| 221 | GDK_PIXBUF_LIBS=`$pixbufcfg --libs` | |
| 222 | GDK_PIXBUF_CONFIG="$pixbufcfg" | |
| 223 | AC_SUBST(GDK_PIXBUF_CONFIG) | |
| 224 | AC_SUBST(GDK_PIXBUF_CFLAGS) | |
| 225 | AC_SUBST(GDK_PIXBUF_LIBS) | |
| 226 | CFLAGS="$CFLAGS $GDK_PIXBUF_CFLAGS" | |
|
2181
51afafcf4053
[gaim-migrate @ 2191]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2179
diff
changeset
|
227 | UI_LIBS="$UI_LIBS $GDK_PIXBUF_LIBS" |
| 2129 | 228 | dnl We should be doing checks to see that the header files and functions exist. eh. |
| 229 | AC_DEFINE(USE_PIXBUF) | |
| 230 | use_pixbuf=yes | |
| 231 | fi | |
| 232 | fi | |
|
2178
e30d0c41f165
[gaim-migrate @ 2188]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2163
diff
changeset
|
233 | AC_SUBST(UI_LIBS) |
| 2129 | 234 | |
| 235 | dnl Check for XScreenSaver | |
| 236 | if test "x$enable_xss" = "xyes" ; then | |
| 3282 | 237 | AC_PATH_X |
|
2182
c33eb7c19074
[gaim-migrate @ 2192]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2181
diff
changeset
|
238 | old_LIBS="$LIBS" |
| 3282 | 239 | LIBS="$LIBS $UI_LIBS -L$x_libraries" |
| 2129 | 240 | XSS_LIBS="no" |
| 241 | XSS_HEADERS="no" | |
| 3282 | 242 | AC_CHECK_LIB(Xext, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries"],[],[-lX11 -lXext -lm]) |
| 243 | AC_CHECK_LIB(Xss, XScreenSaverRegister,[XSS_LIBS="-L$x_libraries -lXss"],[],[-lX11 -lXext -lm]) | |
| 2129 | 244 | if test \! "$XSS_LIBS" = "no"; then |
| 245 | AC_TRY_COMPILE([ | |
| 246 | #include <X11/extensions/scrnsaver.h> | |
| 247 | ],[],[enable_xss=no],[ | |
| 248 | AC_DEFINE(USE_SCREENSAVER) | |
| 249 | ]) | |
| 250 | else | |
| 251 | XSS_LIBS="" | |
| 252 | enable_xss=no | |
| 253 | fi | |
|
2182
c33eb7c19074
[gaim-migrate @ 2192]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2181
diff
changeset
|
254 | LIBS="$old_LIBS" |
| 2129 | 255 | else |
| 256 | XSS_LIBS="" | |
| 257 | enable_xss=no | |
| 258 | fi | |
| 259 | AC_SUBST(XSS_LIBS) | |
| 260 | ||
| 261 | ||
|
3203
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
262 | AC_DEFUN(GC_TM_GMTOFF, |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
263 | [AC_REQUIRE([AC_STRUCT_TM])dnl |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
264 | AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
265 | [AC_TRY_COMPILE([#include <sys/types.h> |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
266 | #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
267 | ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
268 | if test "$ac_cv_struct_tm_gmtoff" = yes; then |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
269 | AC_DEFINE(HAVE_TM_GMTOFF) |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
270 | fi |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
271 | ]) |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
272 | |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
273 | GC_TM_GMTOFF |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
274 | |
|
893dc8ee2385
[gaim-migrate @ 3220]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3194
diff
changeset
|
275 | |
| 2129 | 276 | |
| 277 | dnl This was taken straight from X-Chat. | |
| 278 | dnl X-Chat is the greatest application ever, not only | |
| 279 | dnl because it's a rocking IRC client but also because | |
| 280 | dnl it's very easy to learn from. | |
| 281 | if test "$enable_perl" = yes ; then | |
| 282 | AC_PATH_PROG(perlpath, perl) | |
| 283 | AC_MSG_CHECKING(for Perl compile flags) | |
| 284 | PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null` | |
| 285 | if test "_$PERL_CFLAGS" = _ ; then | |
| 286 | AC_MSG_RESULT([not found, building without perl.]) | |
| 287 | enable_perl = no | |
| 288 | else | |
| 289 | PERL_LIBS=`$perlpath -MExtUtils::Embed -e ldopts 2>/dev/null |$sedpath 's/-lgdbm //'` | |
| 290 | PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-ldb //'` | |
| 291 | PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lndbm //'` | |
| 292 | if test "$system" = "Linux"; then | |
| 293 | PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lnsl //'` | |
| 294 | PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lposix //'` | |
| 295 | fi | |
| 296 | PERL_LIBS=`echo $PERL_LIBS |$sedpath 's/-lc //'` | |
| 297 | AC_MSG_RESULT(ok) | |
| 298 | AC_SUBST(PERL_CFLAGS) | |
| 299 | AC_SUBST(PERL_LIBS) | |
| 300 | AC_DEFINE(USE_PERL) | |
| 301 | AC_CHECK_FUNCS(Perl_eval_pv) | |
| 302 | fi | |
| 303 | fi | |
| 304 | ||
| 305 | if test "$enable_nas" = yes ; then | |
| 306 | AC_DEFINE(NAS_SOUND) | |
|
2178
e30d0c41f165
[gaim-migrate @ 2188]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2163
diff
changeset
|
307 | SOUND_LIBS="-laudio -lXt" |
| 2129 | 308 | fi |
| 309 | if test "$enable_esd" = yes ; then | |
| 310 | AM_PATH_GESD | |
| 311 | if test "$no_esd" != yes ; then | |
| 2179 | 312 | old_CFLAGS="$CFLAGS" |
| 2129 | 313 | CFLAGS="$CFLAGS $ESD_CFLAGS" |
|
2184
83f29bfc76d6
[gaim-migrate @ 2194]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2182
diff
changeset
|
314 | AC_TRY_COMPILE(,[#include <esd.h>], |
| 2179 | 315 | [ |
| 316 | AC_DEFINE(ESD_SOUND) | |
| 317 | SOUND_LIBS="$SOUND_LIBS $ESD_LIBS" | |
| 318 | ],[ | |
| 319 | enable_esd=no | |
| 320 | CFLAGS="$old_CFLAGS" | |
| 321 | ]) | |
| 2129 | 322 | else |
| 323 | enable_esd=no | |
| 324 | fi | |
| 325 | fi | |
| 2179 | 326 | if test "x$enable_artsc" = "xyes"; then |
| 327 | AM_PATH_ARTSC | |
| 328 | if test "x$no_artsc" != "xyes" ; then | |
| 329 | old_CFLAGS="$CFLAGS" | |
| 330 | CFLAGS="$CFLAGS $ARTSC_CFLAGS" | |
|
2184
83f29bfc76d6
[gaim-migrate @ 2194]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2182
diff
changeset
|
331 | AC_TRY_COMPILE(,[#include <artsc.h>], |
| 2179 | 332 | [ |
| 333 | AC_DEFINE(ARTSC_SOUND) | |
| 334 | SOUND_LIBS="$SOUND_LIBS $ARTSC_LIBS" | |
| 335 | ],[ | |
| 336 | enable_artsc=no | |
| 337 | CFLAGS="$old_CFLAGS" | |
| 338 | ]) | |
| 339 | else | |
| 340 | enable_artsc=no | |
| 341 | fi | |
| 342 | fi | |
|
2178
e30d0c41f165
[gaim-migrate @ 2188]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2163
diff
changeset
|
343 | AC_SUBST(SOUND_LIBS) |
| 2129 | 344 | |
| 345 | if test "$ac_cv_cygwin" = yes ; then | |
| 346 | LDADD="$LDADD -static" | |
| 347 | CFLAGS="$CFLAGS -Wall -g" | |
| 348 | AC_DEFINE(DEBUG) | |
| 349 | fi | |
| 350 | ||
| 351 | AC_SUBST(CFLAGS) | |
| 352 | AC_SUBST(LDADD) | |
| 353 | AC_SUBST(LIBS) | |
| 354 | ||
| 355 | if test "x$enable_multi" != "xyes" ; then | |
| 356 | AC_DEFINE(NO_MULTI) | |
| 357 | enable_multi=no | |
| 358 | fi | |
| 359 | ||
| 360 | if test "x$enable_plugins" = "xyes" ; then | |
| 361 | AC_DEFINE(GAIM_PLUGINS) | |
| 362 | AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") | |
| 363 | else | |
| 364 | enable_plugins=no | |
| 365 | enable_prpls=no | |
| 366 | fi | |
| 367 | ||
| 368 | if test "x$enable_prpls" = "xyes" ; then | |
| 369 | AM_CONDITIONAL(PRPLS, test "x$enable_plugins" = "xyes") | |
| 370 | else | |
| 371 | enable_prpls=no | |
| 372 | fi | |
| 373 | ||
| 374 | dnl checks for icqlib | |
| 375 | AC_CHECK_HEADERS(asm/byteorder.h byteswap.h endian.h machine/endian.h arpa/nameser_compat.h) | |
| 376 | AC_CHECK_FUNCS(bswap_32 bswap_16) | |
| 377 | AC_C_BIGENDIAN | |
| 378 | ||
| 379 | dnl checks for jabber | |
| 380 | dnl AC_CHECK_SIZEOF(short) | |
| 381 | AC_CHECK_FUNCS(snprintf connect) | |
| 382 | AC_CHECK_LIB(nsl, gethostent) | |
| 383 | ||
| 384 | dnl checks for zephyr | |
| 385 | AC_DEFINE(ZEPHYR_INT32, long) | |
| 386 | AC_SUBST(KRB4_CFLAGS) | |
| 387 | AC_SUBST(KRB4_LDFLAGS) | |
| 388 | AC_SUBST(KRB4_LIBS) | |
| 389 | if test "$kerberos" != "no" ; then | |
| 390 | if test "$kerberos" != "yes" ; then | |
| 391 | KRB4_CFLAGS="-I${kerberos}/include" | |
| 392 | if test -d "$kerberos/include/kerberosIV" ; then | |
| 393 | KRB4_CFLAGS="$KRB4_CFLAGS -I${kerberos}/include/kerberosIV" | |
| 394 | fi | |
| 395 | KRB4_LDFLAGS="-L${kerberos}/lib" | |
| 396 | elif test -d /usr/local/include/kerberosIV ; then | |
| 397 | KRB4_CFLAGS="-I/usr/local/include/kerberosIV" | |
| 398 | elif test -d /usr/include/kerberosIV ; then | |
| 399 | KRB4_CFLAGS="-I/usr/include/kerberosIV" | |
| 400 | fi | |
| 401 | AC_DEFINE(ZEPHYR_USES_KERBEROS) | |
| 402 | ||
| 403 | orig_LDFLAGS="$LDFLAGS" | |
| 404 | LDFLAGS="$LDFLAGS $KRB4_LDFLAGS" | |
| 405 | AC_CHECK_LIB(krb4, krb_rd_req, | |
| 406 | [KRB4_LIBS="-lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], | |
| 407 | [AC_CHECK_LIB(krb, krb_rd_req, | |
| 408 | [KRB4_LIBS="-lkrb -ldes"], | |
| 409 | [AC_ERROR(Kerberos 4 libraries not found)], | |
| 410 | -ldes)], | |
| 411 | -ldes425 -lkrb5 -lk5crypto -lcom_err) | |
| 412 | orig_LIBS="$LIBS" | |
| 413 | LIBS="$LIBS $KRB4_LIBS" | |
| 414 | AC_CHECK_FUNCS(krb_set_key krb_rd_req krb_get_lrealm) | |
| 415 | AC_CHECK_FUNCS(krb_get_err_text krb_log) | |
| 416 | LIBS="$orig_LIBS" | |
| 417 | LDFLAGS="$orig_LDFLAGS" | |
| 418 | fi | |
| 419 | AC_CHECK_FUNCS(gethostid lrand48) | |
| 420 | AC_CHECK_FUNCS(memcpy memmove random strchr strerror vprintf) | |
| 421 | AC_CHECK_HEADERS(malloc.h paths.h sgtty.h stdarg.h sys/cdefs.h) | |
| 422 | AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) | |
| 423 | AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) | |
| 424 | AC_CHECK_HEADERS(termios.h) | |
|
3194
9404dfabed94
[gaim-migrate @ 3211]
Jim Seymour <jseymour@users.sourceforge.net>
parents:
3191
diff
changeset
|
425 | AC_VAR_TIMEZONE_EXTERNALS |
| 2129 | 426 | |
| 427 | AC_OUTPUT([Makefile | |
| 428 | doc/Makefile | |
| 429 | intl/Makefile | |
| 430 | m4/Makefile | |
| 431 | pixmaps/Makefile | |
| 3039 | 432 | pixmaps/protocols/Makefile |
| 433 | pixmaps/protocols/msn/Makefile | |
| 434 | pixmaps/protocols/yahoo/Makefile | |
| 2129 | 435 | plugins/Makefile |
| 3391 | 436 | plugins/ticker/Makefile |
| 2129 | 437 | po/Makefile.in |
| 438 | sounds/Makefile | |
| 439 | src/Makefile | |
| 440 | src/protocols/Makefile | |
|
2393
cfef0212506b
[gaim-migrate @ 2406]
Eric Warmenhoven <warmenhoven@yahoo.com>
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
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
458 | echo Allow Multiple Connections.... : $enable_multi |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
459 | echo Build Protocol Plugins........ : $enable_prpls |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
460 | echo Protocols to link statically.. : $STATIC_PRPLS |
| 2129 | 461 | echo |
|
2725
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
462 | if test "x$enable_panel" = "xyes" ; then |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
463 | echo UI Library.................... : GNOME Panel |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
464 | elif test "x$enable_gnome" = "xyes" ; then |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
465 | echo UI Library.................... : GNOME App |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
466 | elif test "x$enable_gtk2" = "xyes" ; then |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
467 | echo UI Library.................... : GTK+ 2.0 |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
468 | else |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
469 | echo UI Library.................... : GTK+ 1.2 |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
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
046ed5e89321
[gaim-migrate @ 2869]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2852
diff
changeset
|
474 | echo Use GdkPixbuf................. : $use_pixbuf |
|
2725
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
475 | fi |
| 2129 | 476 | echo |
|
2725
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
477 | echo Build with Plugin support..... : $enable_plugins |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
478 | echo Build with Perl support....... : $enable_perl |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
479 | echo |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
480 | echo Use XScreenSaver Extension.... : $enable_xss |
| 2129 | 481 | echo |
|
2725
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
482 | echo Build with ESD................ : $enable_esd |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
483 | echo Build with NAS................ : $enable_nas |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
484 | echo Build with ArtsC.............. : $enable_artsc |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
485 | echo |
|
a844d0964552
[gaim-migrate @ 2738]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2711
diff
changeset
|
486 | echo Print debugging messages...... : $enable_debug |
| 2129 | 487 | echo |
|
2452
8a19e5abeaf8
[gaim-migrate @ 2465]
Eric Warmenhoven <warmenhoven@yahoo.com>
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 |