blob: 4b119f32ec0367fc3562950a206c71d167cc5c5b [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001dnl configure.in: autoconf script for Vim
2
3dnl Process this file with autoconf 2.12 or 2.13 to produce "configure".
4dnl Should also work with autoconf 2.54 and later.
5
6AC_INIT(vim.h)
7AC_CONFIG_HEADER(auto/config.h:config.h.in)
8
9dnl Being able to run configure means the system is Unix (compatible).
10AC_DEFINE(UNIX)
11AC_PROG_MAKE_SET
12
13dnl Checks for programs.
14AC_PROG_CC dnl required by almost everything
15AC_PROG_CPP dnl required by header file checks
16AC_PROGRAM_EGREP dnl required by AC_EGREP_CPP
17AC_ISC_POSIX dnl required by AC_C_CROSS
18AC_PROG_AWK dnl required for "make html" in ../doc
19
20dnl Don't strip if we don't have it
21AC_CHECK_PROG(STRIP, strip, strip, :)
22
Bram Moolenaar325b7a22004-07-05 15:58:32 +000023dnl Check for extension of executables
Bram Moolenaar071d4272004-06-13 20:20:40 +000024AC_EXEEXT
25
26dnl Set default value for CFLAGS if none is defined or it's empty
27if test -z "$CFLAGS"; then
28 CFLAGS="-O"
29 test "$GCC" = yes && CFLAGS="-O2 -fno-strength-reduce -Wall"
30fi
31if test "$GCC" = yes; then
32 gccversion=`"$CC" --version | sed -e '2,$d;s/^[[^0-9]]*\([[0-9]]\.[[0-9.]]*\).*$/\1/g'`
33 if test "$gccversion" = "3.0.1" -o "$gccversion" = "3.0.2"; then
34 echo 'GCC 3.0.x has a bug in the optimizer, disabling "-O#"'
35 CFLAGS=`echo "$CFLAGS" | sed 's/-O[[23456789]]/-O/'`
36 else
37 if test "$gccversion" = "3.1" -o "$gccversion" = "3.2" -o "$gccversion" = "3.2.1" && `echo "$CFLAGS" | grep -v fno-strength-reduce >/dev/null`; then
38 echo 'GCC 3.1 and 3.2 have a bug in the optimizer, adding "-fno-strength-reduce"'
39 CFLAGS="$CFLAGS -fno-strength-reduce"
40 fi
41 fi
42fi
43
44dnl If configure thinks we are cross compiling, there is probably something
45dnl wrong with the CC or CFLAGS settings, give an understandable error message
46if test "$cross_compiling" = yes; then
47 AC_MSG_ERROR([cannot compile a simple program, check CC and CFLAGS
48 (cross compiling doesn't work)])
49fi
50
51dnl gcc-cpp has the wonderful -MM option to produce nicer dependencies
52test "$GCC" = yes && CPP_MM=M; AC_SUBST(CPP_MM)
53
54if test -f ./toolcheck; then
55 AC_CHECKING(for buggy tools)
56 sh ./toolcheck 1>&AC_FD_MSG
57fi
58
59OS_EXTRA_SRC=""; OS_EXTRA_OBJ=""
60
61dnl Check for BeOS, which needs an extra source file
62AC_MSG_CHECKING(for BeOS)
63case `uname` in
64 BeOS) OS_EXTRA_SRC=os_beos.c; OS_EXTRA_OBJ=objects/os_beos.o
65 BEOS=yes; AC_MSG_RESULT(yes);;
66 *) BEOS=no; AC_MSG_RESULT(no);;
67esac
68
69dnl If QNX is found, assume we don't want to use Xphoton
70dnl unless it was specifically asked for (--with-x)
71AC_MSG_CHECKING(for QNX)
72case `uname` in
73 QNX) OS_EXTRA_SRC=os_qnx.c; OS_EXTRA_OBJ=objects/os_qnx.o
74 test -z "$with_x" && with_x=no
75 QNX=yes; AC_MSG_RESULT(yes);;
76 *) QNX=no; AC_MSG_RESULT(no);;
77esac
78
79dnl Check for Darwin and MacOS X
80dnl We do a check for MacOS X in the very beginning because there
81dnl are a lot of other things we need to change besides GUI stuff
82DEFAULT_VIMNAME=vim
83AC_MSG_CHECKING([for Darwin (Mac OS X)])
84if test "`(uname) 2>/dev/null`" = Darwin; then
85 AC_MSG_RESULT(yes)
86
87 AC_MSG_CHECKING(--disable-darwin argument)
88 AC_ARG_ENABLE(darwin,
89 [ --disable-darwin Disable Darwin (Mac OS X) support.],
90 , [enable_darwin="yes"])
91 if test "$enable_darwin" = "yes"; then
92 AC_MSG_RESULT(no)
93 AC_MSG_CHECKING(if Darwin files are there)
94 if test -f os_macosx.c; then
95 AC_MSG_RESULT(yes)
96 else
97 AC_MSG_RESULT([no, Darwin support disabled])
98 enable_darwin=no
99 fi
100 else
101 AC_MSG_RESULT([yes, Darwin support excluded])
102 fi
103
104 if test "$enable_darwin" = "yes"; then
105 MACOSX=yes
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000106 OS_EXTRA_SCR="os_macosx.c os_mac_conv.c";
107 OS_EXTRA_OBJ="objects/os_macosx.o objects/os_mac_conv.o"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108 CPPFLAGS="$CPPFLAGS -DMACOS_X_UNIX -I/Developer/Headers/FlatCarbon -no-cpp-precomp"
109
110 dnl If Carbon is found, assume we don't want X11
111 dnl unless it was specifically asked for (--with-x)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000112 dnl or Motif, Athena or GTK GUI is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113 AC_CHECK_HEADER(Carbon/Carbon.h, CARBON=yes)
114 if test "x$CARBON" = "xyes"; then
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000115 if test -z "$with_x" -a "X$enable_gui" != Xmotif -a "X$enable_gui" != Xathena -a "X$enable_gui" != Xgtk -a "X$enable_gui" != Xgtk2; then
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 with_x=no
117 DEFAULT_VIMNAME=Vim
118 fi
119 fi
120 fi
121else
122 AC_MSG_RESULT(no)
123fi
124
125AC_SUBST(OS_EXTRA_SRC)
126AC_SUBST(OS_EXTRA_OBJ)
127
128dnl Add /usr/local/lib to $LDFLAGS and /usr/local/include to CFLAGS.
129dnl Only when the directory exists and it wasn't there yet.
130dnl For gcc don't do this when it is already in the default search path.
131have_local_include=''
132have_local_lib=''
133if test "$GCC" = yes; then
134 echo 'void f(){}' > conftest.c
135 dnl -no-cpp-precomp is needed for OS X 10.2 (Ben Fowler)
136 have_local_include=`${CC-cc} -no-cpp-precomp -c -v conftest.c 2>&1 | grep '/usr/local/include'`
137 have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/lib'`
138 rm -f conftest.c conftest.o
139fi
140if test -z "$have_local_lib" -a -d /usr/local/lib; then
141 tt=`echo "$LDFLAGS" | sed -e 's+-L/usr/local/lib ++g' -e 's+-L/usr/local/lib$++g'`
142 if test "$tt" = "$LDFLAGS"; then
143 LDFLAGS="$LDFLAGS -L/usr/local/lib"
144 fi
145fi
146if test -z "$have_local_include" -a -d /usr/local/include; then
147 tt=`echo "$CPPFLAGS" | sed -e 's+-I/usr/local/include ++g' -e 's+-I/usr/local/include$++g'`
148 if test "$tt" = "$CPPFLAGS"; then
149 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
150 fi
151fi
152
153AC_MSG_CHECKING(--with-vim-name argument)
154AC_ARG_WITH(vim-name, [ --with-vim-name=NAME what to call the Vim executable],
155 VIMNAME="$withval"; AC_MSG_RESULT($VIMNAME),
156 VIMNAME="$DEFAULT_VIMNAME"; AC_MSG_RESULT(Defaulting to $VIMNAME))
157AC_SUBST(VIMNAME)
158AC_MSG_CHECKING(--with-ex-name argument)
159AC_ARG_WITH(ex-name, [ --with-ex-name=NAME what to call the Ex executable],
160 EXNAME="$withval"; AC_MSG_RESULT($EXNAME),
161 EXNAME="ex"; AC_MSG_RESULT(Defaulting to ex))
162AC_SUBST(EXNAME)
163AC_MSG_CHECKING(--with-view-name argument)
164AC_ARG_WITH(view-name, [ --with-view-name=NAME what to call the View executable],
165 VIEWNAME="$withval"; AC_MSG_RESULT($VIEWNAME),
166 VIEWNAME="view"; AC_MSG_RESULT(Defaulting to view))
167AC_SUBST(VIEWNAME)
168
169AC_MSG_CHECKING(--with-global-runtime argument)
170AC_ARG_WITH(global-runtime, [ --with-global-runtime=DIR global runtime directory in 'runtimepath'],
171 AC_MSG_RESULT($withval); AC_DEFINE_UNQUOTED(RUNTIME_GLOBAL, "$withval"),
172 AC_MSG_RESULT(no))
173
174AC_MSG_CHECKING(--with-modified-by argument)
175AC_ARG_WITH(modified-by, [ --with-modified-by=NAME name of who modified a release version],
176 AC_MSG_RESULT($withval); AC_DEFINE_UNQUOTED(MODIFIED_BY, "$withval"),
177 AC_MSG_RESULT(no))
178
179dnl Check for EBCDIC stolen from the LYNX port to OS390 Unix
180AC_MSG_CHECKING(if character set is EBCDIC)
181AC_TRY_COMPILE([ ],
182[ /* TryCompile function for CharSet.
183 Treat any failure as ASCII for compatibility with existing art.
184 Use compile-time rather than run-time tests for cross-compiler
185 tolerance. */
186#if '0'!=240
187make an error "Character set is not EBCDIC"
188#endif ],
189[ # TryCompile action if true
190cf_cv_ebcdic=yes ],
191[ # TryCompile action if false
192cf_cv_ebcdic=no])
193# end of TryCompile ])
194# end of CacheVal CvEbcdic
195AC_MSG_RESULT($cf_cv_ebcdic)
196case "$cf_cv_ebcdic" in #(vi
197 yes) AC_DEFINE(EBCDIC)
198 line_break='"\\n"'
199 ;;
200 *) line_break='"\\012"';;
201esac
202AC_SUBST(line_break)
203
204if test "$cf_cv_ebcdic" = "yes"; then
205dnl If we have EBCDIC we most likley have OS390 Unix, let's test it!
206AC_MSG_CHECKING(for OS/390 Unix)
207case `uname` in
208 OS/390) OS390Unix="yes";
209 dnl If using cc the environment variable _CC_CCMODE must be
210 dnl set to "1", so that some compiler extensions are enabled.
211 dnl If using c89 the environment variable is named _CC_C89MODE.
212 dnl Note: compile with c89 never tested.
213 if test "$CC" = "cc"; then
214 ccm="$_CC_CCMODE"
215 ccn="CC"
216 else
217 if test "$CC" = "c89"; then
218 ccm="$_CC_C89MODE"
219 ccn="C89"
220 else
221 ccm=1
222 fi
223 fi
224 if test "$ccm" != "1"; then
225 echo ""
226 echo "------------------------------------------"
227 echo " On OS/390 Unix, the environment variable"
228 echo " __CC_${ccn}MODE must be set to \"1\"!"
229 echo " Do:"
230 echo " export _CC_${ccn}MODE=1"
231 echo " and then call configure again."
232 echo "------------------------------------------"
233 exit 1
234 fi
235 CFLAGS="$CFLAGS -D_ALL_SOURCE"; LDFLAGS="$LDFLAGS -Wl,EDIT=NO"
236 AC_MSG_RESULT(yes)
237 ;;
238 *) OS390Unix="no";
239 AC_MSG_RESULT(no)
240 ;;
241esac
242fi
243
244
245dnl Check user requested features.
246
247AC_MSG_CHECKING(--with-features argument)
248AC_ARG_WITH(features, [ --with-features=TYPE tiny, small, normal, big or huge (default: normal)],
249 features="$withval"; AC_MSG_RESULT($features),
250 features="normal"; AC_MSG_RESULT(Defaulting to normal))
251
252dovimdiff=""
253dogvimdiff=""
254case "$features" in
255 tiny) AC_DEFINE(FEAT_TINY) ;;
256 small) AC_DEFINE(FEAT_SMALL) ;;
257 normal) AC_DEFINE(FEAT_NORMAL) dovimdiff="installvimdiff";
258 dogvimdiff="installgvimdiff" ;;
259 big) AC_DEFINE(FEAT_BIG) dovimdiff="installvimdiff";
260 dogvimdiff="installgvimdiff" ;;
261 huge) AC_DEFINE(FEAT_HUGE) dovimdiff="installvimdiff";
262 dogvimdiff="installgvimdiff" ;;
263 *) AC_MSG_RESULT([Sorry, $features is not supported]) ;;
264esac
265
266AC_SUBST(dovimdiff)
267AC_SUBST(dogvimdiff)
268
269AC_MSG_CHECKING(--with-compiledby argument)
270AC_ARG_WITH(compiledby, [ --with-compiledby=NAME name to show in :version message],
271 compiledby="$withval"; AC_MSG_RESULT($withval),
272 compiledby=""; AC_MSG_RESULT(no))
273AC_SUBST(compiledby)
274
275AC_MSG_CHECKING(--disable-xsmp argument)
276AC_ARG_ENABLE(xsmp,
277 [ --disable-xsmp Disable XSMP session management],
278 , enable_xsmp="yes")
279
280if test "$enable_xsmp" = "yes"; then
281 AC_MSG_RESULT(no)
282 AC_MSG_CHECKING(--disable-xsmp-interact argument)
283 AC_ARG_ENABLE(xsmp-interact,
284 [ --disable-xsmp-interact Disable XSMP interaction],
285 , enable_xsmp_interact="yes")
286 if test "$enable_xsmp_interact" = "yes"; then
287 AC_MSG_RESULT(no)
288 AC_DEFINE(USE_XSMP_INTERACT)
289 else
290 AC_MSG_RESULT(yes)
291 fi
292else
293 AC_MSG_RESULT(yes)
294fi
295
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000296dnl Check for MzScheme feature.
297AC_MSG_CHECKING(--enable-mzschemeinterp argument)
298AC_ARG_ENABLE(mzschemeinterp,
299 [ --enable-mzschemeinterp Include MzScheme interpreter.], ,
300 [enable_mzschemeinterp="no"])
301AC_MSG_RESULT($enable_mzschemeinterp)
302
303if test "$enable_mzschemeinterp" = "yes"; then
304 dnl -- find the mzscheme executable
305 AC_SUBST(vi_cv_path_mzscheme)
306
307 AC_MSG_CHECKING(--with-plthome argument)
308 AC_ARG_WITH(plthome,
309 [ --with-plthome=PLTHOME Use PLTHOME.],
310 with_plthome="$withval"; AC_MSG_RESULT($with_plthome),
311 with_plthome="";AC_MSG_RESULT("no"))
312
313 if test "X$with_plthome" != "X"; then
314 vi_cv_path_mzscheme_pfx="$with_plthome"
315 else
316 AC_MSG_CHECKING(PLTHOME environment var)
317 if test "X$PLTHOME" != "X"; then
318 AC_MSG_RESULT("$PLTHOME")
319 vi_cv_path_mzscheme_pfx="$PLTHOME"
320 else
321 AC_MSG_RESULT("not set")
322 dnl -- try to find MzScheme executable
323 AC_PATH_PROG(vi_cv_path_mzscheme, mzscheme)
324
325 dnl resolve symbolic link, the executable is often elsewhere and there
326 dnl are no links for the include files.
327 if test "X$vi_cv_path_mzscheme" != "X"; then
328 lsout=`ls -l $vi_cv_path_mzscheme`
329 if echo "$lsout" | grep -e '->' >/dev/null 2>/dev/null; then
330 vi_cv_path_mzscheme=`echo "$lsout" | sed 's/.*-> \(.*\)/\1/'`
331 fi
332 fi
333
334 if test "X$vi_cv_path_mzscheme" != "X"; then
335 dnl -- find where MzScheme thinks it was installed
336 AC_CACHE_CHECK(MzScheme install prefix,vi_cv_path_mzscheme_pfx,
337 [ vi_cv_path_mzscheme_pfx=`
338 ${vi_cv_path_mzscheme} -evm \
339 "(display (simplify-path \
340 (build-path (call-with-values \
341 (lambda () (split-path (find-system-path (quote exec-file)))) \
342 (lambda (base name must-be-dir?) base)) (quote up))))"` ])
343 dnl Remove a trailing slash.
344 vi_cv_path_mzscheme_pfx=`echo "$vi_cv_path_mzscheme_pfx" | sed 's+/$++'`
345 fi
346 fi
347 fi
348
349 if test "X$vi_cv_path_mzscheme_pfx" != "X"; then
350 AC_MSG_CHECKING(if scheme.h can be found in $vi_cv_path_mzscheme_pfx/include)
351 if test -f $vi_cv_path_mzscheme_pfx/include/scheme.h; then
352 AC_MSG_RESULT("yes")
353 else
354 AC_MSG_RESULT("no")
355 vi_cv_path_mzscheme_pfx=
356 fi
357 fi
358
359 if test "X$vi_cv_path_mzscheme_pfx" != "X"; then
360 if test -f "${vi_cv_path_mzscheme_pfx}/lib/libmzgc.a"; then
361 MZSCHEME_LIBS="${vi_cv_path_mzscheme_pfx}/lib/libmzgc.a ${vi_cv_path_mzscheme_pfx}/lib/libmzscheme.a"
362 else
363 MZSCHEME_LIBS="-L${vi_cv_path_mzscheme_pfx}/lib -lmzgc -lmzscheme"
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000364 if test "$GCC" = yes; then
365 dnl Make Vim remember the path to the library. For when it's not in
366 dnl $LD_LIBRARY_PATH.
367 MZSCHEME_LIBS="$MZSCHEME_LIBS -Wl,-rpath -Wl,${vi_cv_path_mzscheme_pfx}/lib"
Bram Moolenaar21cf8232004-07-16 20:18:37 +0000368 elif test "`(uname) 2>/dev/null`" = SunOS &&
369 uname -r | grep '^5' >/dev/null; then
370 MZSCHEME_LIBS="$MZSCHEME_LIBS -R ${vi_cv_path_mzscheme_pfx}/lib"
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000371 fi
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000372 fi
373 MZSCHEME_CFLAGS="-I${vi_cv_path_mzscheme_pfx}/include \
374 -DMZSCHEME_COLLECTS='\"${vi_cv_path_mzscheme_pfx}/collects\"'"
375 MZSCHEME_SRC="if_mzsch.c"
376 MZSCHEME_OBJ="objects/if_mzsch.o"
377 MZSCHEME_PRO="if_mzsch.pro"
378 AC_DEFINE(FEAT_MZSCHEME)
379 fi
380 AC_SUBST(MZSCHEME_SRC)
381 AC_SUBST(MZSCHEME_OBJ)
382 AC_SUBST(MZSCHEME_PRO)
383 AC_SUBST(MZSCHEME_LIBS)
384 AC_SUBST(MZSCHEME_CFLAGS)
385fi
386
387
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388AC_MSG_CHECKING(--enable-perlinterp argument)
389AC_ARG_ENABLE(perlinterp,
390 [ --enable-perlinterp Include Perl interpreter.], ,
391 [enable_perlinterp="no"])
392AC_MSG_RESULT($enable_perlinterp)
393if test "$enable_perlinterp" = "yes"; then
394 AC_SUBST(vi_cv_path_perl)
395 AC_PATH_PROG(vi_cv_path_perl, perl)
396 if test "X$vi_cv_path_perl" != "X"; then
397 AC_MSG_CHECKING(Perl version)
398 if $vi_cv_path_perl -e 'require 5.003_01' >/dev/null 2>/dev/null; then
399 eval `$vi_cv_path_perl -V:usethreads`
400 if test "X$usethreads" = "XUNKNOWN" -o "X$usethreads" = "Xundef"; then
401 badthreads=no
402 else
403 if $vi_cv_path_perl -e 'require 5.6.0' >/dev/null 2>/dev/null; then
404 eval `$vi_cv_path_perl -V:use5005threads`
405 if test "X$use5005threads" = "XUNKNOWN" -o "X$use5005threads" = "Xundef"; then
406 badthreads=no
407 else
408 badthreads=yes
409 AC_MSG_RESULT(>>> Perl > 5.6 with 5.5 threads cannot be used <<<)
410 fi
411 else
412 badthreads=yes
413 AC_MSG_RESULT(>>> Perl 5.5 with threads cannot be used <<<)
414 fi
415 fi
416 if test $badthreads = no; then
417 AC_MSG_RESULT(OK)
418 eval `$vi_cv_path_perl -V:shrpenv`
419 if test "X$shrpenv" = "XUNKNOWN"; then # pre 5.003_04
420 shrpenv=""
421 fi
422 vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
423 AC_SUBST(vi_cv_perllib)
424 dnl Remove "-fno-something", it breaks using cproto.
425 perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
426 -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[[^ ]]*//'`
427 dnl Remove "-lc", it breaks on FreeBSD when using "-pthread".
428 perllibs=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed -e 'ldopts' | \
429 sed -e '/Warning/d' -e '/Note (probably harmless)/d' \
430 -e 's/-bE:perl.exp//' -e 's/-lc //'`
431 dnl Don't add perl lib to $LIBS: if it's not in LD_LIBRARY_PATH
432 dnl a test in configure may fail because of that.
433 perlldflags=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed \
434 -e 'ccdlflags' | sed -e 's/-bE:perl.exp//'`
435
436 dnl check that compiling a simple program still works with the flags
437 dnl added for Perl.
438 AC_MSG_CHECKING([if compile and link flags for Perl are sane])
439 cflags_save=$CFLAGS
440 libs_save=$LIBS
441 ldflags_save=$LDFLAGS
442 CFLAGS="$CFLAGS $perlcppflags"
443 LIBS="$LIBS $perllibs"
444 LDFLAGS="$perlldflags $LDFLAGS"
445 AC_TRY_LINK(,[ ],
446 AC_MSG_RESULT(yes); perl_ok=yes,
447 AC_MSG_RESULT(no: PERL DISABLED); perl_ok=no)
448 CFLAGS=$cflags_save
449 LIBS=$libs_save
450 LDFLAGS=$ldflags_save
451 if test $perl_ok = yes; then
452 if test "X$perlcppflags" != "X"; then
453 PERL_CFLAGS="$perlcppflags"
454 fi
455 if test "X$perlldflags" != "X"; then
456 LDFLAGS="$perlldflags $LDFLAGS"
457 fi
458 PERL_LIBS=$perllibs
459 PERL_SRC="auto/if_perl.c if_perlsfio.c"
460 PERL_OBJ="objects/if_perl.o objects/if_perlsfio.o"
461 PERL_PRO="if_perl.pro if_perlsfio.pro"
462 AC_DEFINE(FEAT_PERL)
463 fi
464 fi
465 else
466 AC_MSG_RESULT(>>> too old; need Perl version 5.003_01 or later <<<)
467 fi
468 fi
469
470 if test "x$MACOSX" = "xyes"; then
471 dnl Mac OS X 10.2 or 10.3
472 dir=/System/Library/Perl
473 darwindir=$dir/darwin
474 if test -d $darwindir; then
475 PERL=/usr/bin/perl
476 else
477 dnl Mac OS X 10.3
478 dir=/System/Library/Perl/5.8.1
479 darwindir=$dir/darwin-thread-multi-2level
480 if test -d $darwindir; then
481 PERL=/usr/bin/perl
482 fi
483 fi
484 if test -n "$PERL"; then
485 PERL_DIR="$dir"
486 PERL_CFLAGS="-DFEAT_PERL -I$darwindir/CORE"
487 PERL_OBJ="objects/if_perl.o objects/if_perlsfio.o $darwindir/auto/DynaLoader/DynaLoader.a"
488 PERL_LIBS="-L$darwindir/CORE -lperl"
489 fi
490 fi
491fi
492AC_SUBST(shrpenv)
493AC_SUBST(PERL_SRC)
494AC_SUBST(PERL_OBJ)
495AC_SUBST(PERL_PRO)
496AC_SUBST(PERL_CFLAGS)
497AC_SUBST(PERL_LIBS)
498
499AC_MSG_CHECKING(--enable-pythoninterp argument)
500AC_ARG_ENABLE(pythoninterp,
501 [ --enable-pythoninterp Include Python interpreter.], ,
502 [enable_pythoninterp="no"])
503AC_MSG_RESULT($enable_pythoninterp)
504if test "$enable_pythoninterp" = "yes"; then
505 dnl -- find the python executable
506 AC_PATH_PROG(vi_cv_path_python, python)
507 if test "X$vi_cv_path_python" != "X"; then
508
509 dnl -- get its version number
510 AC_CACHE_CHECK(Python version,vi_cv_var_python_version,
511 [[vi_cv_var_python_version=`
512 ${vi_cv_path_python} -c 'import sys; print sys.version[:3]'`
513 ]])
514
515 dnl -- it must be at least version 1.4
516 AC_MSG_CHECKING(Python is 1.4 or better)
517 if ${vi_cv_path_python} -c \
518 "import sys; sys.exit(${vi_cv_var_python_version} < 1.4)"
519 then
520 AC_MSG_RESULT(yep)
521
522 dnl -- find where python thinks it was installed
523 AC_CACHE_CHECK(Python's install prefix,vi_cv_path_python_pfx,
524 [ vi_cv_path_python_pfx=`
525 ${vi_cv_path_python} -c \
526 "import sys; print sys.prefix"` ])
527
528 dnl -- and where it thinks it runs
529 AC_CACHE_CHECK(Python's execution prefix,vi_cv_path_python_epfx,
530 [ vi_cv_path_python_epfx=`
531 ${vi_cv_path_python} -c \
532 "import sys; print sys.exec_prefix"` ])
533
534 dnl -- python's internal library path
535
536 AC_CACHE_VAL(vi_cv_path_pythonpath,
537 [ vi_cv_path_pythonpath=`
538 unset PYTHONPATH;
539 ${vi_cv_path_python} -c \
540 "import sys, string; print string.join(sys.path,':')"` ])
541
542 dnl -- where the Python implementation library archives are
543
544 AC_ARG_WITH(python-config-dir,
545 [ --with-python-config-dir=PATH Python's config directory],
546 [ vi_cv_path_python_conf="${withval}" ] )
547
548 AC_CACHE_CHECK(Python's configuration directory,vi_cv_path_python_conf,
549 [
550 vi_cv_path_python_conf=
551 for path in "${vi_cv_path_python_pfx}" "${vi_cv_path_python_epfx}"; do
552 for subdir in lib share; do
553 d="${path}/${subdir}/python${vi_cv_var_python_version}/config"
554 if test -d "$d" && test -f "$d/config.c"; then
555 vi_cv_path_python_conf="$d"
556 fi
557 done
558 done
559 ])
560
561 PYTHON_CONFDIR="${vi_cv_path_python_conf}"
562
563 if test "X$PYTHON_CONFDIR" = "X"; then
564 AC_MSG_RESULT([can't find it!])
565 else
566
567 dnl -- we need to examine Python's config/Makefile too
568 dnl see what the interpreter is built from
569 AC_CACHE_VAL(vi_cv_path_python_plibs,
570 [
571 tmp_mkf="/tmp/Makefile-conf$$"
572 cat ${PYTHON_CONFDIR}/Makefile - <<'eof' >${tmp_mkf}
573__:
574 @echo "python_MODLIBS='$(MODLIBS)'"
575 @echo "python_LIBS='$(LIBS)'"
576 @echo "python_SYSLIBS='$(SYSLIBS)'"
577 @echo "python_LINKFORSHARED='$(LINKFORSHARED)'"
578eof
579 dnl -- delete the lines from make about Entering/Leaving directory
580 eval "`cd ${PYTHON_CONFDIR} && make -f ${tmp_mkf} __ | sed '/ directory /d'`"
581 rm -f ${tmp_mkf}
582 if test "x$MACOSX" = "xyes" && ${vi_cv_path_python} -c \
583 "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then
584 vi_cv_path_python_plibs="-framework Python"
585 else
586 if test "${vi_cv_var_python_version}" = "1.4"; then
587 vi_cv_path_python_plibs="${PYTHON_CONFDIR}/libModules.a ${PYTHON_CONFDIR}/libPython.a ${PYTHON_CONFDIR}/libObjects.a ${PYTHON_CONFDIR}/libParser.a"
588 else
589 vi_cv_path_python_plibs="-L${PYTHON_CONFDIR} -lpython${vi_cv_var_python_version}"
590 fi
591 vi_cv_path_python_plibs="${vi_cv_path_python_plibs} ${python_MODLIBS} ${python_LIBS} ${python_SYSLIBS} ${python_LINKFORSHARED}"
592 dnl remove -ltermcap, it can conflict with an earlier -lncurses
593 vi_cv_path_python_plibs=`echo $vi_cv_path_python_plibs | sed s/-ltermcap//`
594 fi
595 ])
596
597 PYTHON_LIBS="${vi_cv_path_python_plibs}"
598 if test "${vi_cv_path_python_pfx}" = "${vi_cv_path_python_epfx}"; then
599 PYTHON_CFLAGS="-I${vi_cv_path_python_pfx}/include/python${vi_cv_var_python_version}"
600 else
601 PYTHON_CFLAGS="-I${vi_cv_path_python_pfx}/include/python${vi_cv_var_python_version} -I${vi_cv_path_python_epfx}/include/python${vi_cv_var_python_version}"
602 fi
603 PYTHON_SRC="if_python.c"
604 dnl For Mac OSX 10.2 config.o is included in the Python library.
605 if test "x$MACOSX" = "xyes"; then
606 PYTHON_OBJ="objects/if_python.o"
607 else
608 PYTHON_OBJ="objects/if_python.o objects/py_config.o"
609 fi
610 if test "${vi_cv_var_python_version}" = "1.4"; then
611 PYTHON_OBJ="$PYTHON_OBJ objects/py_getpath.o"
612 fi
613 PYTHON_GETPATH_CFLAGS="-DPYTHONPATH='\"${vi_cv_path_pythonpath}\"' -DPREFIX='\"${vi_cv_path_python_pfx}\"' -DEXEC_PREFIX='\"${vi_cv_path_python_epfx}\"'"
614
615 dnl On FreeBSD linking with "-pthread" is required to use threads.
616 dnl _THREAD_SAFE must be used for compiling then.
617 dnl The "-pthread" is added to $LIBS, so that the following check for
618 dnl sigaltstack() will look in libc_r (it's there in libc!).
619 dnl Otherwise, when using GCC, try adding -pthread to $CFLAGS. GCC
620 dnl will then define target-specific defines, e.g., -D_REENTRANT.
621 dnl Don't do this for Mac OSX, -pthread will generate a warning.
622 AC_MSG_CHECKING([if -pthread should be used])
623 threadsafe_flag=
624 thread_lib=
625 if test "x$MACOSX" != "xyes"; then
626 test "$GCC" = yes && threadsafe_flag="-pthread"
627 if test "`(uname) 2>/dev/null`" = FreeBSD; then
628 threadsafe_flag="-D_THREAD_SAFE"
629 thread_lib="-pthread"
630 fi
631 fi
632 libs_save_old=$LIBS
633 if test -n "$threadsafe_flag"; then
634 cflags_save=$CFLAGS
635 CFLAGS="$CFLAGS $threadsafe_flag"
636 LIBS="$LIBS $thread_lib"
637 AC_TRY_LINK(,[ ],
638 AC_MSG_RESULT(yes); PYTHON_CFLAGS="$PYTHON_CFLAGS $threadsafe_flag",
639 AC_MSG_RESULT(no); LIBS=$libs_save_old
640 )
641 CFLAGS=$cflags_save
642 else
643 AC_MSG_RESULT(no)
644 fi
645
646 dnl check that compiling a simple program still works with the flags
647 dnl added for Python.
648 AC_MSG_CHECKING([if compile and link flags for Python are sane])
649 cflags_save=$CFLAGS
650 libs_save=$LIBS
651 CFLAGS="$CFLAGS $PYTHON_CFLAGS"
652 LIBS="$LIBS $PYTHON_LIBS"
653 AC_TRY_LINK(,[ ],
654 AC_MSG_RESULT(yes); python_ok=yes,
655 AC_MSG_RESULT(no: PYTHON DISABLED); python_ok=no)
656 CFLAGS=$cflags_save
657 LIBS=$libs_save
658 if test $python_ok = yes; then
659 AC_DEFINE(FEAT_PYTHON)
660 else
661 LIBS=$libs_save_old
662 PYTHON_SRC=
663 PYTHON_OBJ=
664 PYTHON_LIBS=
665 PYTHON_CFLAGS=
666 fi
667
668 fi
669 else
670 AC_MSG_RESULT(too old)
671 fi
672 fi
673fi
674AC_SUBST(PYTHON_CONFDIR)
675AC_SUBST(PYTHON_LIBS)
676AC_SUBST(PYTHON_GETPATH_CFLAGS)
677AC_SUBST(PYTHON_CFLAGS)
678AC_SUBST(PYTHON_SRC)
679AC_SUBST(PYTHON_OBJ)
680
681AC_MSG_CHECKING(--enable-tclinterp argument)
682AC_ARG_ENABLE(tclinterp,
683 [ --enable-tclinterp Include Tcl interpreter.], ,
684 [enable_tclinterp="no"])
685AC_MSG_RESULT($enable_tclinterp)
686
687if test "$enable_tclinterp" = "yes"; then
688
689 dnl on FreeBSD tclsh is a silly script, look for tclsh8.0 or tclsh8.2
690 AC_MSG_CHECKING(--with-tclsh argument)
691 AC_ARG_WITH(tclsh, [ --with-tclsh=PATH which tclsh to use (default: tclsh8.0)],
692 tclsh_name="$withval"; AC_MSG_RESULT($tclsh_name),
693 tclsh_name="tclsh8.0"; AC_MSG_RESULT(no))
694 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
695 AC_SUBST(vi_cv_path_tcl)
696
697 dnl when no specific version specified, also try 8.2
698 if test "X$vi_cv_path_tcl" = "X" -a $tclsh_name = "tclsh8.0"; then
699 tclsh_name="tclsh8.2"
700 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
701 fi
702 dnl still didn't find it, try without version number
703 if test "X$vi_cv_path_tcl" = "X"; then
704 tclsh_name="tclsh"
705 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
706 fi
707 if test "X$vi_cv_path_tcl" != "X"; then
708 AC_MSG_CHECKING(Tcl version)
709 if echo 'exit [[expr [info tclversion] < 8.0]]' | $vi_cv_path_tcl - ; then
710 tclver=`echo 'puts [[info tclversion]]' | $vi_cv_path_tcl -`
711 AC_MSG_RESULT($tclver - OK);
712 tclloc=`echo 'set l [[info library]];set i [[string last lib $l]];incr i -2;puts [[string range $l 0 $i]]' | $vi_cv_path_tcl -`
713
714 AC_MSG_CHECKING(for location of Tcl include)
715 if test "x$MACOSX" != "xyes"; then
716 tclinc="$tclloc/include $tclloc/include/tcl $tclloc/include/tcl$tclver /usr/local/include"
717 else
718 dnl For Mac OS X 10.3, use the OS-provided framework location
719 tclinc="/System/Library/Frameworks/Tcl.framework/Headers"
720 fi
721 for try in $tclinc; do
722 if test -f "$try/tcl.h"; then
723 AC_MSG_RESULT($try/tcl.h)
724 TCL_INC=$try
725 break
726 fi
727 done
728 if test -z "$TCL_INC"; then
729 AC_MSG_RESULT(<not found>)
730 SKIP_TCL=YES
731 fi
732 if test -z "$SKIP_TCL"; then
733 AC_MSG_CHECKING(for location of tclConfig.sh script)
734 if test "x$MACOSX" != "xyes"; then
735 tclcnf=`echo $tclinc | sed s/include/lib/g`
736 else
737 dnl For Mac OS X 10.3, use the OS-provided framework location
738 tclcnf="/System/Library/Frameworks/Tcl.framework"
739 fi
740 for try in $tclcnf; do
741 if test -f $try/tclConfig.sh; then
742 AC_MSG_RESULT($try/tclConfig.sh)
743 . $try/tclConfig.sh
744 dnl use eval, because tcl 8.2 includes ${TCL_DBGX}
745 TCL_LIBS=`eval echo "$TCL_LIB_SPEC $TCL_LIBS"`
746 dnl Use $TCL_DEFS for -D_THREAD_SAFE et al. But only use the
747 dnl "-D_ABC" items.
748 TCL_DEFS=`echo $TCL_DEFS | tr ' ' '\012' | sed -e '/^-[[^D]]/d' -e '/-D[[^_]]/d' -e 's/-D_/ -D_/' | tr -d '\012'`
749 break
750 fi
751 done
752 if test -z "$TCL_LIBS"; then
753 AC_MSG_RESULT(<not found>)
754 AC_MSG_CHECKING(for Tcl library by myself)
755 tcllib=`echo $tclinc | sed s/include/lib/g`
756 for ext in .so .a ; do
757 for ver in "" $tclver ; do
758 for try in $tcllib ; do
759 trylib=tcl$ver$ext
760 if test -f $try/lib$trylib ; then
761 AC_MSG_RESULT($try/lib$trylib)
762 TCL_LIBS="-L$try -ltcl$ver -ldl -lm"
763 if test "`(uname) 2>/dev/null`" = SunOS &&
764 uname -r | grep '^5' >/dev/null; then
765 TCL_LIBS="$TCL_LIBS -R $try"
766 fi
767 break 3
768 fi
769 done
770 done
771 done
772 if test -z "$TCL_LIBS"; then
773 AC_MSG_RESULT(<not found>)
774 SKIP_TCL=YES
775 fi
776 fi
777 if test -z "$SKIP_TCL"; then
778 AC_DEFINE(FEAT_TCL)
779 TCL_SRC=if_tcl.c
780 TCL_OBJ=objects/if_tcl.o
781 TCL_PRO=if_tcl.pro
782 TCL_CFLAGS="-I$TCL_INC $TCL_DEFS"
783 fi
784 fi
785 else
786 AC_MSG_RESULT(too old; need Tcl version 8.0 or later)
787 fi
788 fi
789fi
790AC_SUBST(TCL_SRC)
791AC_SUBST(TCL_OBJ)
792AC_SUBST(TCL_PRO)
793AC_SUBST(TCL_CFLAGS)
794AC_SUBST(TCL_LIBS)
795
796AC_MSG_CHECKING(--enable-rubyinterp argument)
797AC_ARG_ENABLE(rubyinterp,
798 [ --enable-rubyinterp Include Ruby interpreter.], ,
799 [enable_rubyinterp="no"])
800AC_MSG_RESULT($enable_rubyinterp)
801if test "$enable_rubyinterp" = "yes"; then
802 AC_SUBST(vi_cv_path_ruby)
803 AC_PATH_PROG(vi_cv_path_ruby, ruby)
804 if test "X$vi_cv_path_ruby" != "X"; then
805 AC_MSG_CHECKING(Ruby version)
806 if $vi_cv_path_ruby -e 'VERSION >= "1.6.0" or exit 1' >/dev/null 2>/dev/null; then
807 AC_MSG_RESULT(OK)
808 AC_MSG_CHECKING(Ruby header files)
809 rubyhdrdir=`$vi_cv_path_ruby -r mkmf -e 'print Config::CONFIG[["archdir"]] || $hdrdir' 2>/dev/null`
810 if test "X$rubyhdrdir" != "X"; then
811 AC_MSG_RESULT($rubyhdrdir)
812 RUBY_CFLAGS="-I$rubyhdrdir"
813 rubylibs=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG[["LIBS"]]'`
814 if test "X$rubylibs" != "X"; then
815 RUBY_LIBS="$rubylibs"
816 fi
817 librubyarg=`$vi_cv_path_ruby -r rbconfig -e 'print Config.expand(Config::CONFIG[["LIBRUBYARG"]])'`
818 if test -f "$rubyhdrdir/$librubyarg"; then
819 librubyarg="$rubyhdrdir/$librubyarg"
820 else
821 rubylibdir=`$vi_cv_path_ruby -r rbconfig -e 'print Config.expand(Config::CONFIG[["libdir"]])'`
822 if test -f "$rubylibdir/$librubyarg"; then
823 librubyarg="$rubylibdir/$librubyarg"
824 elif test "$librubyarg" = "libruby.a"; then
825 dnl required on Mac OS 10.3 where libruby.a doesn't exist
826 librubyarg="-lruby"
827 else
828 librubyarg=`$vi_cv_path_ruby -r rbconfig -e "print '$librubyarg'.gsub(/-L\./, %'-L#{Config.expand(Config::CONFIG[\"libdir\"])}')"`
829 fi
830 fi
831
832 if test "X$librubyarg" != "X"; then
833 RUBY_LIBS="$librubyarg $RUBY_LIBS"
834 fi
835 rubyldflags=`$vi_cv_path_ruby -r rbconfig -e 'print Config::CONFIG[["LDFLAGS"]]'`
836 if test "X$rubyldflags" != "X"; then
837 LDFLAGS="$rubyldflags $LDFLAGS"
838 fi
839 RUBY_SRC="if_ruby.c"
840 RUBY_OBJ="objects/if_ruby.o"
841 RUBY_PRO="if_ruby.pro"
842 AC_DEFINE(FEAT_RUBY)
843 else
844 AC_MSG_RESULT(not found, disabling Ruby)
845 fi
846 else
847 AC_MSG_RESULT(too old; need Ruby version 1.6.0 or later)
848 fi
849 fi
850fi
851AC_SUBST(RUBY_SRC)
852AC_SUBST(RUBY_OBJ)
853AC_SUBST(RUBY_PRO)
854AC_SUBST(RUBY_CFLAGS)
855AC_SUBST(RUBY_LIBS)
856
857AC_MSG_CHECKING(--enable-cscope argument)
858AC_ARG_ENABLE(cscope,
859 [ --enable-cscope Include cscope interface.], ,
860 [enable_cscope="no"])
861AC_MSG_RESULT($enable_cscope)
862if test "$enable_cscope" = "yes"; then
863 AC_DEFINE(FEAT_CSCOPE)
864fi
865
866AC_MSG_CHECKING(--enable-workshop argument)
867AC_ARG_ENABLE(workshop,
868 [ --enable-workshop Include Sun Visual Workshop support.], ,
869 [enable_workshop="no"])
870AC_MSG_RESULT($enable_workshop)
871if test "$enable_workshop" = "yes"; then
872 AC_DEFINE(FEAT_SUN_WORKSHOP)
873 WORKSHOP_SRC="workshop.c integration.c"
874 AC_SUBST(WORKSHOP_SRC)
875 WORKSHOP_OBJ="objects/workshop.o objects/integration.o"
876 AC_SUBST(WORKSHOP_OBJ)
877 if test "${enable_gui-xxx}" = xxx; then
878 enable_gui=motif
879 fi
880fi
881
882AC_MSG_CHECKING(--disable-netbeans argument)
883AC_ARG_ENABLE(netbeans,
884 [ --disable-netbeans Disable NetBeans integration support.],
885 , [enable_netbeans="yes"])
886if test "$enable_netbeans" = "yes"; then
887 AC_MSG_RESULT(no)
888 dnl On Solaris we need the socket and nsl library.
889 AC_CHECK_LIB(socket, socket)
890 AC_CHECK_LIB(nsl, gethostbyname)
891 AC_MSG_CHECKING(whether compiling netbeans integration is possible)
892 AC_TRY_LINK([
893#include <stdio.h>
894#include <stdlib.h>
895#include <stdarg.h>
896#include <fcntl.h>
897#include <netdb.h>
898#include <netinet/in.h>
899#include <errno.h>
900#include <sys/types.h>
901#include <sys/socket.h>
902 /* Check bitfields */
903 struct nbbuf {
904 unsigned int initDone:1;
905 ushort signmaplen;
906 };
907 ], [
908 /* Check creating a socket. */
909 struct sockaddr_in server;
910 (void)socket(AF_INET, SOCK_STREAM, 0);
911 (void)htons(100);
912 (void)gethostbyname("microsoft.com");
913 if (errno == ECONNREFUSED)
914 (void)connect(1, (struct sockaddr *)&server, sizeof(server));
915 ],
916 AC_MSG_RESULT(yes),
917 AC_MSG_RESULT(no); enable_netbeans="no")
918else
919 AC_MSG_RESULT(yes)
920fi
921if test "$enable_netbeans" = "yes"; then
922 AC_DEFINE(FEAT_NETBEANS_INTG)
923 NETBEANS_SRC="netbeans.c"
924 AC_SUBST(NETBEANS_SRC)
925 NETBEANS_OBJ="objects/netbeans.o"
926 AC_SUBST(NETBEANS_OBJ)
927fi
928
929AC_MSG_CHECKING(--enable-sniff argument)
930AC_ARG_ENABLE(sniff,
931 [ --enable-sniff Include Sniff interface.], ,
932 [enable_sniff="no"])
933AC_MSG_RESULT($enable_sniff)
934if test "$enable_sniff" = "yes"; then
935 AC_DEFINE(FEAT_SNIFF)
936 SNIFF_SRC="if_sniff.c"
937 AC_SUBST(SNIFF_SRC)
938 SNIFF_OBJ="objects/if_sniff.o"
939 AC_SUBST(SNIFF_OBJ)
940fi
941
942AC_MSG_CHECKING(--enable-multibyte argument)
943AC_ARG_ENABLE(multibyte,
944 [ --enable-multibyte Include multibyte editing support.], ,
945 [enable_multibyte="no"])
946AC_MSG_RESULT($enable_multibyte)
947if test "$enable_multibyte" = "yes"; then
948 AC_DEFINE(FEAT_MBYTE)
949fi
950
951AC_MSG_CHECKING(--enable-hangulinput argument)
952AC_ARG_ENABLE(hangulinput,
953 [ --enable-hangulinput Include Hangul input support.], ,
954 [enable_hangulinput="no"])
955AC_MSG_RESULT($enable_hangulinput)
956
957AC_MSG_CHECKING(--enable-xim argument)
958AC_ARG_ENABLE(xim,
959 [ --enable-xim Include XIM input support.],
960 AC_MSG_RESULT($enable_xim),
961 [enable_xim="auto"; AC_MSG_RESULT(defaulting to auto)])
962dnl defining FEAT_XIM is delayed, so that it can be disabled for older GTK
963
964AC_MSG_CHECKING(--enable-fontset argument)
965AC_ARG_ENABLE(fontset,
966 [ --enable-fontset Include X fontset output support.], ,
967 [enable_fontset="no"])
968AC_MSG_RESULT($enable_fontset)
969dnl defining FEAT_XFONTSET is delayed, so that it can be disabled for no GUI
970
971test -z "$with_x" && with_x=yes
972test "${enable_gui-yes}" != no -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && with_x=yes
973if test "$with_x" = no; then
974 AC_MSG_RESULT(defaulting to: don't HAVE_X11)
975else
976 dnl Do this check early, so that its failure can override user requests.
977
978 AC_PATH_PROG(xmkmfpath, xmkmf)
979
980 AC_PATH_XTRA
981
982 dnl On OS390Unix the X libraries are DLLs. To use them the code must
983 dnl be compiled with a special option.
984 dnl Also add SM, ICE and Xmu to X_EXTRA_LIBS.
985 if test "$OS390Unix" = "yes"; then
986 CFLAGS="$CFLAGS -W c,dll"
987 LDFLAGS="$LDFLAGS -W l,dll"
988 X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE -lXmu"
989 fi
990
991 dnl On my HPUX system the X include dir is found, but the lib dir not.
992 dnl This is a desparate try to fix this.
993
994 if test -d "$x_includes" && test ! -d "$x_libraries"; then
995 x_libraries=`echo "$x_includes" | sed s/include/lib/`
996 AC_MSG_RESULT(Corrected X libraries to $x_libraries)
997 X_LIBS="$X_LIBS -L$x_libraries"
998 if test "`(uname) 2>/dev/null`" = SunOS &&
999 uname -r | grep '^5' >/dev/null; then
1000 X_LIBS="$X_LIBS -R $x_libraries"
1001 fi
1002 fi
1003
1004 if test -d "$x_libraries" && test ! -d "$x_includes"; then
1005 x_includes=`echo "$x_libraries" | sed s/lib/include/`
1006 AC_MSG_RESULT(Corrected X includes to $x_includes)
1007 X_CFLAGS="$X_CFLAGS -I$x_includes"
1008 fi
1009
1010 dnl Remove "-I/usr/include " from X_CFLAGS, should not be needed.
1011 X_CFLAGS="`echo $X_CFLAGS\ | sed 's%-I/usr/include %%'`"
1012 dnl Remove "-L/usr/lib " from X_LIBS, should not be needed.
1013 X_LIBS="`echo $X_LIBS\ | sed 's%-L/usr/lib %%'`"
1014 dnl Same for "-R/usr/lib ".
1015 X_LIBS="`echo $X_LIBS\ | sed -e 's%-R/usr/lib %%' -e 's%-R /usr/lib %%'`"
1016
1017
1018 dnl Check if the X11 header files are correctly installed. On some systems
1019 dnl Xlib.h includes files that don't exist
1020 AC_MSG_CHECKING(if X11 header files can be found)
1021 cflags_save=$CFLAGS
1022 CFLAGS="$CFLAGS $X_CFLAGS"
1023 AC_TRY_COMPILE([#include <X11/Xlib.h>], ,
1024 AC_MSG_RESULT(yes),
1025 AC_MSG_RESULT(no); no_x=yes)
1026 CFLAGS=$cflags_save
1027
1028 if test "${no_x-no}" = yes; then
1029 with_x=no
1030 else
1031 AC_DEFINE(HAVE_X11)
1032 X_LIB="-lXt -lX11";
1033 AC_SUBST(X_LIB)
1034
1035 ac_save_LDFLAGS="$LDFLAGS"
1036 LDFLAGS="-L$x_libraries $LDFLAGS"
1037
1038 dnl Check for -lXdmcp (needed on SunOS 4.1.4)
1039 dnl For HP-UX 10.20 it must be before -lSM -lICE
1040 AC_CHECK_LIB(Xdmcp, _XdmcpAuthDoIt, [X_EXTRA_LIBS="$X_EXTRA_LIBS -lXdmcp"],,
1041 [-lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS -lXdmcp])
1042
1043 dnl Some systems need -lnsl -lsocket when testing for ICE.
1044 dnl The check above doesn't do this, try here (again). Also needed to get
1045 dnl them after Xdmcp. link.sh will remove them when not needed.
1046 dnl Check for other function than above to avoid the cached value
1047 AC_CHECK_LIB(ICE, IceOpenConnection,
1048 [X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE"],, [$X_EXTRA_LIBS])
1049
1050 dnl Check for -lXpm (needed for some versions of Motif)
1051 LDFLAGS="$X_LIBS $ac_save_LDFLAGS"
1052 AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData, [X_PRE_LIBS="$X_PRE_LIBS -lXpm"],,
1053 [-lXt $X_PRE_LIBS -lXpm -lX11 $X_EXTRA_LIBS])
1054
1055 dnl Check that the X11 header files don't use implicit declarations
1056 AC_MSG_CHECKING(if X11 header files implicitly declare return values)
1057 cflags_save=$CFLAGS
1058 CFLAGS="$CFLAGS $X_CFLAGS -Werror"
1059 AC_TRY_COMPILE([#include <X11/Xlib.h>], ,
1060 AC_MSG_RESULT(no),
1061 CFLAGS="$CFLAGS -Wno-implicit-int"
1062 AC_TRY_COMPILE([#include <X11/Xlib.h>], ,
1063 AC_MSG_RESULT(yes); cflags_save="$cflags_save -Wno-implicit-int",
1064 AC_MSG_RESULT(test failed)
1065 )
1066 )
1067 CFLAGS=$cflags_save
1068
1069 LDFLAGS="$ac_save_LDFLAGS"
1070
1071 fi
1072fi
1073
1074test "x$with_x" = xno -a "x$BEOS" != "xyes" -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && enable_gui=no
1075
1076AC_MSG_CHECKING(--enable-gui argument)
1077AC_ARG_ENABLE(gui,
Bram Moolenaar843ee412004-06-30 16:16:41 +00001078 [ --enable-gui[=OPTS] X11 GUI [default=auto] [OPTS=auto/no/gtk/gtk2/gnome/gnome2/kde/motif/athena/neXtaw/beos/photon/carbon]], , enable_gui="auto")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079
1080dnl Canonicalize the --enable-gui= argument so that it can be easily compared.
1081dnl Do not use character classes for portability with old tools.
1082enable_gui_canon=`echo "_$enable_gui" | \
1083 sed 's/[[ _+-]]//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
1084
1085dnl Skip everything by default.
1086SKIP_GTK=YES
1087SKIP_GTK2=YES
1088SKIP_GNOME=YES
Bram Moolenaar592e0a22004-07-03 16:05:59 +00001089SKIP_KDE=YES
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090SKIP_MOTIF=YES
1091SKIP_ATHENA=YES
1092SKIP_NEXTAW=YES
1093SKIP_PHOTON=YES
1094SKIP_BEOS=YES
1095SKIP_CARBON=YES
1096GUITYPE=NONE
1097
1098if test "x$BEOS" = "xyes"; then
1099 SKIP_BEOS=
1100 case "$enable_gui_canon" in
1101 no) AC_MSG_RESULT(no GUI support)
1102 SKIP_BEOS=YES ;;
1103 yes|"") AC_MSG_RESULT(yes - automatic GUI support) ;;
1104 auto) AC_MSG_RESULT(auto - automatic GUI support) ;;
1105 beos) AC_MSG_RESULT(BeOS GUI support) ;;
1106 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported])
1107 SKIP_BEOS=YES ;;
1108 esac
1109
1110elif test "x$QNX" = "xyes" -a "x$with_x" = "xno" ; then
1111 SKIP_PHOTON=
1112 case "$enable_gui_canon" in
1113 no) AC_MSG_RESULT(no GUI support)
1114 SKIP_PHOTON=YES ;;
1115 yes|"") AC_MSG_RESULT(yes - automatic GUI support) ;;
1116 auto) AC_MSG_RESULT(auto - automatic GUI support) ;;
1117 photon) AC_MSG_RESULT(Photon GUI support) ;;
1118 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported])
1119 SKIP_PHOTON=YES ;;
1120 esac
1121
1122elif test "x$MACOSX" = "xyes" -a "x$with_x" = "xno" ; then
1123 SKIP_CARBON=
1124 case "$enable_gui_canon" in
1125 no) AC_MSG_RESULT(no GUI support)
1126 SKIP_CARBON=YES ;;
1127 yes|"") AC_MSG_RESULT(yes - automatic GUI support) ;;
1128 auto) AC_MSG_RESULT(auto - automatic GUI support) ;;
1129 carbon) AC_MSG_RESULT(Carbon GUI support) ;;
1130 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported])
1131 SKIP_CARBON=YES ;;
1132 esac
1133
1134else
1135
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 case "$enable_gui_canon" in
1137 no|none) AC_MSG_RESULT(no GUI support) ;;
1138 yes|""|auto) AC_MSG_RESULT(yes/auto - automatic GUI support)
1139 SKIP_GTK=
1140 SKIP_GTK2=
1141 SKIP_GNOME=
1142 SKIP_MOTIF=
1143 SKIP_ATHENA=
1144 SKIP_NEXTAW=
1145 SKIP_CARBON=;;
Bram Moolenaar843ee412004-06-30 16:16:41 +00001146 kde|Kde|KDE) AC_MSG_RESULT(KDE 2.x or 3.x GUI support)
1147 SKIP_KDE=;;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 gtk) AC_MSG_RESULT(GTK+ 1.x GUI support)
1149 SKIP_GTK=;;
1150 gtk2) AC_MSG_RESULT(GTK+ 2.x GUI support)
1151 SKIP_GTK=
1152 SKIP_GTK2=;;
1153 gnome) AC_MSG_RESULT(GNOME 1.x GUI support)
1154 SKIP_GNOME=
1155 SKIP_GTK=;;
1156 gnome2) AC_MSG_RESULT(GNOME 2.x GUI support)
1157 SKIP_GNOME=
1158 SKIP_GTK=
1159 SKIP_GTK2=;;
1160 motif) AC_MSG_RESULT(Motif GUI support)
1161 SKIP_MOTIF=;;
1162 athena) AC_MSG_RESULT(Athena GUI support)
1163 SKIP_ATHENA=;;
1164 nextaw) AC_MSG_RESULT(neXtaw GUI support)
1165 SKIP_NEXTAW=;;
1166 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported]) ;;
1167 esac
1168
1169fi
1170
Bram Moolenaar843ee412004-06-30 16:16:41 +00001171if test "x$SKIP_KDE" != "xYES" -a "$enable_gui_canon" != "kde"; then
1172 AC_MSG_CHECKING(whether or not to look for KDE)
1173 AC_ARG_ENABLE(kde-check,
1174 [ --enable-kde-check If auto-select GUI, check for KDE [default=no]],
1175 ,enable_kde_check="no")
1176 AC_MSG_RESULT($enable_kde_check);
1177 if test "x$enable_kde_check" = "xno"; then
1178 SKIP_KDE=YES
1179 fi
1180fi
1181
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182if test "x$SKIP_GTK" != "xYES" -a "$enable_gui_canon" != "gtk" -a "$enable_gui_canon" != "gtk2"; then
1183 AC_MSG_CHECKING(whether or not to look for GTK)
1184 AC_ARG_ENABLE(gtk-check,
1185 [ --enable-gtk-check If auto-select GUI, check for GTK [default=yes]],
1186 , enable_gtk_check="yes")
1187 AC_MSG_RESULT($enable_gtk_check)
1188 if test "x$enable_gtk_check" = "xno"; then
1189 SKIP_GTK=YES
1190 SKIP_GNOME=YES
1191 fi
1192fi
1193
1194if test "x$SKIP_GTK2" != "xYES" -a "$enable_gui_canon" != "gtk2" \
1195 -a "$enable_gui_canon" != "gnome2"; then
1196 AC_MSG_CHECKING(whether or not to look for GTK+ 2)
1197 AC_ARG_ENABLE(gtk2-check,
1198 [ --enable-gtk2-check If GTK GUI, check for GTK+ 2 [default=yes]],
1199 , enable_gtk2_check="yes")
1200 AC_MSG_RESULT($enable_gtk2_check)
1201 if test "x$enable_gtk2_check" = "xno"; then
1202 SKIP_GTK2=YES
1203 fi
1204fi
1205
1206if test "x$SKIP_GNOME" != "xYES" -a "$enable_gui_canon" != "gnome" \
1207 -a "$enable_gui_canon" != "gnome2"; then
1208 AC_MSG_CHECKING(whether or not to look for GNOME)
1209 AC_ARG_ENABLE(gnome-check,
1210 [ --enable-gnome-check If GTK GUI, check for GNOME [default=no]],
1211 , enable_gnome_check="no")
1212 AC_MSG_RESULT($enable_gnome_check)
1213 if test "x$enable_gnome_check" = "xno"; then
1214 SKIP_GNOME=YES
1215 fi
1216fi
1217
1218if test "x$SKIP_MOTIF" != "xYES" -a "$enable_gui_canon" != "motif"; then
1219 AC_MSG_CHECKING(whether or not to look for Motif)
1220 AC_ARG_ENABLE(motif-check,
1221 [ --enable-motif-check If auto-select GUI, check for Motif [default=yes]],
1222 , enable_motif_check="yes")
1223 AC_MSG_RESULT($enable_motif_check)
1224 if test "x$enable_motif_check" = "xno"; then
1225 SKIP_MOTIF=YES
1226 fi
1227fi
1228
1229if test "x$SKIP_ATHENA" != "xYES" -a "$enable_gui_canon" != "athena"; then
1230 AC_MSG_CHECKING(whether or not to look for Athena)
1231 AC_ARG_ENABLE(athena-check,
1232 [ --enable-athena-check If auto-select GUI, check for Athena [default=yes]],
1233 , enable_athena_check="yes")
1234 AC_MSG_RESULT($enable_athena_check)
1235 if test "x$enable_athena_check" = "xno"; then
1236 SKIP_ATHENA=YES
1237 fi
1238fi
1239
1240if test "x$SKIP_NEXTAW" != "xYES" -a "$enable_gui_canon" != "nextaw"; then
1241 AC_MSG_CHECKING(whether or not to look for neXtaw)
1242 AC_ARG_ENABLE(nextaw-check,
1243 [ --enable-nextaw-check If auto-select GUI, check for neXtaw [default=yes]],
1244 , enable_nextaw_check="yes")
1245 AC_MSG_RESULT($enable_nextaw_check);
1246 if test "x$enable_nextaw_check" = "xno"; then
1247 SKIP_NEXTAW=YES
1248 fi
1249fi
1250
1251if test "x$SKIP_CARBON" != "xYES" -a "$enable_gui_canon" != "carbon"; then
1252 AC_MSG_CHECKING(whether or not to look for Carbon)
1253 AC_ARG_ENABLE(carbon-check,
1254 [ --enable-carbon-check If auto-select GUI, check for Carbon [default=yes]],
1255 , enable_carbon_check="yes")
1256 AC_MSG_RESULT($enable_carbon_check);
1257 if test "x$enable_carbon_check" = "xno"; then
1258 SKIP_CARBON=YES
1259 fi
1260fi
1261
Bram Moolenaar843ee412004-06-30 16:16:41 +00001262dnl ---------------------------------------------------------------------------
1263dnl we use the kde-config script included in KDE since 2.x to check which
1264dnl version of KDE, we'll use. We'll use additional args in configure to
1265dnl obtain the QT directory (includes and libs) as qt does not give any
1266dnl config script ! (shame on the trolls ! ;p)
1267dnl ---------------------------------------------------------------------------
1268
1269if test -z "$SKIP_KDE"; then
1270dnl ------------------
1271dnl now, take care of QT
1272dnl -----------------
1273AC_ARG_WITH(qt-dir,
1274 [ --with-qt-dir=DIR Specify prefix of QT files],
1275 [
1276 ROOTQT="$withval"
1277 MOC="$withval"/bin/moc
1278 QT_INCLUDES="$withval"/include
1279 QT_LIBS="$withval"/lib
1280 ])
1281
1282if test "x$ROOTQT" = "x"; then
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001283 if test -z "$QTDIR"; then
1284 dnl Find the Qt directory by looking for the "moc" program.
1285 dnl It's better than nothing.
1286 AC_PATH_PROG(MOC, moc, no)
1287 if test "x$MOC" = "xno"; then
1288 AC_MSG_ERROR(could not find Qt directory)
1289 else
1290 ROOTQT=`echo $MOC | sed 's+/bin/moc++'`
1291 fi
1292 else
1293 ROOTQT="$QTDIR"
1294 fi
Bram Moolenaar843ee412004-06-30 16:16:41 +00001295fi
1296MOC="$ROOTQT"/bin/moc
1297QT_INCLUDES="$ROOTQT"/include
1298QT_LIBS="$ROOTQT"/lib
1299
1300AC_ARG_WITH(qt-includes,
1301 [ --with-qt-includes=DIR Specify location of Qt headers],
1302 [QT_INCLUDES="$withval"]
1303 )
1304
1305AC_ARG_WITH(qt-libraries,
1306 [ --with-qt-libs=DIR Specify location of Qt libraries],
1307 [QT_LIBS="$withval"]
1308 )
1309
1310if test "x$QT_LIBS" = "x" ; then
1311 QT_LIBS="$ROOTQT"/lib
1312fi
1313if test "x$QT_INCLUDES" = "x" ; then
1314 QT_INCLUDES="$ROOTQT"/include
1315fi
1316dnl we should get QT's version from here and compare with what kde-config
1317dnl says
1318
1319AC_MSG_CHECKING(whether or not to use a KDE Toolbar in KVim)
1320AC_ARG_ENABLE(kde-toolbar,
1321 [ --enable-kde-toolbar if KDE GUI is selected, enable a KDE-look toolbar [default=no]],
1322 , enable_kde_toolbar="no")
1323if test "x$enable_kde_toolbar" != "xno"; then
1324 AC_DEFINE(FEAT_KDETOOLBAR)
1325fi
1326AC_MSG_RESULT($enable_kde_toolbar);
1327fi
1328
1329dnl -------------------
1330dnl so, first, look up at the kde-config script
1331dnl ------------------
1332
1333if test -z "$SKIP_KDE"; then
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001334AC_DEFUN([AC_FIND_FILE],
1335[
1336 $3=NO
1337 for i in $2;
1338 do
1339 for j in $1;
1340 do
1341 echo "configure: __oline__: $i/$j" >&AC_FD_CC
1342 if test -r "$i/$j"; then
1343 echo "taking that" >&AC_FD_CC
1344 $3=$i
1345 break 2
1346 fi
1347 done
1348 done
1349])
1350
Bram Moolenaar843ee412004-06-30 16:16:41 +00001351AC_DEFUN(AM_PATH_KDE,
1352[
1353 if test "X$KDE_CONFIG" != "X"; then
1354 min_kde_version=ifelse([$1], ,2.0,[$1])
1355 AC_MSG_CHECKING(for KDE version >= $min_kde_version)
1356 no_kde=""
1357 if test "$KDE_CONFIG" = "no" ; then
1358 no_kde=yes
1359 else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001360 KDE_PREFIX=`$KDE_CONFIG --prefix`
Bram Moolenaar843ee412004-06-30 16:16:41 +00001361 if test "x$KDE_LIBS" = "x"; then
1362 KDE_LIBS="$KDE_PREFIX/lib"
1363 fi
1364 if test "x$KDE_INCLUDES" = "x"; then
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001365 KDE_INCLUDES="$KDE_PREFIX/include"
1366 if test -d "$KDE_INCLUDES/kde"; then
1367 KDE_INCLUDES="$KDE_INCLUDES/kde"
1368 fi
Bram Moolenaar843ee412004-06-30 16:16:41 +00001369 fi
1370 kde_major_version=`$KDE_CONFIG --version | grep KDE | \
1371sed 's/KDE:\ //' | sed 's/\([[0-9]]*\).\([[0-9]]*.*\)/\1/'`
1372 kde_minor_version=`$KDE_CONFIG --version | grep KDE | \
1373sed 's/KDE:\ //' | sed 's/\([[0-9]]*\).\([[0-9]]*.*\)/\2/'`
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001374
Bram Moolenaar843ee412004-06-30 16:16:41 +00001375 qt_major_version=`$KDE_CONFIG --version | grep Qt | sed -e \
1376's/Qt:\ //' | sed 's/\([[0-9]]*\).\([[0-9]]*.*\)/\1/'`
1377 qt_minor_version=`$KDE_CONFIG --version | grep Qt | sed -e \
1378's/Qt:\ //' | sed 's/\([[0-9]]*\).\([[0-9]]*.*\)/\2/'`
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001379
Bram Moolenaar843ee412004-06-30 16:16:41 +00001380 dnl maybe in a near future we'll get these ones : QT_PREFIX, QT_LIBS,
1381 dnl QT_INCLUDES
1382 dnl but for now we need configure options to get them ...
1383 if test "x$enable-kdetest" = "xyes" ; then
1384 ac_save_LIBS="$LIBS"
1385 LIBS="$LIBS $KDE_LIBS"
1386
1387 dnl fake test
1388 AC_TRY_RUN([
1389#include <stdio.h>
1390int
1391main()
1392{ return 0; }
1393 ],, no_kde=yes,[echo $ac_n "cross compiling KDE ? ? how can i remove that ? :)"])
1394 LIBS="$ac_save_LIBS"
1395 fi
1396 fi
1397 if test "x$no_kde" = x ; then
1398 AC_MSG_RESULT(found KDE $kde_major_version.$kde_minor_version)
1399 ifelse([$2], , :, [$2])
1400 else
1401 AC_MSG_RESULT(no)
1402 KDE_LIBS=""
1403 ifelse([$3], , :, [$3])
1404 fi
1405else
1406 AC_MSG_RESULT(no)
1407 KDE_LIBS=""
1408 ifelse([$3], , :, [$3])
1409fi
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001410
Bram Moolenaar843ee412004-06-30 16:16:41 +00001411AC_SUBST(KDE_LIBS)
1412AC_SUBST(KDE_INCLUDES)
1413AC_SUBST(KDE_PREFIX)
1414])
1415
1416dnl Check all the KDE stuff
1417AC_MSG_CHECKING(--disable-rpath argument)
1418AC_ARG_ENABLE(rpath,
1419 [ --disable-rpath Disable rpath.],
1420 , enable_rpath="yes")
1421if test "$enable_rpath" = "yes"; then
1422 AC_MSG_RESULT(no)
1423else
1424 AC_MSG_RESULT(yes)
1425fi
1426
1427AC_MSG_CHECKING(--with-kde-prefix argument)
1428AC_ARG_WITH(kde-prefix,[ --with-kde-prefix=PFX Prefix where KDE is installed (optional)],kde_config_prefix="$withval";
1429AC_MSG_RESULT($kde_config_prefix), kde_config_prefix="";AC_MSG_RESULT(no))
1430
1431AC_ARG_WITH(kde-includes,
1432 [ --with-kde-includes=DIR Specify location of KDE headers],
1433 [KDE_INCLUDES="$withval"]
1434 )
1435
1436AC_ARG_WITH(kde-libraries,
1437 [ --with-kde-libs=DIR Specify location of KDE libraries],
1438 [KDE_LIBS="$withval"]
1439 )
1440
1441AC_MSG_CHECKING(--disable-kdetest argument)
1442AC_ARG_ENABLE(kdetest,
1443 [ --disable-kdetest Do not try to compile and run a test KDE program],
1444 enable_kdetest=yes)
1445
1446if test "x$enable_kdetest" = "xyes" ; then
1447 AC_MSG_RESULT(kde test enabled)
1448else
1449 AC_MSG_RESULT(kde test disabled)
1450fi
1451
1452if test "x$kde_config_prefix" != "x" ; then
Bram Moolenaar843ee412004-06-30 16:16:41 +00001453 KDE_CONFIG=$kde_config_prefix/bin/kde-config
1454fi
1455
1456if test "X$KDE_CONFIG" = "X"; then
1457 AC_PATH_PROG(KDE_CONFIG, kde-config, no)
1458else
1459 AC_MSG_RESULT(Using KDE configuration program $KDE_CONFIG)
1460fi
1461
1462if test "X$KDE_CONFIG" != "X" ; then
1463 AM_PATH_KDE(2.0.0,
1464 [GUI_LIB_LOC="-L$KDE_LIBS -lkdeui -lkdecore -lDCOP"
1465 GUI_INC_LOC="-I$KDE_INCLUDES"
1466 KDEDIR="$KDE_PREFIX"], )
1467 if test "x$KDE_PREFIX" != "x"; then
1468 AC_MSG_CHECKING(for QT version $qt_major_version.x)
1469 if test "x$ROOTQT" != "x" ; then
1470 GUI_INC_LOC="-I$QT_INCLUDES $GUI_INC_LOC"
1471 if test $qt_major_version -lt 2; then
1472 AC_MSG_ERROR(Your QT version is prior to 2.0; KDE 2.x and 3.x require at least QT 2)
1473 fi
1474 dnl hack for FreeBSD
1475 if test "`(uname) 2>/dev/null`" = "FreeBSD"; then
1476 CFLAGS="$CFLAGS -D_THREAD_SAFE"
1477 CXXFLAGS="$CXXFLAGS -D_THREAD_SAFE"
1478 GUI_LIB_LOC="$GUI_LIB_LOC -pthread"
1479 LIBS="$LIBS -pthread"
1480 fi
1481
1482 dnl check the version
1483 if test "x$enable_rpath" = "xyes"; then
1484 if test $qt_major_version = 2; then
1485 GUI_LIB_LOC="-L$KDE_LIBS -lkfile -L$QT_LIBS -lqt $GUI_LIB_LOC \
1486-Wl,--rpath -Wl,$KDE_LIBS -Wl,--rpath -Wl,$QT_LIBS"
1487 else
1488 GUI_LIB_LOC="-L$KDE_LIBS -lkio -L$QT_LIBS -lqt-mt $GUI_LIB_LOC \
1489-Wl,--rpath -Wl,$KDE_LIBS -Wl,--rpath -Wl,$QT_LIBS"
1490 fi
1491 else
1492 if test $qt_major_version = 2; then
1493 GUI_LIB_LOC="-L$KDE_LIBS -lkfile -L$QT_LIBS -lqt $GUI_LIB_LOC"
1494 else
1495 GUI_LIB_LOC="-L$KDE_LIBS -lkio -L$QT_LIBS -lqt-mt $GUI_LIB_LOC"
1496 fi
1497 fi
1498
1499 dnl Remove "-I/usr/include " from GUI_*
1500 GUI_INC_LOC="`echo $GUI_INC_LOC\ | sed 's%-I/usr/include %%'`"
1501dnl GUI_LIB_LOC="`echo $GUI_LIB_LOC\ | sed 's% -L/usr/lib%%'`"
1502
1503 AC_MSG_RESULT(found $qt_major_version.$qt_minor_version in $ROOTQT)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001504
1505 dnl now check the results ...
1506 dnl find the Qt's headers ?
1507 AC_FIND_FILE(qstyle.h,$QT_INCLUDES,qt_incdir)
1508 if test "x$qt_incdir" = "xNO"; then
1509 AC_MSG_ERROR(Could not find Qt headers in $QT_INCLUDES)
1510 fi
1511 AC_FIND_FILE(kapplication.h,$KDE_INCLUDES,kde_incdir)
1512 if test "x$kde_incdir" = "xNO"; then
1513 AC_MSG_ERROR(Could not find KDE headers in $KDE_INCLUDES)
1514 fi
1515
1516 AC_LANG_SAVE
1517 AC_LANG_CPLUSPLUS
1518 ac_save_LIBS="$LIBS"
1519 LIBS="$GUI_LIB_LOC"
1520 ac_save_CXXFLAGS="$CXXFLAGS"
1521 CXXFLAGS="$CXXFLAGS $GUI_INC_LOC"
1522 AC_MSG_CHECKING(whether Qt libraries are usable)
1523 AC_TRY_LINK(
1524 [#include <qapplication.h>],
1525 [
1526 int argc;
1527 char** argv;
1528 QApplication app(argc, argv);]
1529 ,AC_MSG_RESULT(yes),AC_MSG_RESULT(no);AC_MSG_ERROR(Qt fails to link a simple application, check your installation and settings))
1530
1531 AC_MSG_CHECKING(whether KDE libraries are usable)
1532 AC_TRY_LINK(
1533 [#include <kapplication.h>],
1534 [
1535 int argc;
1536 char** argv;
1537 KApplication app(argc, argv);]
1538 ,AC_MSG_RESULT(yes),AC_MSG_RESULT(no);AC_MSG_ERROR(KDE fails to link a simple application, check your installation and settings))
1539
1540 LIBS="$ac_save_LIBS"
1541 CXXFLAGS="$ac_save_CXXFLAGS"
1542 AC_LANG_RESTORE
1543
1544
Bram Moolenaar843ee412004-06-30 16:16:41 +00001545 SKIP_GTK=YES
1546 SKIP_ATHENA=YES
1547 SKIP_MOTIF=YES
1548 GUITYPE=KDE
1549 AC_SUBST(KDE_PREFIX)
1550 AC_SUBST(QT_LIBS)
1551 AC_SUBST(QT_INCLUDES)
1552 AC_SUBST(ROOTQT)
1553 AC_SUBST(MOC)
1554 AC_DEFINE(FEAT_GUI_KDE)
1555 else
1556 AC_MSG_ERROR(Detected QT version mismatched)
1557 fi
1558 else
1559 AC_MSG_ERROR(Could not find KDE installation prefix)
1560 fi
1561fi
1562fi
1563
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564if test "x$MACOSX" = "xyes" -a -z "$SKIP_CARBON" -a "x$CARBON" = "xyes"; then
1565 AC_MSG_CHECKING(for Carbon GUI)
1566 dnl already did this
1567 AC_MSG_RESULT(yes);
1568 GUITYPE=CARBONGUI
1569 dnl skip everything else
1570 SKIP_GTK=YES;
1571 SKIP_GTK2=YES;
1572 SKIP_GNOME=YES;
1573 SKIP_MOTIF=YES;
1574 SKIP_ATHENA=YES;
1575 SKIP_NEXTAW=YES;
1576 SKIP_PHOTON=YES;
1577 SKIP_BEOS=YES;
1578 SKIP_CARBON=YES
1579fi
1580
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581dnl
1582dnl Get the cflags and libraries from the gtk-config script
1583dnl
1584
1585dnl define an autoconf function to check for a specified version of GTK, and
1586dnl try to compile/link a GTK program. this gets used once for GTK 1.1.16.
1587dnl
1588dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
1589dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS
1590dnl
1591AC_DEFUN(AM_PATH_GTK,
1592[
1593 if test "X$GTK_CONFIG" != "Xno" -o "X$PKG_CONFIG" != "Xno"; then
1594 {
1595 min_gtk_version=ifelse([$1], ,0.99.7,$1)
1596 AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
1597 no_gtk=""
1598 if (test "X$SKIP_GTK2" != "XYES" -a "X$PKG_CONFIG" != "Xno") \
1599 && $PKG_CONFIG --exists gtk+-2.0; then
1600 {
1601 dnl We should be using PKG_CHECK_MODULES() instead of this hack.
1602 dnl But I guess the dependency on pkgconfig.m4 is not wanted or
1603 dnl something like that.
1604 GTK_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0`
1605 GTK_LIBS=`$PKG_CONFIG --libs gtk+-2.0`
1606 gtk_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
1607 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
1608 gtk_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
1609 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
1610 gtk_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
1611 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
1612 }
1613 elif test "X$GTK_CONFIG" != "Xno"; then
1614 {
1615 GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags`
1616 GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs`
1617 gtk_major_version=`$GTK_CONFIG $gtk_config_args --version | \
1618 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
1619 gtk_minor_version=`$GTK_CONFIG $gtk_config_args --version | \
1620 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
1621 gtk_micro_version=`$GTK_CONFIG $gtk_config_args --version | \
1622 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
1623 }
1624 else
1625 no_gtk=yes
1626 fi
1627
1628 if test "x$enable_gtktest" = "xyes" -a "x$no_gtk" = "x"; then
1629 {
1630 ac_save_CFLAGS="$CFLAGS"
1631 ac_save_LIBS="$LIBS"
1632 CFLAGS="$CFLAGS $GTK_CFLAGS"
1633 LIBS="$LIBS $GTK_LIBS"
1634
1635 dnl
1636 dnl Now check if the installed GTK is sufficiently new. (Also sanity
1637 dnl checks the results of gtk-config to some extent
1638 dnl
1639 rm -f conf.gtktest
1640 AC_TRY_RUN([
1641#include <gtk/gtk.h>
1642#include <stdio.h>
1643
1644int
1645main ()
1646{
1647int major, minor, micro;
1648char *tmp_version;
1649
1650system ("touch conf.gtktest");
1651
1652/* HP/UX 9 (%@#!) writes to sscanf strings */
1653tmp_version = g_strdup("$min_gtk_version");
1654if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
1655 printf("%s, bad version string\n", "$min_gtk_version");
1656 exit(1);
1657 }
1658
1659if ((gtk_major_version > major) ||
1660 ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
1661 ((gtk_major_version == major) && (gtk_minor_version == minor) &&
1662 (gtk_micro_version >= micro)))
1663{
1664 return 0;
1665}
1666return 1;
1667}
1668],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
1669 CFLAGS="$ac_save_CFLAGS"
1670 LIBS="$ac_save_LIBS"
1671 }
1672 fi
1673 if test "x$no_gtk" = x ; then
1674 if test "x$enable_gtktest" = "xyes"; then
1675 AC_MSG_RESULT(yes; found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
1676 else
1677 AC_MSG_RESULT(found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
1678 fi
1679 ifelse([$2], , :, [$2])
1680 else
1681 {
1682 AC_MSG_RESULT(no)
1683 GTK_CFLAGS=""
1684 GTK_LIBS=""
1685 ifelse([$3], , :, [$3])
1686 }
1687 fi
1688 }
1689 else
1690 GTK_CFLAGS=""
1691 GTK_LIBS=""
1692 ifelse([$3], , :, [$3])
1693 fi
1694 AC_SUBST(GTK_CFLAGS)
1695 AC_SUBST(GTK_LIBS)
1696 rm -f conf.gtktest
1697])
1698
1699dnl ---------------------------------------------------------------------------
1700dnl gnome
1701dnl ---------------------------------------------------------------------------
1702AC_DEFUN([GNOME_INIT_HOOK],
1703[
1704 AC_SUBST(GNOME_LIBS)
1705 AC_SUBST(GNOME_LIBDIR)
1706 AC_SUBST(GNOME_INCLUDEDIR)
1707
1708 AC_ARG_WITH(gnome-includes,
1709 [ --with-gnome-includes=DIR Specify location of GNOME headers],
1710 [CFLAGS="$CFLAGS -I$withval"]
1711 )
1712
1713 AC_ARG_WITH(gnome-libs,
1714 [ --with-gnome-libs=DIR Specify location of GNOME libs],
1715 [LDFLAGS="$LDFLAGS -L$withval" gnome_prefix=$withval]
1716 )
1717
1718 AC_ARG_WITH(gnome,
1719 [ --with-gnome Specify prefix for GNOME files],
1720 if test x$withval = xyes; then
1721 want_gnome=yes
1722 ifelse([$1], [], :, [$1])
1723 else
1724 if test "x$withval" = xno; then
1725 want_gnome=no
1726 else
1727 want_gnome=yes
1728 LDFLAGS="$LDFLAGS -L$withval/lib"
1729 CFLAGS="$CFLAGS -I$withval/include"
1730 gnome_prefix=$withval/lib
1731 fi
1732 fi,
1733 want_gnome=yes)
1734
1735 if test "x$want_gnome" = xyes -a "0$gtk_major_version" -ge 2; then
1736 {
1737 AC_MSG_CHECKING(for libgnomeui-2.0)
1738 if $PKG_CONFIG --exists libgnomeui-2.0; then
1739 AC_MSG_RESULT(yes)
1740 GNOME_LIBS=`$PKG_CONFIG --libs-only-l libgnomeui-2.0`
1741 GNOME_LIBDIR=`$PKG_CONFIG --libs-only-L libgnomeui-2.0`
1742 GNOME_INCLUDEDIR=`$PKG_CONFIG --cflags libgnomeui-2.0`
1743 $1
1744 else
1745 AC_MSG_RESULT(not found)
1746 if test "x$2" = xfail; then
1747 AC_MSG_ERROR(Could not find libgnomeui-2.0 via pkg-config)
1748 fi
1749 fi
1750 }
1751 elif test "x$want_gnome" = xyes; then
1752 {
1753 AC_PATH_PROG(GNOME_CONFIG,gnome-config,no)
1754 if test "$GNOME_CONFIG" = "no"; then
1755 no_gnome_config="yes"
1756 else
1757 AC_MSG_CHECKING(if $GNOME_CONFIG works)
1758 if $GNOME_CONFIG --libs-only-l gnome >/dev/null 2>&1; then
1759 AC_MSG_RESULT(yes)
1760 GNOME_LIBS="`$GNOME_CONFIG --libs-only-l gnome gnomeui`"
1761 GNOME_LIBDIR="`$GNOME_CONFIG --libs-only-L gnorba gnomeui`"
1762 GNOME_INCLUDEDIR="`$GNOME_CONFIG --cflags gnorba gnomeui`"
1763 $1
1764 else
1765 AC_MSG_RESULT(no)
1766 no_gnome_config="yes"
1767 fi
1768 fi
1769
1770 if test x$exec_prefix = xNONE; then
1771 if test x$prefix = xNONE; then
1772 gnome_prefix=$ac_default_prefix/lib
1773 else
1774 gnome_prefix=$prefix/lib
1775 fi
1776 else
1777 gnome_prefix=`eval echo \`echo $libdir\``
1778 fi
1779
1780 if test "$no_gnome_config" = "yes"; then
1781 AC_MSG_CHECKING(for gnomeConf.sh file in $gnome_prefix)
1782 if test -f $gnome_prefix/gnomeConf.sh; then
1783 AC_MSG_RESULT(found)
1784 echo "loading gnome configuration from" \
1785 "$gnome_prefix/gnomeConf.sh"
1786 . $gnome_prefix/gnomeConf.sh
1787 $1
1788 else
1789 AC_MSG_RESULT(not found)
1790 if test x$2 = xfail; then
1791 AC_MSG_ERROR(Could not find the gnomeConf.sh file that is generated by gnome-libs install)
1792 fi
1793 fi
1794 fi
1795 }
1796 fi
1797])
1798
1799AC_DEFUN([GNOME_INIT],[
1800 GNOME_INIT_HOOK([],fail)
1801])
1802
1803
1804dnl ---------------------------------------------------------------------------
1805dnl Check for GTK. First checks for gtk-config, cause it needs that to get the
1806dnl correct compiler flags. Then checks for GTK 1.1.16. If that fails, then
1807dnl it checks for 1.0.6. If both fail, then continue on for Motif as before...
1808dnl ---------------------------------------------------------------------------
1809if test -z "$SKIP_GTK"; then
1810
1811 AC_MSG_CHECKING(--with-gtk-prefix argument)
1812 AC_ARG_WITH(gtk-prefix,[ --with-gtk-prefix=PFX Prefix where GTK is installed (optional)],
1813 gtk_config_prefix="$withval"; AC_MSG_RESULT($gtk_config_prefix),
1814 gtk_config_prefix=""; AC_MSG_RESULT(no))
1815
1816 AC_MSG_CHECKING(--with-gtk-exec-prefix argument)
1817 AC_ARG_WITH(gtk-exec-prefix,[ --with-gtk-exec-prefix=PFX Exec prefix where GTK is installed (optional)],
1818 gtk_config_exec_prefix="$withval"; AC_MSG_RESULT($gtk_config_prefix),
1819 gtk_config_exec_prefix=""; AC_MSG_RESULT(no))
1820
1821 AC_MSG_CHECKING(--disable-gtktest argument)
1822 AC_ARG_ENABLE(gtktest, [ --disable-gtktest Do not try to compile and run a test GTK program],
1823 , enable_gtktest=yes)
1824 if test "x$enable_gtktest" = "xyes" ; then
1825 AC_MSG_RESULT(gtk test enabled)
1826 else
1827 AC_MSG_RESULT(gtk test disabled)
1828 fi
1829
1830 if test "x$gtk_config_prefix" != "x" ; then
1831 gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
1832 GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
1833 fi
1834 if test "x$gtk_config_exec_prefix" != "x" ; then
1835 gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
1836 GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
1837 fi
1838 if test "X$GTK_CONFIG" = "X"; then
1839 AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
1840 if test "X$GTK_CONFIG" = "Xno"; then
1841 dnl Some distributions call it gtk12-config, annoying!
1842 AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no)
1843 GTK_CONFIG="$GTK12_CONFIG"
1844 fi
1845 else
1846 AC_MSG_RESULT(Using GTK configuration program $GTK_CONFIG)
1847 fi
1848 if test "X$PKG_CONFIG" = "X"; then
1849 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1850 fi
1851
1852 if test "x$GTK_CONFIG:$PKG_CONFIG" != "xno:no"; then
1853 dnl First try finding version 2.2.0 or later. The 2.0.x series has
1854 dnl problems (bold fonts, --remote doesn't work).
1855 if test "X$SKIP_GTK2" != "XYES"; then
1856 AM_PATH_GTK(2.2.0,
1857 [GTK_LIBNAME="$GTK_LIBS"
1858 GUI_INC_LOC="$GTK_CFLAGS"], )
1859 if test "x$GTK_CFLAGS" != "x"; then
1860 SKIP_ATHENA=YES
1861 SKIP_NEXTAW=YES
1862 SKIP_MOTIF=YES
1863 GUITYPE=GTK
1864 AC_SUBST(GTK_LIBNAME)
1865 fi
1866 fi
1867
1868 dnl If there is no 2.2.0 or later try the 1.x.x series. We require at
1869 dnl least GTK 1.1.16. 1.0.6 doesn't work. 1.1.1 to 1.1.15
1870 dnl were test versions.
1871 if test "x$GUITYPE" != "xGTK"; then
1872 SKIP_GTK2=YES
1873 AM_PATH_GTK(1.1.16,
1874 [GTK_LIBNAME="$GTK_LIBS"
1875 GUI_INC_LOC="$GTK_CFLAGS"], )
1876 if test "x$GTK_CFLAGS" != "x"; then
1877 SKIP_ATHENA=YES
1878 SKIP_NEXTAW=YES
1879 SKIP_MOTIF=YES
1880 GUITYPE=GTK
1881 AC_SUBST(GTK_LIBNAME)
1882 fi
1883 fi
1884 fi
1885 dnl Give a warning if GTK is older than 1.2.3
1886 if test "x$GUITYPE" = "xGTK"; then
1887 if test "$gtk_major_version" = 1 -a "0$gtk_minor_version" -lt 2 \
1888 -o "$gtk_major_version" = 1 -a "$gtk_minor_version" = 2 -a "0$gtk_micro_version" -lt 3; then
1889 AC_MSG_RESULT(this GTK version is old; version 1.2.3 or later is recommended)
1890 else
1891 {
1892 if test "0$gtk_major_version" -ge 2; then
1893 AC_DEFINE(HAVE_GTK2)
1894 if test "$gtk_minor_version" = 1 -a "0$gtk_micro_version" -ge 1 \
1895 || test "0$gtk_minor_version" -ge 2 \
1896 || test "0$gtk_major_version" -gt 2; then
1897 AC_DEFINE(HAVE_GTK_MULTIHEAD)
1898 fi
1899 fi
1900 dnl
1901 dnl if GTK exists, and it's not the 1.0.x series, then check for GNOME.
1902 dnl
1903 if test -z "$SKIP_GNOME"; then
1904 {
1905 GNOME_INIT_HOOK([have_gnome=yes])
1906 if test x$have_gnome = xyes ; then
1907 AC_DEFINE(FEAT_GUI_GNOME)
1908 GUI_INC_LOC="$GUI_INC_LOC $GNOME_INCLUDEDIR"
1909 GTK_LIBNAME="$GTK_LIBNAME $GNOME_LIBDIR $GNOME_LIBS"
1910 fi
1911 }
1912 fi
1913 }
1914 fi
1915 fi
1916fi
1917
1918dnl Check for Motif include files location.
1919dnl The LAST one found is used, this makes the highest version to be used,
1920dnl e.g. when Motif1.2 and Motif2.0 are both present.
1921
1922if test -z "$SKIP_MOTIF"; then
1923 gui_XXX="/usr/XXX/Motif* /usr/Motif*/XXX /usr/XXX /usr/shlib /usr/X11*/XXX /usr/XXX/X11* /usr/dt/XXX /local/Motif*/XXX /local/XXX/Motif* /usr/local/Motif*/XXX /usr/local/XXX/Motif* /usr/local/XXX /usr/local/X11*/XXX /usr/local/LessTif/Motif*/XXX $MOTIFHOME/XXX"
1924 dnl Remove "-I" from before $GUI_INC_LOC if it's there
1925 GUI_INC_LOC="`echo $GUI_INC_LOC|sed 's%-I%%g'`"
1926
1927 AC_MSG_CHECKING(for location of Motif GUI includes)
1928 gui_includes="`echo $x_includes|sed 's%/[^/][^/]*$%%'` `echo "$gui_XXX" | sed s/XXX/include/g` $GUI_INC_LOC"
1929 GUI_INC_LOC=
1930 for try in $gui_includes; do
1931 if test -f "$try/Xm/Xm.h"; then
1932 GUI_INC_LOC=$try
1933 fi
1934 done
1935 if test -n "$GUI_INC_LOC"; then
1936 if test "$GUI_INC_LOC" = /usr/include; then
1937 GUI_INC_LOC=
1938 AC_MSG_RESULT(in default path)
1939 else
1940 AC_MSG_RESULT($GUI_INC_LOC)
1941 fi
1942 else
1943 AC_MSG_RESULT(<not found>)
1944 SKIP_MOTIF=YES
1945 fi
1946fi
1947
1948dnl Check for Motif library files location. In the same order as the include
1949dnl files, to avoid a mixup if several versions are present
1950
1951if test -z "$SKIP_MOTIF"; then
1952 AC_MSG_CHECKING(--with-motif-lib argument)
1953 AC_ARG_WITH(motif-lib,
1954 [ --with-motif-lib=STRING Library for Motif ],
1955 [ MOTIF_LIBNAME="${withval}" ] )
1956
1957 if test -n "$MOTIF_LIBNAME"; then
1958 AC_MSG_RESULT($MOTIF_LIBNAME)
1959 GUI_LIB_LOC=
1960 else
1961 AC_MSG_RESULT(no)
1962
1963 dnl Remove "-L" from before $GUI_LIB_LOC if it's there
1964 GUI_LIB_LOC="`echo $GUI_LIB_LOC|sed 's%-L%%g'`"
1965
1966 AC_MSG_CHECKING(for location of Motif GUI libs)
1967 gui_libs="`echo $x_libraries|sed 's%/[^/][^/]*$%%'` `echo "$gui_XXX" | sed s/XXX/lib/g` `echo "$GUI_INC_LOC" | sed s/include/lib/` $GUI_LIB_LOC"
1968 GUI_LIB_LOC=
1969 for try in $gui_libs; do
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001970 for libtry in "$try"/libXm.a "$try"/libXm.so* "$try"/libXm.sl "$try"/libXm.dylib; do
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 if test -f "$libtry"; then
1972 GUI_LIB_LOC=$try
1973 fi
1974 done
1975 done
1976 if test -n "$GUI_LIB_LOC"; then
1977 dnl Remove /usr/lib, it causes trouble on some systems
1978 if test "$GUI_LIB_LOC" = /usr/lib; then
1979 GUI_LIB_LOC=
1980 AC_MSG_RESULT(in default path)
1981 else
1982 if test -n "$GUI_LIB_LOC"; then
1983 AC_MSG_RESULT($GUI_LIB_LOC)
1984 if test "`(uname) 2>/dev/null`" = SunOS &&
1985 uname -r | grep '^5' >/dev/null; then
1986 GUI_LIB_LOC="$GUI_LIB_LOC -R $GUI_LIB_LOC"
1987 fi
1988 fi
1989 fi
1990 MOTIF_LIBNAME=-lXm
1991 else
1992 AC_MSG_RESULT(<not found>)
1993 SKIP_MOTIF=YES
1994 fi
1995 fi
1996fi
1997
1998if test -z "$SKIP_MOTIF"; then
1999 SKIP_ATHENA=YES
2000 SKIP_NEXTAW=YES
2001 GUITYPE=MOTIF
2002 AC_SUBST(MOTIF_LIBNAME)
2003fi
2004
2005dnl Check if the Athena files can be found
2006
2007GUI_X_LIBS=
2008
2009if test -z "$SKIP_ATHENA"; then
2010 AC_MSG_CHECKING(if Athena header files can be found)
2011 cflags_save=$CFLAGS
2012 CFLAGS="$CFLAGS $X_CFLAGS"
2013 AC_TRY_COMPILE([
2014#include <X11/Intrinsic.h>
2015#include <X11/Xaw/Paned.h>], ,
2016 AC_MSG_RESULT(yes),
2017 AC_MSG_RESULT(no); SKIP_ATHENA=YES )
2018 CFLAGS=$cflags_save
2019fi
2020
2021if test -z "$SKIP_ATHENA"; then
2022 GUITYPE=ATHENA
2023fi
2024
2025if test -z "$SKIP_NEXTAW"; then
2026 AC_MSG_CHECKING(if neXtaw header files can be found)
2027 cflags_save=$CFLAGS
2028 CFLAGS="$CFLAGS $X_CFLAGS"
2029 AC_TRY_COMPILE([
2030#include <X11/Intrinsic.h>
2031#include <X11/neXtaw/Paned.h>], ,
2032 AC_MSG_RESULT(yes),
2033 AC_MSG_RESULT(no); SKIP_NEXTAW=YES )
2034 CFLAGS=$cflags_save
2035fi
2036
2037if test -z "$SKIP_NEXTAW"; then
2038 GUITYPE=NEXTAW
2039fi
2040
2041if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF"; then
2042 dnl Prepend -I and -L to $GUI_INC_LOC and $GUI_LIB_LOC if not empty
2043 dnl Avoid adding it when it twice
2044 if test -n "$GUI_INC_LOC"; then
2045 GUI_INC_LOC=-I"`echo $GUI_INC_LOC|sed 's%-I%%'`"
2046 fi
2047 if test -n "$GUI_LIB_LOC"; then
2048 GUI_LIB_LOC=-L"`echo $GUI_LIB_LOC|sed 's%-L%%'`"
2049 fi
2050
2051 dnl Check for -lXext and then for -lXmu
2052 ldflags_save=$LDFLAGS
2053 LDFLAGS="$X_LIBS $LDFLAGS"
2054 AC_CHECK_LIB(Xext, XShapeQueryExtension, [GUI_X_LIBS="-lXext"],,
2055 [-lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2056 dnl For Solaris we need -lw and -ldl before linking with -lXmu works.
2057 AC_CHECK_LIB(w, wslen, [X_EXTRA_LIBS="$X_EXTRA_LIBS -lw"],,
2058 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2059 AC_CHECK_LIB(dl, dlsym, [X_EXTRA_LIBS="$X_EXTRA_LIBS -ldl"],,
2060 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2061 AC_CHECK_LIB(Xmu, XmuCreateStippledPixmap, [GUI_X_LIBS="-lXmu $GUI_X_LIBS"],,
2062 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2063 if test -z "$SKIP_MOTIF"; then
2064 AC_CHECK_LIB(Xp, XpEndJob, [GUI_X_LIBS="-lXp $GUI_X_LIBS"],,
2065 [$GUI_X_LIBS -lXm -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2066 fi
2067 LDFLAGS=$ldflags_save
2068
2069 dnl Execute xmkmf to figure out if -DNARROWPROTO is needed.
2070 AC_MSG_CHECKING(for extra X11 defines)
2071 NARROW_PROTO=
2072 rm -fr conftestdir
2073 if mkdir conftestdir; then
2074 cd conftestdir
2075 cat > Imakefile <<'EOF'
2076acfindx:
2077 @echo 'NARROW_PROTO="${PROTO_DEFINES}"'
2078EOF
2079 if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
2080 eval `${MAKE-make} acfindx 2>/dev/null | grep -v make`
2081 fi
2082 cd ..
2083 rm -fr conftestdir
2084 fi
2085 if test -z "$NARROW_PROTO"; then
2086 AC_MSG_RESULT(no)
2087 else
2088 AC_MSG_RESULT($NARROW_PROTO)
2089 fi
2090 AC_SUBST(NARROW_PROTO)
2091fi
2092
2093dnl Look for XSMP support - but don't necessarily restrict it to X11 GUIs
2094dnl use the X11 include path
2095if test "$enable_xsmp" = "yes"; then
2096 cppflags_save=$CPPFLAGS
2097 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
2098 AC_CHECK_HEADERS(X11/SM/SMlib.h)
2099 CPPFLAGS=$cppflags_save
2100fi
2101
2102
2103if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF" -o -z "$SKIP_GTK"; then
2104 dnl Check for X11/xpm.h and X11/Sunkeysym.h with the GUI include path
2105 cppflags_save=$CPPFLAGS
2106 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
2107 AC_CHECK_HEADERS(X11/xpm.h X11/Sunkeysym.h)
2108
2109 dnl automatically disable XIM when XIMtext isn't in X11/Xlib.h
2110 if test ! "$enable_xim" = "no"; then
2111 AC_MSG_CHECKING(for XIMText in X11/Xlib.h)
2112 AC_EGREP_CPP(XIMText, [#include <X11/Xlib.h>],
2113 AC_MSG_RESULT(yes),
2114 AC_MSG_RESULT(no; xim has been disabled); enable_xim = "no")
2115 fi
2116 CPPFLAGS=$cppflags_save
2117
2118 dnl automatically enable XIM when hangul input isn't enabled
2119 if test "$enable_xim" = "auto" -a "$enable_hangulinput" != "yes" \
2120 -a "x$GUITYPE" != "xNONE" ; then
2121 AC_MSG_RESULT(X GUI selected; xim has been enabled)
2122 enable_xim="yes"
2123 fi
2124fi
2125
2126if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF"; then
2127 cppflags_save=$CPPFLAGS
2128 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
2129 AC_CHECK_HEADERS(X11/Xmu/Editres.h)
2130 CPPFLAGS=$cppflags_save
2131fi
2132
2133dnl Only use the Xm directory when compiling Motif, don't use it for Athena
2134if test -z "$SKIP_MOTIF"; then
2135 cppflags_save=$CPPFLAGS
2136 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
2137 AC_CHECK_HEADERS(Xm/Xm.h Xm/XpmP.h)
2138 CPPFLAGS=$cppflags_save
2139fi
2140
2141if test "x$GUITYPE" = "xNONE" -a "$enable_xim" = "yes"; then
2142 AC_MSG_RESULT(no GUI selected; xim has been disabled)
2143 enable_xim="no"
2144fi
2145if test "x$GUITYPE" = "xNONE" -a "$enable_fontset" = "yes"; then
2146 AC_MSG_RESULT(no GUI selected; fontset has been disabled)
2147 enable_fontset="no"
2148fi
2149if test "x$GUITYPE:$enable_fontset" = "xGTK:yes" -a "0$gtk_major_version" -ge 2; then
2150 AC_MSG_RESULT(GTK+ 2 GUI selected; fontset has been disabled)
2151 enable_fontset="no"
2152fi
2153
2154dnl There is no test for the BeOS GUI, if it's selected it's used
2155if test -z "$SKIP_BEOS"; then
2156 GUITYPE=BEOSGUI
2157fi
2158
2159if test -z "$SKIP_PHOTON"; then
2160 GUITYPE=PHOTONGUI
2161fi
2162
2163AC_SUBST(GUI_INC_LOC)
2164AC_SUBST(GUI_LIB_LOC)
2165AC_SUBST(GUITYPE)
2166AC_SUBST(GUI_X_LIBS)
2167
2168if test "$enable_workshop" = "yes" -a -n "$SKIP_MOTIF"; then
2169 AC_MSG_ERROR([cannot use workshop without Motif])
2170fi
2171
2172dnl defining FEAT_XIM and FEAT_XFONTSET is delayed, so that they can be disabled
2173if test "$enable_xim" = "yes"; then
2174 AC_DEFINE(FEAT_XIM)
2175fi
2176if test "$enable_fontset" = "yes"; then
2177 AC_DEFINE(FEAT_XFONTSET)
2178fi
2179
2180
2181dnl ---------------------------------------------------------------------------
2182dnl end of GUI-checking
2183dnl ---------------------------------------------------------------------------
2184
2185
2186dnl Only really enable hangul input when GUI and XFONTSET are available
2187if test "$enable_hangulinput" = "yes"; then
2188 if test "x$GUITYPE" = "xNONE"; then
2189 AC_MSG_RESULT(no GUI selected; hangul input has been disabled)
2190 enable_hangulinput=no
2191 else
2192 AC_DEFINE(FEAT_HANGULIN)
2193 HANGULIN_SRC=hangulin.c
2194 AC_SUBST(HANGULIN_SRC)
2195 HANGULIN_OBJ=objects/hangulin.o
2196 AC_SUBST(HANGULIN_OBJ)
2197 fi
2198fi
2199
2200dnl Checks for libraries and include files.
2201
2202AC_MSG_CHECKING(quality of toupper)
2203AC_TRY_RUN([#include <ctype.h>
2204main() { exit(toupper('A') == 'A' && tolower('z') == 'z'); }],
2205 AC_DEFINE(BROKEN_TOUPPER) AC_MSG_RESULT(bad),
2206 AC_MSG_RESULT(good), AC_MSG_ERROR(failed to compile test program))
2207
2208AC_MSG_CHECKING(whether __DATE__ and __TIME__ work)
2209AC_TRY_COMPILE(, [printf("(" __DATE__ " " __TIME__ ")");],
2210 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_DATE_TIME),
2211 AC_MSG_RESULT(no))
2212
2213dnl Checks for header files.
2214AC_CHECK_HEADER(elf.h, HAS_ELF=1)
2215dnl AC_CHECK_HEADER(dwarf.h, SVR4=1)
2216if test "$HAS_ELF" = 1; then
2217 AC_CHECK_LIB(elf, main)
2218fi
2219
2220AC_HEADER_DIRENT
2221
2222dnl check for standard headers, we don't use this in Vim but other stuff
2223dnl in autoconf needs it
2224AC_HEADER_STDC
2225AC_HEADER_SYS_WAIT
2226
2227dnl If sys/wait.h is not found it might still exist but not be POSIX
2228dnl compliant. In that case we define HAVE_UNION_WAIT (for NeXT)
2229if test $ac_cv_header_sys_wait_h = no; then
2230 AC_MSG_CHECKING([for sys/wait.h that defines union wait])
2231 AC_TRY_COMPILE([#include <sys/wait.h>],
2232 [union wait xx, yy; xx = yy],
2233 AC_MSG_RESULT(yes)
2234 AC_DEFINE(HAVE_SYS_WAIT_H)
2235 AC_DEFINE(HAVE_UNION_WAIT),
2236 AC_MSG_RESULT(no))
2237fi
2238
2239AC_CHECK_HEADERS(stdarg.h stdlib.h string.h sys/select.h sys/utsname.h \
2240 termcap.h fcntl.h sgtty.h sys/ioctl.h sys/time.h termio.h \
2241 iconv.h langinfo.h unistd.h stropts.h errno.h \
2242 sys/resource.h sys/systeminfo.h locale.h \
2243 sys/stream.h sys/ptem.h termios.h libc.h sys/statfs.h \
2244 poll.h sys/poll.h pwd.h utime.h sys/param.h libintl.h \
2245 libgen.h util/debug.h util/msg18n.h frame.h pthread_np.h \
2246 sys/acl.h sys/access.h sys/sysctl.h sys/sysinfo.h wchar.h)
2247
2248dnl On Mac OS X strings.h exists but produces a warning message :-(
2249if test "x$MACOSX" != "xyes"; then
2250 AC_CHECK_HEADERS(strings.h)
2251fi
2252
2253dnl Check if strings.h and string.h can both be included when defined.
2254AC_MSG_CHECKING([if strings.h can be included after string.h])
2255cppflags_save=$CPPFLAGS
2256CPPFLAGS="$CPPFLAGS $X_CFLAGS"
2257AC_TRY_COMPILE([
2258#if defined(_AIX) && !defined(_AIX51) && !defined(_NO_PROTO)
2259# define _NO_PROTO /* like in os_unix.h, causes conflict for AIX (Winn) */
2260 /* but don't do it on AIX 5.1 (Uribarri) */
2261#endif
2262#ifdef HAVE_XM_XM_H
2263# include <Xm/Xm.h> /* This breaks it for HP-UX 11 (Squassabia) */
2264#endif
2265#ifdef HAVE_STRING_H
2266# include <string.h>
2267#endif
2268#if defined(HAVE_STRINGS_H)
2269# include <strings.h>
2270#endif
2271 ], [int i; i = 0;],
2272 AC_MSG_RESULT(yes),
2273 AC_DEFINE(NO_STRINGS_WITH_STRING_H)
2274 AC_MSG_RESULT(no))
2275CPPFLAGS=$cppflags_save
2276
2277dnl Checks for typedefs, structures, and compiler characteristics.
2278AC_PROG_GCC_TRADITIONAL
2279AC_C_CONST
2280AC_TYPE_MODE_T
2281AC_TYPE_OFF_T
2282AC_TYPE_PID_T
2283AC_TYPE_SIZE_T
2284AC_TYPE_UID_T
2285AC_HEADER_TIME
2286AC_CHECK_TYPE(ino_t, long)
2287AC_CHECK_TYPE(dev_t, unsigned)
2288
2289AC_MSG_CHECKING(for rlim_t)
2290if eval "test \"`echo '$''{'ac_cv_type_rlim_t'+set}'`\" = set"; then
2291 AC_MSG_RESULT([(cached) $ac_cv_type_rlim_t])
2292else
2293 AC_EGREP_CPP(dnl
2294changequote(<<,>>)dnl
2295<<(^|[^a-zA-Z_0-9])rlim_t[^a-zA-Z_0-9]>>dnl
2296changequote([,]),
2297 [
2298#include <sys/types.h>
2299#if STDC_HEADERS
2300#include <stdlib.h>
2301#include <stddef.h>
2302#endif
2303#ifdef HAVE_SYS_RESOURCE_H
2304#include <sys/resource.h>
2305#endif
2306 ], ac_cv_type_rlim_t=yes, ac_cv_type_rlim_t=no)
2307 AC_MSG_RESULT($ac_cv_type_rlim_t)
2308fi
2309if test $ac_cv_type_rlim_t = no; then
2310 cat >> confdefs.h <<\EOF
2311#define rlim_t unsigned long
2312EOF
2313fi
2314
2315AC_MSG_CHECKING(for stack_t)
2316if eval "test \"`echo '$''{'ac_cv_type_stack_t'+set}'`\" = set"; then
2317 AC_MSG_RESULT([(cached) $ac_cv_type_stack_t])
2318else
2319 AC_EGREP_CPP(stack_t,
2320 [
2321#include <sys/types.h>
2322#if STDC_HEADERS
2323#include <stdlib.h>
2324#include <stddef.h>
2325#endif
2326#include <signal.h>
2327 ], ac_cv_type_stack_t=yes, ac_cv_type_stack_t=no)
2328 AC_MSG_RESULT($ac_cv_type_stack_t)
2329fi
2330if test $ac_cv_type_stack_t = no; then
2331 cat >> confdefs.h <<\EOF
2332#define stack_t struct sigaltstack
2333EOF
2334fi
2335
2336dnl BSDI uses ss_base while others use ss_sp for the stack pointer.
2337AC_MSG_CHECKING(whether stack_t has an ss_base field)
2338AC_TRY_COMPILE([
2339#include <sys/types.h>
2340#if STDC_HEADERS
2341#include <stdlib.h>
2342#include <stddef.h>
2343#endif
2344#include <signal.h>
2345#include "confdefs.h"
2346 ], [stack_t sigstk; sigstk.ss_base = 0; ],
2347 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SS_BASE),
2348 AC_MSG_RESULT(no))
2349
2350olibs="$LIBS"
2351AC_MSG_CHECKING(--with-tlib argument)
2352AC_ARG_WITH(tlib, [ --with-tlib=library terminal library to be used ],)
2353if test -n "$with_tlib"; then
2354 AC_MSG_RESULT($with_tlib)
2355 LIBS="$LIBS -l$with_tlib"
2356else
2357 AC_MSG_RESULT([automatic terminal library selection])
2358 dnl On HP-UX 10.10 termcap or termlib should be used instead of
2359 dnl curses, because curses is much slower.
2360 dnl Newer versions of ncurses are preferred over anything.
2361 dnl Older versions of ncurses have bugs, get a new one!
2362 dnl Digital Unix (OSF1) should use curses (Ronald Schild).
2363 case "`uname -s 2>/dev/null`" in
2364 OSF1) tlibs="ncurses curses termlib termcap";;
2365 *) tlibs="ncurses termlib termcap curses";;
2366 esac
2367 for libname in $tlibs; do
2368 AC_CHECK_LIB(${libname}, tgetent,,)
2369 if test "x$olibs" != "x$LIBS"; then
2370 dnl It's possible that a library is found but it doesn't work
2371 dnl e.g., shared library that cannot be found
2372 dnl compile and run a test program to be sure
2373 AC_TRY_RUN([
2374#ifdef HAVE_TERMCAP_H
2375# include <termcap.h>
2376#endif
2377main() {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(0); }],
2378 res="OK", res="FAIL", res="FAIL")
2379 if test "$res" = "OK"; then
2380 break
2381 fi
2382 AC_MSG_RESULT($libname library is not usable)
2383 LIBS="$olibs"
2384 fi
2385 done
2386fi
2387if test "x$olibs" != "x$LIBS"; then
2388 AC_MSG_CHECKING(whether we talk terminfo)
2389 AC_TRY_RUN([
2390#ifdef HAVE_TERMCAP_H
2391# include <termcap.h>
2392#endif
2393main()
2394{char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(!strcmp(s==0 ? "" : s, "1")); }],
2395 AC_MSG_RESULT([no -- we are in termcap land]),
2396 AC_MSG_RESULT([yes -- terminfo spoken here]); AC_DEFINE(TERMINFO),
2397 AC_MSG_ERROR(failed to compile test program.))
2398else
2399 AC_MSG_RESULT(none found)
2400fi
2401
2402if test "x$olibs" != "x$LIBS"; then
2403 AC_MSG_CHECKING(what tgetent() returns for an unknown terminal)
2404 AC_TRY_RUN([
2405#ifdef HAVE_TERMCAP_H
2406# include <termcap.h>
2407#endif
2408main()
2409{char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist"); exit(res != 0); }],
2410 AC_MSG_RESULT(zero); AC_DEFINE(TGETENT_ZERO_ERR, 0),
2411 AC_MSG_RESULT(non-zero),
2412 AC_MSG_ERROR(failed to compile test program.))
2413fi
2414
2415AC_MSG_CHECKING(whether termcap.h contains ospeed)
2416AC_TRY_LINK([
2417#ifdef HAVE_TERMCAP_H
2418# include <termcap.h>
2419#endif
2420 ], [ospeed = 20000],
2421 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_OSPEED),
2422 [AC_MSG_RESULT(no)
2423 AC_MSG_CHECKING(whether ospeed can be extern)
2424 AC_TRY_LINK([
2425#ifdef HAVE_TERMCAP_H
2426# include <termcap.h>
2427#endif
2428extern short ospeed;
2429 ], [ospeed = 20000],
2430 AC_MSG_RESULT(yes); AC_DEFINE(OSPEED_EXTERN),
2431 AC_MSG_RESULT(no))]
2432 )
2433
2434AC_MSG_CHECKING([whether termcap.h contains UP, BC and PC])
2435AC_TRY_LINK([
2436#ifdef HAVE_TERMCAP_H
2437# include <termcap.h>
2438#endif
2439 ], [if (UP == 0 && BC == 0) PC = 1],
2440 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_UP_BC_PC),
2441 [AC_MSG_RESULT(no)
2442 AC_MSG_CHECKING([whether UP, BC and PC can be extern])
2443 AC_TRY_LINK([
2444#ifdef HAVE_TERMCAP_H
2445# include <termcap.h>
2446#endif
2447extern char *UP, *BC, PC;
2448 ], [if (UP == 0 && BC == 0) PC = 1],
2449 AC_MSG_RESULT(yes); AC_DEFINE(UP_BC_PC_EXTERN),
2450 AC_MSG_RESULT(no))]
2451 )
2452
2453AC_MSG_CHECKING(whether tputs() uses outfuntype)
2454AC_TRY_COMPILE([
2455#ifdef HAVE_TERMCAP_H
2456# include <termcap.h>
2457#endif
2458 ], [extern int xx(); tputs("test", 1, (outfuntype)xx)],
2459 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_OUTFUNTYPE),
2460 AC_MSG_RESULT(no))
2461
2462dnl On some SCO machines sys/select redefines struct timeval
2463AC_MSG_CHECKING([whether sys/select.h and sys/time.h may both be included])
2464AC_TRY_COMPILE([
2465#include <sys/types.h>
2466#include <sys/time.h>
2467#include <sys/select.h>], ,
2468 AC_MSG_RESULT(yes)
2469 AC_DEFINE(SYS_SELECT_WITH_SYS_TIME),
2470 AC_MSG_RESULT(no))
2471
2472dnl AC_DECL_SYS_SIGLIST
2473
2474dnl Checks for pty.c (copied from screen) ==========================
2475AC_MSG_CHECKING(for /dev/ptc)
2476if test -r /dev/ptc; then
2477 AC_DEFINE(HAVE_DEV_PTC)
2478 AC_MSG_RESULT(yes)
2479else
2480 AC_MSG_RESULT(no)
2481fi
2482
2483AC_MSG_CHECKING(for SVR4 ptys)
2484if test -c /dev/ptmx ; then
2485 AC_TRY_LINK([], [ptsname(0);grantpt(0);unlockpt(0);],
2486 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SVR4_PTYS),
2487 AC_MSG_RESULT(no))
2488else
2489 AC_MSG_RESULT(no)
2490fi
2491
2492AC_MSG_CHECKING(for ptyranges)
2493if test -d /dev/ptym ; then
2494 pdir='/dev/ptym'
2495else
2496 pdir='/dev'
2497fi
2498dnl SCO uses ptyp%d
2499AC_EGREP_CPP(yes,
2500[#ifdef M_UNIX
2501 yes;
2502#endif
2503 ], ptys=`echo /dev/ptyp??`, ptys=`echo $pdir/pty??`)
2504dnl if test -c /dev/ptyp19; then
2505dnl ptys=`echo /dev/ptyp??`
2506dnl else
2507dnl ptys=`echo $pdir/pty??`
2508dnl fi
2509if test "$ptys" != "$pdir/pty??" ; then
2510 p0=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\).$/\1/g' | sort -u | tr -d '\012'`
2511 p1=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\)$/\1/g' | sort -u | tr -d '\012'`
2512 AC_DEFINE_UNQUOTED(PTYRANGE0,"$p0")
2513 AC_DEFINE_UNQUOTED(PTYRANGE1,"$p1")
2514 AC_MSG_RESULT([$p0 / $p1])
2515else
2516 AC_MSG_RESULT([don't know])
2517fi
2518
2519dnl **** pty mode/group handling ****
2520dnl
2521dnl support provided by Luke Mewburn <lm@rmit.edu.au>, 931222
2522AC_MSG_CHECKING(default tty permissions/group)
2523rm -f conftest_grp
2524AC_TRY_RUN([
2525#include <sys/types.h>
2526#include <sys/stat.h>
2527#include <stdio.h>
2528main()
2529{
2530 struct stat sb;
2531 char *x,*ttyname();
2532 int om, m;
2533 FILE *fp;
2534
2535 if (!(x = ttyname(0))) exit(1);
2536 if (stat(x, &sb)) exit(1);
2537 om = sb.st_mode;
2538 if (om & 002) exit(0);
2539 m = system("mesg y");
2540 if (m == -1 || m == 127) exit(1);
2541 if (stat(x, &sb)) exit(1);
2542 m = sb.st_mode;
2543 if (chmod(x, om)) exit(1);
2544 if (m & 002) exit(0);
2545 if (sb.st_gid == getgid()) exit(1);
2546 if (!(fp=fopen("conftest_grp", "w")))
2547 exit(1);
2548 fprintf(fp, "%d\n", sb.st_gid);
2549 fclose(fp);
2550 exit(0);
2551}
2552],[
2553 if test -f conftest_grp; then
2554 ptygrp=`cat conftest_grp`
2555 AC_MSG_RESULT([pty mode: 0620, group: $ptygrp])
2556 AC_DEFINE(PTYMODE, 0620)
2557 AC_DEFINE_UNQUOTED(PTYGROUP,$ptygrp)
2558 else
2559 AC_MSG_RESULT([ptys are world accessable])
2560 fi
2561],
2562 AC_MSG_RESULT([can't determine - assume ptys are world accessable]),
2563 AC_MSG_ERROR(failed to compile test program))
2564rm -f conftest_grp
2565
2566dnl Checks for library functions. ===================================
2567
2568AC_TYPE_SIGNAL
2569
2570dnl find out what to use at the end of a signal function
2571if test $ac_cv_type_signal = void; then
2572 AC_DEFINE(SIGRETURN, [return])
2573else
2574 AC_DEFINE(SIGRETURN, [return 0])
2575fi
2576
2577dnl check if struct sigcontext is defined (used for SGI only)
2578AC_MSG_CHECKING(for struct sigcontext)
2579AC_TRY_COMPILE([
2580#include <signal.h>
2581test_sig()
2582{
2583 struct sigcontext *scont;
2584 scont = (struct sigcontext *)0;
2585 return 1;
2586} ], ,
2587 AC_MSG_RESULT(yes)
2588 AC_DEFINE(HAVE_SIGCONTEXT),
2589 AC_MSG_RESULT(no))
2590
2591dnl tricky stuff: try to find out if getcwd() is implemented with
2592dnl system("sh -c pwd")
2593AC_MSG_CHECKING(getcwd implementation)
2594AC_TRY_RUN([
2595char *dagger[] = { "IFS=pwd", 0 };
2596main()
2597{
2598 char buffer[500];
2599 extern char **environ;
2600 environ = dagger;
2601 return getcwd(buffer, 500) ? 0 : 1;
2602}],
2603 AC_MSG_RESULT(it is usable),
2604 AC_MSG_RESULT(it stinks)
2605 AC_DEFINE(BAD_GETCWD),
2606 AC_MSG_ERROR(failed to compile test program))
2607
2608dnl Check for functions in one big call, to reduce the size of configure
2609AC_CHECK_FUNCS(bcmp fchdir fchown fseeko fsync ftello getcwd getpseudotty \
2610 getpwnam getpwuid getrlimit gettimeofday getwd lstat memcmp \
2611 memset nanosleep opendir putenv qsort readlink select setenv \
2612 setpgid setsid sigaltstack sigstack sigset sigsetjmp sigaction \
2613 sigvec snprintf strcasecmp strerror strftime stricmp strncasecmp \
2614 strnicmp strpbrk strtol tgetent towlower towupper usleep utime utimes)
2615
2616dnl fstatfs() can take 2 to 4 arguments, try to use st_blksize if possible
2617AC_MSG_CHECKING(for st_blksize)
2618AC_TRY_COMPILE(
2619[#include <sys/types.h>
2620#include <sys/stat.h>],
2621[ struct stat st;
2622 int n;
2623
2624 stat("/", &st);
2625 n = (int)st.st_blksize;],
2626 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ST_BLKSIZE),
2627 AC_MSG_RESULT(no))
2628
2629AC_MSG_CHECKING(whether stat() ignores a trailing slash)
2630AC_TRY_RUN(
2631[#include <sys/types.h>
2632#include <sys/stat.h>
2633main() {struct stat st; exit(stat("configure/", &st) != 0); }],
2634 AC_MSG_RESULT(yes); AC_DEFINE(STAT_IGNORES_SLASH),
2635 AC_MSG_RESULT(no), AC_MSG_ERROR(failed to compile test program))
2636
2637dnl Link with iconv for charset translation, if not found without library.
2638dnl check for iconv() requires including iconv.h
2639dnl Add "-liconv" when possible; Solaris has iconv but use GNU iconv when it
2640dnl has been installed.
2641AC_MSG_CHECKING(for iconv_open())
2642save_LIBS="$LIBS"
2643LIBS="$LIBS -liconv"
2644AC_TRY_LINK([
2645#ifdef HAVE_ICONV_H
2646# include <iconv.h>
2647#endif
2648 ], [iconv_open("fr", "to");],
2649 AC_MSG_RESULT(yes; with -liconv); AC_DEFINE(HAVE_ICONV),
2650 LIBS="$save_LIBS"
2651 AC_TRY_LINK([
2652#ifdef HAVE_ICONV_H
2653# include <iconv.h>
2654#endif
2655 ], [iconv_open("fr", "to");],
2656 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ICONV),
2657 AC_MSG_RESULT(no)))
2658
2659
2660AC_MSG_CHECKING(for nl_langinfo(CODESET))
2661AC_TRY_LINK([
2662#ifdef HAVE_LANGINFO_H
2663# include <langinfo.h>
2664#endif
2665], [char *cs = nl_langinfo(CODESET);],
2666 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_NL_LANGINFO_CODESET),
2667 AC_MSG_RESULT(no))
2668
2669dnl Link with -lposix1e for ACL stuff; if not found, try -lacl for SGI
2670dnl when -lacl works, also try to use -lattr (required for Debian).
2671AC_MSG_CHECKING(--disable-acl argument)
2672AC_ARG_ENABLE(acl,
2673 [ --disable-acl Don't check for ACL support.],
2674 , [enable_acl="yes"])
2675if test "$enable_acl" = "yes"; then
2676AC_MSG_RESULT(no)
2677AC_CHECK_LIB(posix1e, acl_get_file, [LIBS="$LIBS -lposix1e"],
2678 AC_CHECK_LIB(acl, acl_get_file, [LIBS="$LIBS -lacl"
2679 AC_CHECK_LIB(attr, fgetxattr, LIBS="$LIBS -lattr",,)],,),)
2680
2681AC_MSG_CHECKING(for POSIX ACL support)
2682AC_TRY_LINK([
2683#include <sys/types.h>
2684#ifdef HAVE_SYS_ACL_H
2685# include <sys/acl.h>
2686#endif
2687acl_t acl;], [acl = acl_get_file("foo", ACL_TYPE_ACCESS);
2688 acl_set_file("foo", ACL_TYPE_ACCESS, acl);
2689 acl_free(acl);],
2690 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_POSIX_ACL),
2691 AC_MSG_RESULT(no))
2692
2693AC_MSG_CHECKING(for Solaris ACL support)
2694AC_TRY_LINK([
2695#ifdef HAVE_SYS_ACL_H
2696# include <sys/acl.h>
2697#endif], [acl("foo", GETACLCNT, 0, NULL);
2698 ],
2699 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SOLARIS_ACL),
2700 AC_MSG_RESULT(no))
2701
2702AC_MSG_CHECKING(for AIX ACL support)
2703AC_TRY_LINK([
2704#ifdef HAVE_SYS_ACL_H
2705# include <sys/acl.h>
2706#endif
2707#ifdef HAVE_SYS_ACCESS_H
2708# include <sys/access.h>
2709#endif
2710#define _ALL_SOURCE
2711
2712#include <sys/stat.h>
2713
2714int aclsize;
2715struct acl *aclent;], [aclsize = sizeof(struct acl);
2716 aclent = (void *)malloc(aclsize);
2717 statacl("foo", STX_NORMAL, aclent, aclsize);
2718 ],
2719 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_AIX_ACL),
2720 AC_MSG_RESULT(no))
2721else
2722 AC_MSG_RESULT(yes)
2723fi
2724
2725AC_MSG_CHECKING(--disable-gpm argument)
2726AC_ARG_ENABLE(gpm,
2727 [ --disable-gpm Don't use gpm (Linux mouse daemon).], ,
2728 [enable_gpm="yes"])
2729
2730if test "$enable_gpm" = "yes"; then
2731 AC_MSG_RESULT(no)
2732 dnl Checking if gpm support can be compiled
2733 AC_CACHE_CHECK([for gpm], vi_cv_have_gpm,
2734 [olibs="$LIBS" ; LIBS="-lgpm"]
2735 AC_TRY_LINK(
2736 [#include <gpm.h>
2737 #include <linux/keyboard.h>],
2738 [Gpm_GetLibVersion(NULL);],
2739 dnl Configure defines HAVE_GPM, if it is defined feature.h defines
2740 dnl FEAT_MOUSE_GPM if mouse support is included
2741 [vi_cv_have_gpm=yes],
2742 [vi_cv_have_gpm=no])
2743 [LIBS="$olibs"]
2744 )
2745 if test $vi_cv_have_gpm = yes; then
2746 LIBS="$LIBS -lgpm"
2747 AC_DEFINE(HAVE_GPM)
2748 fi
2749else
2750 AC_MSG_RESULT(yes)
2751fi
2752
2753AC_MSG_CHECKING(for vsnprintf())
2754AC_TRY_RUN([
2755#include <stdio.h>
2756#include <stdarg.h>
2757 /* Check use of vsnprintf() */
2758 void warn(char *fmt, ...);
2759 void warn(char *fmt, ...)
2760 {
2761 va_list ap; char buf[20];
2762 va_start(ap, fmt);
2763 vsnprintf(buf, 20, fmt, ap);
2764 va_end(ap);
2765 }
2766 main()
2767 {
2768 warn("testing %s\n", "a very long string that won't fit");
2769 exit(0);
2770 }
2771 ],
2772 AC_DEFINE(HAVE_VSNPRINTF) AC_MSG_RESULT(yes),
2773 AC_MSG_RESULT(no),
2774 AC_MSG_ERROR(failed to compile test program))
2775
2776
2777dnl rename needs to be checked separately to work on Nextstep with cc
2778AC_MSG_CHECKING(for rename)
2779AC_TRY_LINK([#include <stdio.h>], [rename("this", "that")],
2780 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_RENAME),
2781 AC_MSG_RESULT(no))
2782
2783dnl sysctl() may exist but not the arguments we use
2784AC_MSG_CHECKING(for sysctl)
2785AC_TRY_COMPILE(
2786[#include <sys/types.h>
2787#include <sys/sysctl.h>],
2788[ int mib[2], r;
2789 size_t len;
2790
2791 mib[0] = CTL_HW;
2792 mib[1] = HW_USERMEM;
2793 len = sizeof(r);
2794 (void)sysctl(mib, 2, &r, &len, (void *)0, (size_t)0);
2795 ],
2796 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSCTL),
2797 AC_MSG_RESULT(not usable))
2798
2799dnl sysinfo() may exist but not be Linux compatible
2800AC_MSG_CHECKING(for sysinfo)
2801AC_TRY_COMPILE(
2802[#include <sys/types.h>
2803#include <sys/sysinfo.h>],
2804[ struct sysinfo sinfo;
2805 int t;
2806
2807 (void)sysinfo(&sinfo);
2808 t = sinfo.totalram;
2809 ],
2810 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSINFO),
2811 AC_MSG_RESULT(not usable))
2812
2813dnl sysconf() may exist but not support what we want to use
2814AC_MSG_CHECKING(for sysconf)
2815AC_TRY_COMPILE(
2816[#include <unistd.h>],
2817[ (void)sysconf(_SC_PAGESIZE);
2818 (void)sysconf(_SC_PHYS_PAGES);
2819 ],
2820 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSCONF),
2821 AC_MSG_RESULT(not usable))
2822
2823dnl Our own version of AC_CHECK_SIZEOF(int); fixes a bug when sizeof() can't
2824dnl be printed with "%d", and avoids a warning for cross-compiling.
2825
2826AC_MSG_CHECKING(size of int)
2827AC_CACHE_VAL(ac_cv_sizeof_int,
2828 [AC_TRY_RUN([#include <stdio.h>
2829 main()
2830 {
2831 FILE *f=fopen("conftestval", "w");
2832 if (!f) exit(1);
2833 fprintf(f, "%d\n", (int)sizeof(int));
2834 exit(0);
2835 }],
2836 ac_cv_sizeof_int=`cat conftestval`,
2837 ac_cv_sizeof_int=0,
2838 AC_MSG_ERROR(failed to compile test program))])
2839AC_MSG_RESULT($ac_cv_sizeof_int)
2840AC_DEFINE_UNQUOTED(SIZEOF_INT, $ac_cv_sizeof_int)
2841
2842AC_MSG_CHECKING(whether memmove/bcopy/memcpy handle overlaps)
2843[bcopy_test_prog='
2844main() {
2845 char buf[10];
2846 strcpy(buf, "abcdefghi");
2847 mch_memmove(buf, buf + 2, 3);
2848 if (strncmp(buf, "ababcf", 6))
2849 exit(1);
2850 strcpy(buf, "abcdefghi");
2851 mch_memmove(buf + 2, buf, 3);
2852 if (strncmp(buf, "cdedef", 6))
2853 exit(1);
2854 exit(0); /* libc version works properly. */
2855}']
2856
2857dnl Check for memmove() before bcopy(), makes memmove() be used when both are
2858dnl present, fixes problem with incompatibility between Solaris 2.4 and 2.5.
2859
2860AC_TRY_RUN([#define mch_memmove(s,d,l) memmove(d,s,l) $bcopy_test_prog],
2861 AC_DEFINE(USEMEMMOVE) AC_MSG_RESULT(memmove does),
2862 AC_TRY_RUN([#define mch_memmove(s,d,l) bcopy(d,s,l) $bcopy_test_prog],
2863 AC_DEFINE(USEBCOPY) AC_MSG_RESULT(bcopy does),
2864 AC_TRY_RUN([#define mch_memmove(s,d,l) memcpy(d,s,l) $bcopy_test_prog],
2865 AC_DEFINE(USEMEMCPY) AC_MSG_RESULT(memcpy does), AC_MSG_RESULT(no),
2866 AC_MSG_ERROR(failed to compile test program)),
2867 AC_MSG_ERROR(failed to compile test program)),
2868 AC_MSG_ERROR(failed to compile test program))
2869
2870dnl Check for multibyte locale functions
2871dnl Find out if _Xsetlocale() is supported by libX11.
2872dnl Check if X_LOCALE should be defined.
2873
2874if test "$enable_multibyte" = "yes"; then
2875 cflags_save=$CFLAGS
2876 ldflags_save=$LDFLAGS
2877 if test -n "$x_includes" ; then
2878 CFLAGS="$CFLAGS -I$x_includes"
2879 LDFLAGS="$X_LIBS $LDFLAGS -lX11"
2880 AC_MSG_CHECKING(whether X_LOCALE needed)
2881 AC_TRY_COMPILE([#include <X11/Xlocale.h>],,
2882 AC_TRY_LINK_FUNC([_Xsetlocale], [AC_MSG_RESULT(yes)
2883 AC_DEFINE(X_LOCALE)], AC_MSG_RESULT(no)),
2884 AC_MSG_RESULT(no))
2885 fi
2886 CFLAGS=$cflags_save
2887 LDFLAGS=$ldflags_save
2888fi
2889
2890dnl Link with xpg4, it is said to make Korean locale working
2891AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,)
2892
2893dnl Check how we can run ctags
2894dnl --version for Exuberant ctags (preferred)
2895dnl -t for typedefs (many ctags have this)
2896dnl -s for static functions (Elvis ctags only?)
2897dnl -v for variables. Dangerous, most ctags take this for 'vgrind style'.
2898dnl -i+m to test for older Exuberant ctags
2899AC_MSG_CHECKING(how to create tags)
2900test -f tags && mv tags tags.save
2901if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
2902 TAGPRG="ctags"
2903else
2904 (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags"
2905 (eval etags -c /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags -c"
2906 (eval ctags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags"
2907 (eval ctags -t /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -t"
2908 (eval ctags -ts /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -ts"
2909 (eval ctags -tvs /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -tvs"
2910 (eval ctags -i+m /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -i+m"
2911fi
2912test -f tags.save && mv tags.save tags
2913AC_MSG_RESULT($TAGPRG) AC_SUBST(TAGPRG)
2914
2915dnl Check how we can run man with a section number
2916AC_MSG_CHECKING(how to run man with a section nr)
2917MANDEF="man"
2918(eval man -s 2 read) < /dev/null > /dev/null 2>&AC_FD_CC && MANDEF="man -s"
2919AC_MSG_RESULT($MANDEF)
2920if test "$MANDEF" = "man -s"; then
2921 AC_DEFINE(USEMAN_S)
2922fi
2923
2924dnl Check if gettext() is working and if it needs -lintl
2925AC_MSG_CHECKING(--disable-nls argument)
2926AC_ARG_ENABLE(nls,
2927 [ --disable-nls Don't support NLS (gettext()).], ,
2928 [enable_nls="yes"])
2929
2930if test "$enable_nls" = "yes"; then
2931 AC_MSG_RESULT(no)
2932 AC_CHECK_PROG(MSGFMT, msgfmt, msgfmt, )
2933 AC_MSG_CHECKING([for NLS])
2934 if test -f po/Makefile; then
2935 have_gettext="no"
2936 if test -n "$MSGFMT"; then
2937 AC_TRY_LINK(
2938 [#include <libintl.h>],
2939 [gettext("Test");],
2940 AC_MSG_RESULT([gettext() works]); have_gettext="yes",
2941 olibs=$LIBS
2942 LIBS="$LIBS -lintl"
2943 AC_TRY_LINK(
2944 [#include <libintl.h>],
2945 [gettext("Test");],
2946 AC_MSG_RESULT([gettext() works with -lintl]); have_gettext="yes",
2947 AC_MSG_RESULT([gettext() doesn't work]);
2948 LIBS=$olibs))
2949 else
2950 AC_MSG_RESULT([msgfmt not found - disabled]);
2951 fi
2952 if test $have_gettext = "yes"; then
2953 AC_DEFINE(HAVE_GETTEXT)
2954 MAKEMO=yes
2955 AC_SUBST(MAKEMO)
2956 dnl this was added in GNU gettext 0.10.36
2957 AC_CHECK_FUNCS(bind_textdomain_codeset)
2958 dnl _nl_msg_cat_cntr is required for GNU gettext
2959 AC_MSG_CHECKING([for _nl_msg_cat_cntr])
2960 AC_TRY_LINK(
2961 [#include <libintl.h>
2962 extern int _nl_msg_cat_cntr;],
2963 [++_nl_msg_cat_cntr;],
2964 AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_NL_MSG_CAT_CNTR),
2965 AC_MSG_RESULT([no]))
2966 fi
2967 else
2968 AC_MSG_RESULT([no "po/Makefile" - disabled]);
2969 fi
2970else
2971 AC_MSG_RESULT(yes)
2972fi
2973
2974dnl Check for dynamic linking loader
2975AC_CHECK_HEADER(dlfcn.h, DLL=dlfcn.h, [AC_CHECK_HEADER(dl.h, DLL=dl.h)])
2976if test x${DLL} = xdlfcn.h; then
2977 AC_DEFINE(HAVE_DLFCN_H, 1, [ Define if we have dlfcn.h. ])
2978 AC_MSG_CHECKING([for dlopen()])
2979 AC_TRY_LINK(,[
2980 extern void* dlopen();
2981 dlopen();
2982 ],
2983 AC_MSG_RESULT(yes);
2984 AC_DEFINE(HAVE_DLOPEN, 1, [ Define if we have dlopen() ]),
2985 AC_MSG_RESULT(no);
2986 AC_MSG_CHECKING([for dlopen() in -ldl])
2987 olibs=$LIBS
2988 LIBS="$LIBS -ldl"
2989 AC_TRY_LINK(,[
2990 extern void* dlopen();
2991 dlopen();
2992 ],
2993 AC_MSG_RESULT(yes);
2994 AC_DEFINE(HAVE_DLOPEN, 1, [ Define if we have dlopen() ]),
2995 AC_MSG_RESULT(no);
2996 LIBS=$olibs))
2997 dnl ReliantUNIX has dlopen() in libc but everything else in libdl
2998 dnl ick :-)
2999 AC_MSG_CHECKING([for dlsym()])
3000 AC_TRY_LINK(,[
3001 extern void* dlsym();
3002 dlsym();
3003 ],
3004 AC_MSG_RESULT(yes);
3005 AC_DEFINE(HAVE_DLSYM, 1, [ Define if we have dlsym() ]),
3006 AC_MSG_RESULT(no);
3007 AC_MSG_CHECKING([for dlsym() in -ldl])
3008 olibs=$LIBS
3009 LIBS="$LIBS -ldl"
3010 AC_TRY_LINK(,[
3011 extern void* dlsym();
3012 dlsym();
3013 ],
3014 AC_MSG_RESULT(yes);
3015 AC_DEFINE(HAVE_DLSYM, 1, [ Define if we have dlsym() ]),
3016 AC_MSG_RESULT(no);
3017 LIBS=$olibs))
3018elif test x${DLL} = xdl.h; then
3019 AC_DEFINE(HAVE_DL_H, 1, [ Define if we have dl.h. ])
3020 AC_MSG_CHECKING([for shl_load()])
3021 AC_TRY_LINK(,[
3022 extern void* shl_load();
3023 shl_load();
3024 ],
3025 AC_MSG_RESULT(yes);
3026 AC_DEFINE(HAVE_SHL_LOAD, 1, [ Define if we have shl_load() ]),
3027 AC_MSG_RESULT(no);
3028 AC_MSG_CHECKING([for shl_load() in -ldld])
3029 olibs=$LIBS
3030 LIBS="$LIBS -ldld"
3031 AC_TRY_LINK(,[
3032 extern void* shl_load();
3033 shl_load();
3034 ],
3035 AC_MSG_RESULT(yes);
3036 AC_DEFINE(HAVE_SHL_LOAD, 1, [ Define if we have shl_load() ]),
3037 AC_MSG_RESULT(no);
3038 LIBS=$olibs))
3039fi
3040AC_CHECK_HEADERS(setjmp.h)
3041
3042if test "x$MACOSX" = "xyes" -a -n "$PERL"; then
3043 dnl -ldl must come after DynaLoader.a
3044 if echo $LIBS | grep -e '-ldl' >/dev/null; then
3045 LIBS=`echo $LIBS | sed s/-ldl//`
3046 PERL_LIBS="$PERL_LIBS -ldl"
3047 fi
3048fi
3049
3050if test "x$MACOSX" = "xyes" && test "x$CARBON" = "xyes" \
3051 && test "x$GUITYPE" != "xCARBONGUI"; then
3052 AC_MSG_CHECKING(whether we need -framework Carbon)
3053 dnl check for MACOSX without Carbon GUI, but with FEAT_MBYTE
3054 if test "x$enable_multibyte" = "xyes" || test "x$features" == "xbig" \
3055 || test "x$features" = "xhuge"; then
3056 LIBS="$LIBS -framework Carbon"
3057 AC_MSG_RESULT(yes)
3058 else
3059 AC_MSG_RESULT(no)
3060 fi
3061fi
3062
3063
3064dnl write output files
3065AC_OUTPUT(auto/config.mk:config.mk.in)
3066
3067dnl vim: set sw=2 tw=78 fo+=l: