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