blob: 4445cf5bfebfc5686965441bc39eed48af981e0a [file] [log] [blame]
Bram Moolenaar3f7d0902016-11-12 21:13:42 +01001dnl configure.ac: autoconf script for Vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3dnl Process this file with autoconf 2.12 or 2.13 to produce "configure".
4dnl Should also work with autoconf 2.54 and later.
5
6AC_INIT(vim.h)
7AC_CONFIG_HEADER(auto/config.h:config.h.in)
8
9dnl Being able to run configure means the system is Unix (compatible).
10AC_DEFINE(UNIX)
11AC_PROG_MAKE_SET
12
13dnl Checks for programs.
14AC_PROG_CC dnl required by almost everything
15AC_PROG_CPP dnl required by header file checks
16AC_PROGRAM_EGREP dnl required by AC_EGREP_CPP
Bram Moolenaar2bcaec32014-03-27 18:51:11 +010017AC_PROG_FGREP dnl finds working grep -F
Bram Moolenaar071d4272004-06-13 20:20:40 +000018AC_ISC_POSIX dnl required by AC_C_CROSS
19AC_PROG_AWK dnl required for "make html" in ../doc
20
21dnl Don't strip if we don't have it
22AC_CHECK_PROG(STRIP, strip, strip, :)
23
Bram Moolenaar325b7a22004-07-05 15:58:32 +000024dnl Check for extension of executables
Bram Moolenaar071d4272004-06-13 20:20:40 +000025AC_EXEEXT
26
Bram Moolenaar446cb832008-06-24 21:56:24 +000027dnl Check for standard headers. We don't use this in Vim but other stuff
28dnl in autoconf needs it, where it uses STDC_HEADERS.
29AC_HEADER_STDC
30AC_HEADER_SYS_WAIT
31
Bram Moolenaarf788a062011-12-14 20:51:25 +010032dnl Check for the flag that fails if stuff are missing.
33
34AC_MSG_CHECKING(--enable-fail-if-missing argument)
35AC_ARG_ENABLE(fail_if_missing,
36 [ --enable-fail-if-missing Fail if dependencies on additional features
37 specified on the command line are missing.],
38 [fail_if_missing="yes"],
39 [fail_if_missing="no"])
40AC_MSG_RESULT($fail_if_missing)
41
Bram Moolenaar071d4272004-06-13 20:20:40 +000042dnl Set default value for CFLAGS if none is defined or it's empty
43if test -z "$CFLAGS"; then
44 CFLAGS="-O"
45 test "$GCC" = yes && CFLAGS="-O2 -fno-strength-reduce -Wall"
46fi
47if test "$GCC" = yes; then
Bram Moolenaar910f66f2006-04-05 20:41:53 +000048 dnl method that should work for nearly all versions
Bram Moolenaarc8836f72014-04-12 13:12:24 +020049 gccversion=`$CC -dumpversion`
Bram Moolenaar910f66f2006-04-05 20:41:53 +000050 if test "x$gccversion" = "x"; then
51 dnl old method; fall-back for when -dumpversion doesn't work
Bram Moolenaarc8836f72014-04-12 13:12:24 +020052 gccversion=`$CC --version | sed -e '2,$d' -e 's/darwin.//' -e 's/^[[^0-9]]*\([[0-9]]\.[[0-9.]]*\).*$/\1/g'`
Bram Moolenaar910f66f2006-04-05 20:41:53 +000053 fi
Bram Moolenaara5792f52005-11-23 21:25:05 +000054 dnl version 4.0.1 was reported to cause trouble on Macintosh by Marcin Dalecki
55 if test "$gccversion" = "3.0.1" -o "$gccversion" = "3.0.2" -o "$gccversion" = "4.0.1"; then
Bram Moolenaare224ffa2006-03-01 00:01:28 +000056 echo 'GCC [[34]].0.[[12]] has a bug in the optimizer, disabling "-O#"'
Bram Moolenaar071d4272004-06-13 20:20:40 +000057 CFLAGS=`echo "$CFLAGS" | sed 's/-O[[23456789]]/-O/'`
58 else
59 if test "$gccversion" = "3.1" -o "$gccversion" = "3.2" -o "$gccversion" = "3.2.1" && `echo "$CFLAGS" | grep -v fno-strength-reduce >/dev/null`; then
60 echo 'GCC 3.1 and 3.2 have a bug in the optimizer, adding "-fno-strength-reduce"'
61 CFLAGS="$CFLAGS -fno-strength-reduce"
62 fi
63 fi
64fi
65
Bram Moolenaar0c6ccfd2013-10-02 18:23:07 +020066dnl clang-500.2.75 or around has abandoned -f[no-]strength-reduce and issues a
67dnl warning when that flag is passed to. Accordingly, adjust CFLAGS based on
68dnl the version number of the clang in use.
69dnl Note that this does not work to get the version of clang 3.1 or 3.2.
Bram Moolenaar5f69fee2017-03-09 11:58:40 +010070AC_MSG_CHECKING(for clang version)
71CLANG_VERSION_STRING=`$CC --version 2>/dev/null | sed -n -e 's/^.*clang[[^0-9]]*\([[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\).*$/\1/p'`
Bram Moolenaar0c6ccfd2013-10-02 18:23:07 +020072if test x"$CLANG_VERSION_STRING" != x"" ; then
73 CLANG_MAJOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/\([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*/\1/p'`
74 CLANG_MINOR=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/[[0-9]][[0-9]]*\.\([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*/\1/p'`
75 CLANG_REVISION=`echo "$CLANG_VERSION_STRING" | sed -n -e 's/[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.\([[0-9]][[0-9]]*\)/\1/p'`
76 CLANG_VERSION=`expr $CLANG_MAJOR '*' 1000000 '+' $CLANG_MINOR '*' 1000 '+' $CLANG_REVISION`
77 AC_MSG_RESULT($CLANG_VERSION)
78 dnl If you find the same issue with versions earlier than 500.2.75,
79 dnl change the constant 500002075 below appropriately. To get the
80 dnl integer corresponding to a version number, refer to the
81 dnl definition of CLANG_VERSION above.
Bram Moolenaar5f69fee2017-03-09 11:58:40 +010082 AC_MSG_CHECKING(if clang supports -fno-strength-reduce)
Bram Moolenaar0c6ccfd2013-10-02 18:23:07 +020083 if test "$CLANG_VERSION" -ge 500002075 ; then
Bram Moolenaar5f69fee2017-03-09 11:58:40 +010084 AC_MSG_RESULT(no)
85 CFLAGS=`echo "$CFLAGS" | sed -e 's/-fno-strength-reduce/ /'`
86 else
87 AC_MSG_RESULT(yes)
Bram Moolenaar0c6ccfd2013-10-02 18:23:07 +020088 fi
89else
Bram Moolenaar5f69fee2017-03-09 11:58:40 +010090 AC_MSG_RESULT(N/A)
Bram Moolenaar0c6ccfd2013-10-02 18:23:07 +020091fi
92
Bram Moolenaar446cb832008-06-24 21:56:24 +000093dnl If configure thinks we are cross compiling, there might be something
94dnl wrong with the CC or CFLAGS settings, give a useful warning message
Bram Moolenaar839e9542016-04-14 16:46:02 +020095CROSS_COMPILING=
Bram Moolenaar071d4272004-06-13 20:20:40 +000096if test "$cross_compiling" = yes; then
Bram Moolenaar446cb832008-06-24 21:56:24 +000097 AC_MSG_RESULT([cannot compile a simple program; if not cross compiling check CC and CFLAGS])
Bram Moolenaar839e9542016-04-14 16:46:02 +020098 CROSS_COMPILING=1
Bram Moolenaar071d4272004-06-13 20:20:40 +000099fi
Bram Moolenaar839e9542016-04-14 16:46:02 +0200100AC_SUBST(CROSS_COMPILING)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +0000102dnl gcc-cpp has the wonderful -MM option to produce nicer dependencies.
103dnl But gcc 3.1 changed the meaning! See near the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104test "$GCC" = yes && CPP_MM=M; AC_SUBST(CPP_MM)
105
106if test -f ./toolcheck; then
107 AC_CHECKING(for buggy tools)
108 sh ./toolcheck 1>&AC_FD_MSG
109fi
110
111OS_EXTRA_SRC=""; OS_EXTRA_OBJ=""
112
113dnl Check for BeOS, which needs an extra source file
114AC_MSG_CHECKING(for BeOS)
115case `uname` in
116 BeOS) OS_EXTRA_SRC=os_beos.c; OS_EXTRA_OBJ=objects/os_beos.o
117 BEOS=yes; AC_MSG_RESULT(yes);;
118 *) BEOS=no; AC_MSG_RESULT(no);;
119esac
120
121dnl If QNX is found, assume we don't want to use Xphoton
122dnl unless it was specifically asked for (--with-x)
123AC_MSG_CHECKING(for QNX)
124case `uname` in
125 QNX) OS_EXTRA_SRC=os_qnx.c; OS_EXTRA_OBJ=objects/os_qnx.o
126 test -z "$with_x" && with_x=no
127 QNX=yes; AC_MSG_RESULT(yes);;
128 *) QNX=no; AC_MSG_RESULT(no);;
129esac
130
131dnl Check for Darwin and MacOS X
132dnl We do a check for MacOS X in the very beginning because there
133dnl are a lot of other things we need to change besides GUI stuff
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134AC_MSG_CHECKING([for Darwin (Mac OS X)])
135if test "`(uname) 2>/dev/null`" = Darwin; then
136 AC_MSG_RESULT(yes)
137
138 AC_MSG_CHECKING(--disable-darwin argument)
139 AC_ARG_ENABLE(darwin,
140 [ --disable-darwin Disable Darwin (Mac OS X) support.],
141 , [enable_darwin="yes"])
142 if test "$enable_darwin" = "yes"; then
143 AC_MSG_RESULT(no)
144 AC_MSG_CHECKING(if Darwin files are there)
Bram Moolenaar164fca32010-07-14 13:58:07 +0200145 if test -f os_macosx.m; then
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 AC_MSG_RESULT(yes)
147 else
148 AC_MSG_RESULT([no, Darwin support disabled])
149 enable_darwin=no
150 fi
151 else
152 AC_MSG_RESULT([yes, Darwin support excluded])
153 fi
154
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000155 AC_MSG_CHECKING(--with-mac-arch argument)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000156 AC_ARG_WITH(mac-arch, [ --with-mac-arch=ARCH current, intel, ppc or both],
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000157 MACARCH="$withval"; AC_MSG_RESULT($MACARCH),
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000158 MACARCH="current"; AC_MSG_RESULT(defaulting to $MACARCH))
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000159
Bram Moolenaar595a7be2010-03-10 16:28:12 +0100160 AC_MSG_CHECKING(--with-developer-dir argument)
161 AC_ARG_WITH(developer-dir, [ --with-developer-dir=PATH use PATH as location for Xcode developer tools],
162 DEVELOPER_DIR="$withval"; AC_MSG_RESULT($DEVELOPER_DIR),
Bram Moolenaar32d03b32015-11-19 13:46:48 +0100163 AC_MSG_RESULT(not present))
Bram Moolenaar595a7be2010-03-10 16:28:12 +0100164
165 if test "x$DEVELOPER_DIR" = "x"; then
166 AC_PATH_PROG(XCODE_SELECT, xcode-select)
167 if test "x$XCODE_SELECT" != "x"; then
168 AC_MSG_CHECKING(for developer dir using xcode-select)
169 DEVELOPER_DIR=`$XCODE_SELECT -print-path`
170 AC_MSG_RESULT([$DEVELOPER_DIR])
171 else
172 DEVELOPER_DIR=/Developer
173 fi
174 fi
175
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000176 if test "x$MACARCH" = "xboth"; then
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000177 AC_MSG_CHECKING(for 10.4 universal SDK)
178 dnl There is a terrible inconsistency (but we appear to get away with it):
179 dnl $CFLAGS uses the 10.4u SDK library for the headers, while $CPPFLAGS
180 dnl doesn't, because "gcc -E" doesn't grok it. That means the configure
181 dnl tests using the preprocessor are actually done with the wrong header
182 dnl files. $LDFLAGS is set at the end, because configure uses it together
183 dnl with $CFLAGS and we can only have one -sysroot argument.
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000184 save_cppflags="$CPPFLAGS"
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000185 save_cflags="$CFLAGS"
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000186 save_ldflags="$LDFLAGS"
Bram Moolenaar595a7be2010-03-10 16:28:12 +0100187 CFLAGS="$CFLAGS -isysroot $DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc"
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000188 AC_TRY_LINK([ ], [ ],
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000189 AC_MSG_RESULT(found, will make universal binary),
190
191 AC_MSG_RESULT(not found)
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000192 CFLAGS="$save_cflags"
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000193 AC_MSG_CHECKING(if Intel architecture is supported)
194 CPPFLAGS="$CPPFLAGS -arch i386"
195 LDFLAGS="$save_ldflags -arch i386"
196 AC_TRY_LINK([ ], [ ],
197 AC_MSG_RESULT(yes); MACARCH="intel",
198 AC_MSG_RESULT(no, using PowerPC)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000199 MACARCH="ppc"
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000200 CPPFLAGS="$save_cppflags -arch ppc"
201 LDFLAGS="$save_ldflags -arch ppc"))
202 elif test "x$MACARCH" = "xintel"; then
203 CPPFLAGS="$CPPFLAGS -arch intel"
204 LDFLAGS="$LDFLAGS -arch intel"
Bram Moolenaare2f98b92006-03-29 21:18:24 +0000205 elif test "x$MACARCH" = "xppc"; then
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000206 CPPFLAGS="$CPPFLAGS -arch ppc"
207 LDFLAGS="$LDFLAGS -arch ppc"
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000208 fi
209
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 if test "$enable_darwin" = "yes"; then
211 MACOSX=yes
Bram Moolenaar164fca32010-07-14 13:58:07 +0200212 OS_EXTRA_SRC="os_macosx.m os_mac_conv.c";
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000213 OS_EXTRA_OBJ="objects/os_macosx.o objects/os_mac_conv.o"
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000214 dnl TODO: use -arch i386 on Intel machines
Bram Moolenaar0958e0f2013-11-04 04:57:50 +0100215 dnl Removed -no-cpp-precomp, only for very old compilers.
216 CPPFLAGS="$CPPFLAGS -DMACOS_X_UNIX"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
218 dnl If Carbon is found, assume we don't want X11
219 dnl unless it was specifically asked for (--with-x)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +0000220 dnl or Motif, Athena or GTK GUI is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 AC_CHECK_HEADER(Carbon/Carbon.h, CARBON=yes)
222 if test "x$CARBON" = "xyes"; then
Bram Moolenaar98921892016-02-23 17:14:37 +0100223 if test -z "$with_x" -a "X$enable_gui" != Xmotif -a "X$enable_gui" != Xathena -a "X$enable_gui" != Xgtk2 -a "X$enable_gui" != Xgtk3; then
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 with_x=no
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 fi
226 fi
227 fi
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000228
Bram Moolenaardb552d602006-03-23 22:59:57 +0000229 dnl Avoid a bug with -O2 with gcc 4.0.1. Symptom: malloc() reports double
Bram Moolenaarfd2ac762006-03-01 22:09:21 +0000230 dnl free. This happens in expand_filename(), because the optimizer swaps
Bram Moolenaardb552d602006-03-23 22:59:57 +0000231 dnl two blocks of code, both using "repl", that can't be swapped.
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000232 if test "$MACARCH" = "intel" -o "$MACARCH" = "both"; then
233 CFLAGS=`echo "$CFLAGS" | sed 's/-O[[23456789]]/-Oz/'`
234 fi
235
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236else
237 AC_MSG_RESULT(no)
238fi
239
Bram Moolenaar39766a72013-11-03 00:41:00 +0100240dnl Mac OS X 10.9+ no longer include AvailabilityMacros.h in Carbon
241dnl so we need to include it to have access to version macros.
Bram Moolenaar18e54692013-11-03 20:26:31 +0100242AC_CHECK_HEADERS(AvailabilityMacros.h)
Bram Moolenaar39766a72013-11-03 00:41:00 +0100243
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244AC_SUBST(OS_EXTRA_SRC)
245AC_SUBST(OS_EXTRA_OBJ)
246
247dnl Add /usr/local/lib to $LDFLAGS and /usr/local/include to CFLAGS.
248dnl Only when the directory exists and it wasn't there yet.
249dnl For gcc don't do this when it is already in the default search path.
Bram Moolenaar446cb832008-06-24 21:56:24 +0000250dnl Skip all of this when cross-compiling.
251if test "$cross_compiling" = no; then
Bram Moolenaarc236c162008-07-13 17:41:49 +0000252 AC_MSG_CHECKING(--with-local-dir argument)
Bram Moolenaar446cb832008-06-24 21:56:24 +0000253 have_local_include=''
254 have_local_lib=''
Bram Moolenaarc236c162008-07-13 17:41:49 +0000255 AC_ARG_WITH([local-dir], [ --with-local-dir=PATH search PATH instead of /usr/local for local libraries.
256 --without-local-dir do not search /usr/local for local libraries.], [
257 local_dir="$withval"
258 case "$withval" in
259 */*) ;;
260 no)
261 # avoid adding local dir to LDFLAGS and CPPFLAGS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200262 have_local_include=yes
Bram Moolenaarc236c162008-07-13 17:41:49 +0000263 have_local_lib=yes
264 ;;
265 *) AC_MSG_ERROR(must pass path argument to --with-local-dir) ;;
266 esac
267 AC_MSG_RESULT($local_dir)
268 ], [
269 local_dir=/usr/local
270 AC_MSG_RESULT(Defaulting to $local_dir)
271 ])
272 if test "$GCC" = yes -a "$local_dir" != no; then
Bram Moolenaar446cb832008-06-24 21:56:24 +0000273 echo 'void f(){}' > conftest.c
Bram Moolenaar0958e0f2013-11-04 04:57:50 +0100274 dnl Removed -no-cpp-precomp, only needed for OS X 10.2 (Ben Fowler)
275 have_local_include=`${CC-cc} -c -v conftest.c 2>&1 | grep "${local_dir}/include"`
Bram Moolenaarc236c162008-07-13 17:41:49 +0000276 have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep "${local_dir}/lib"`
Bram Moolenaar446cb832008-06-24 21:56:24 +0000277 rm -f conftest.c conftest.o
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 fi
Bram Moolenaarc236c162008-07-13 17:41:49 +0000279 if test -z "$have_local_lib" -a -d "${local_dir}/lib"; then
280 tt=`echo "$LDFLAGS" | sed -e "s+-L${local_dir}/lib ++g" -e "s+-L${local_dir}/lib$++g"`
Bram Moolenaar446cb832008-06-24 21:56:24 +0000281 if test "$tt" = "$LDFLAGS"; then
Bram Moolenaarc236c162008-07-13 17:41:49 +0000282 LDFLAGS="$LDFLAGS -L${local_dir}/lib"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000283 fi
284 fi
Bram Moolenaarc236c162008-07-13 17:41:49 +0000285 if test -z "$have_local_include" -a -d "${local_dir}/include"; then
286 tt=`echo "$CPPFLAGS" | sed -e "s+-I${local_dir}/include ++g" -e "s+-I${local_dir}/include$++g"`
Bram Moolenaar446cb832008-06-24 21:56:24 +0000287 if test "$tt" = "$CPPFLAGS"; then
Bram Moolenaarc236c162008-07-13 17:41:49 +0000288 CPPFLAGS="$CPPFLAGS -I${local_dir}/include"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000289 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 fi
291fi
292
293AC_MSG_CHECKING(--with-vim-name argument)
294AC_ARG_WITH(vim-name, [ --with-vim-name=NAME what to call the Vim executable],
295 VIMNAME="$withval"; AC_MSG_RESULT($VIMNAME),
Bram Moolenaare344bea2005-09-01 20:46:49 +0000296 VIMNAME="vim"; AC_MSG_RESULT(Defaulting to $VIMNAME))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297AC_SUBST(VIMNAME)
298AC_MSG_CHECKING(--with-ex-name argument)
299AC_ARG_WITH(ex-name, [ --with-ex-name=NAME what to call the Ex executable],
300 EXNAME="$withval"; AC_MSG_RESULT($EXNAME),
301 EXNAME="ex"; AC_MSG_RESULT(Defaulting to ex))
302AC_SUBST(EXNAME)
303AC_MSG_CHECKING(--with-view-name argument)
304AC_ARG_WITH(view-name, [ --with-view-name=NAME what to call the View executable],
305 VIEWNAME="$withval"; AC_MSG_RESULT($VIEWNAME),
306 VIEWNAME="view"; AC_MSG_RESULT(Defaulting to view))
307AC_SUBST(VIEWNAME)
308
309AC_MSG_CHECKING(--with-global-runtime argument)
310AC_ARG_WITH(global-runtime, [ --with-global-runtime=DIR global runtime directory in 'runtimepath'],
311 AC_MSG_RESULT($withval); AC_DEFINE_UNQUOTED(RUNTIME_GLOBAL, "$withval"),
312 AC_MSG_RESULT(no))
313
314AC_MSG_CHECKING(--with-modified-by argument)
315AC_ARG_WITH(modified-by, [ --with-modified-by=NAME name of who modified a release version],
316 AC_MSG_RESULT($withval); AC_DEFINE_UNQUOTED(MODIFIED_BY, "$withval"),
317 AC_MSG_RESULT(no))
318
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200319dnl Check for EBCDIC stolen from the LYNX port to z/OS Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320AC_MSG_CHECKING(if character set is EBCDIC)
321AC_TRY_COMPILE([ ],
322[ /* TryCompile function for CharSet.
323 Treat any failure as ASCII for compatibility with existing art.
324 Use compile-time rather than run-time tests for cross-compiler
325 tolerance. */
326#if '0'!=240
327make an error "Character set is not EBCDIC"
328#endif ],
329[ # TryCompile action if true
330cf_cv_ebcdic=yes ],
331[ # TryCompile action if false
332cf_cv_ebcdic=no])
333# end of TryCompile ])
334# end of CacheVal CvEbcdic
335AC_MSG_RESULT($cf_cv_ebcdic)
336case "$cf_cv_ebcdic" in #(vi
337 yes) AC_DEFINE(EBCDIC)
338 line_break='"\\n"'
339 ;;
340 *) line_break='"\\012"';;
341esac
342AC_SUBST(line_break)
343
344if test "$cf_cv_ebcdic" = "yes"; then
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200345dnl If we have EBCDIC we most likely have z/OS Unix, let's test it!
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200346AC_MSG_CHECKING(for z/OS Unix)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347case `uname` in
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200348 OS/390) zOSUnix="yes";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 dnl If using cc the environment variable _CC_CCMODE must be
350 dnl set to "1", so that some compiler extensions are enabled.
351 dnl If using c89 the environment variable is named _CC_C89MODE.
352 dnl Note: compile with c89 never tested.
353 if test "$CC" = "cc"; then
354 ccm="$_CC_CCMODE"
355 ccn="CC"
356 else
357 if test "$CC" = "c89"; then
358 ccm="$_CC_C89MODE"
359 ccn="C89"
360 else
361 ccm=1
362 fi
363 fi
364 if test "$ccm" != "1"; then
365 echo ""
366 echo "------------------------------------------"
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200367 echo " On z/OS Unix, the environment variable"
Bram Moolenaar77c19352012-06-13 19:19:41 +0200368 echo " _CC_${ccn}MODE must be set to \"1\"!"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369 echo " Do:"
370 echo " export _CC_${ccn}MODE=1"
371 echo " and then call configure again."
372 echo "------------------------------------------"
373 exit 1
374 fi
Bram Moolenaar77c19352012-06-13 19:19:41 +0200375 # Set CFLAGS for configure process.
376 # This will be reset later for config.mk.
377 # Use haltonmsg to force error for missing H files.
378 CFLAGS="$CFLAGS -D_ALL_SOURCE -Wc,float(ieee),haltonmsg(3296)";
379 LDFLAGS="$LDFLAGS -Wl,EDIT=NO"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 AC_MSG_RESULT(yes)
381 ;;
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200382 *) zOSUnix="no";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 AC_MSG_RESULT(no)
384 ;;
385esac
386fi
387
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200388dnl Set QUOTESED. Needs additional backslashes on zOS
389if test "$zOSUnix" = "yes"; then
390 QUOTESED="sed -e 's/[[\\\\\"]]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/'"
391else
392 QUOTESED="sed -e 's/[[\\\\\"]]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/'"
393fi
394AC_SUBST(QUOTESED)
395
396
Bram Moolenaar5bd32f42014-04-02 14:05:38 +0200397dnl Link with -lsmack for Smack stuff; if not found
398AC_MSG_CHECKING(--disable-smack argument)
399AC_ARG_ENABLE(smack,
400 [ --disable-smack Do not check for Smack support.],
401 , enable_smack="yes")
402if test "$enable_smack" = "yes"; then
Bram Moolenaar4ed89cd2014-04-05 12:02:25 +0200403 AC_MSG_RESULT(no)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +0200404 AC_CHECK_HEADER([linux/xattr.h], true, enable_smack="no")
Bram Moolenaar4ed89cd2014-04-05 12:02:25 +0200405else
Bram Moolenaarc09551a2014-04-10 11:09:17 +0200406 AC_MSG_RESULT(yes)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +0200407fi
408if test "$enable_smack" = "yes"; then
Bram Moolenaarc09551a2014-04-10 11:09:17 +0200409 AC_CHECK_HEADER([attr/xattr.h], true, enable_smack="no")
410fi
411if test "$enable_smack" = "yes"; then
412 AC_MSG_CHECKING(for XATTR_NAME_SMACKEXEC in linux/xattr.h)
413 AC_EGREP_CPP(XATTR_NAME_SMACKEXEC, [#include <linux/xattr.h>],
414 AC_MSG_RESULT(yes),
Bram Moolenaare29b1fe2014-04-10 20:00:15 +0200415 AC_MSG_RESULT(no); enable_smack="no")
Bram Moolenaarc09551a2014-04-10 11:09:17 +0200416fi
417if test "$enable_smack" = "yes"; then
418 AC_CHECK_LIB(attr, setxattr,
Bram Moolenaar5bd32f42014-04-02 14:05:38 +0200419 [LIBS="$LIBS -lattr"
420 found_smack="yes"
421 AC_DEFINE(HAVE_SMACK)])
Bram Moolenaar588ebeb2008-05-07 17:09:24 +0000422fi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423
Bram Moolenaar5bd32f42014-04-02 14:05:38 +0200424dnl When smack was found don't search for SELinux
425if test "x$found_smack" = "x"; then
426 dnl Link with -lselinux for SELinux stuff; if not found
427 AC_MSG_CHECKING(--disable-selinux argument)
428 AC_ARG_ENABLE(selinux,
429 [ --disable-selinux Do not check for SELinux support.],
430 , enable_selinux="yes")
431 if test "$enable_selinux" = "yes"; then
432 AC_MSG_RESULT(no)
433 AC_CHECK_LIB(selinux, is_selinux_enabled,
434 [LIBS="$LIBS -lselinux"
435 AC_DEFINE(HAVE_SELINUX)])
436 else
437 AC_MSG_RESULT(yes)
438 fi
439fi
440
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441dnl Check user requested features.
442
443AC_MSG_CHECKING(--with-features argument)
Bram Moolenaareec29812016-07-26 21:27:36 +0200444AC_ARG_WITH(features, [ --with-features=TYPE tiny, small, normal, big or huge (default: huge)],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 features="$withval"; AC_MSG_RESULT($features),
Bram Moolenaar23c4f712016-01-20 22:11:59 +0100446 features="huge"; AC_MSG_RESULT(Defaulting to huge))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447
448dovimdiff=""
449dogvimdiff=""
450case "$features" in
451 tiny) AC_DEFINE(FEAT_TINY) ;;
452 small) AC_DEFINE(FEAT_SMALL) ;;
453 normal) AC_DEFINE(FEAT_NORMAL) dovimdiff="installvimdiff";
454 dogvimdiff="installgvimdiff" ;;
455 big) AC_DEFINE(FEAT_BIG) dovimdiff="installvimdiff";
456 dogvimdiff="installgvimdiff" ;;
457 huge) AC_DEFINE(FEAT_HUGE) dovimdiff="installvimdiff";
458 dogvimdiff="installgvimdiff" ;;
459 *) AC_MSG_RESULT([Sorry, $features is not supported]) ;;
460esac
461
462AC_SUBST(dovimdiff)
463AC_SUBST(dogvimdiff)
464
465AC_MSG_CHECKING(--with-compiledby argument)
466AC_ARG_WITH(compiledby, [ --with-compiledby=NAME name to show in :version message],
467 compiledby="$withval"; AC_MSG_RESULT($withval),
468 compiledby=""; AC_MSG_RESULT(no))
469AC_SUBST(compiledby)
470
471AC_MSG_CHECKING(--disable-xsmp argument)
472AC_ARG_ENABLE(xsmp,
473 [ --disable-xsmp Disable XSMP session management],
474 , enable_xsmp="yes")
475
476if test "$enable_xsmp" = "yes"; then
477 AC_MSG_RESULT(no)
478 AC_MSG_CHECKING(--disable-xsmp-interact argument)
479 AC_ARG_ENABLE(xsmp-interact,
480 [ --disable-xsmp-interact Disable XSMP interaction],
481 , enable_xsmp_interact="yes")
482 if test "$enable_xsmp_interact" = "yes"; then
483 AC_MSG_RESULT(no)
484 AC_DEFINE(USE_XSMP_INTERACT)
485 else
486 AC_MSG_RESULT(yes)
487 fi
488else
489 AC_MSG_RESULT(yes)
490fi
491
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200492dnl Check for Lua feature.
493AC_MSG_CHECKING(--enable-luainterp argument)
494AC_ARG_ENABLE(luainterp,
Bram Moolenaar2334b6d2010-07-22 21:32:16 +0200495 [ --enable-luainterp[=OPTS] Include Lua interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200496 [enable_luainterp="no"])
497AC_MSG_RESULT($enable_luainterp)
498
Bram Moolenaar2334b6d2010-07-22 21:32:16 +0200499if test "$enable_luainterp" = "yes" -o "$enable_luainterp" = "dynamic"; then
Bram Moolenaar3c124e32016-01-31 14:36:58 +0100500 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
501 AC_MSG_ERROR([cannot use Lua with tiny or small features])
502 fi
503
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200504 dnl -- find the lua executable
505 AC_SUBST(vi_cv_path_lua)
506
507 AC_MSG_CHECKING(--with-lua-prefix argument)
508 AC_ARG_WITH(lua_prefix,
509 [ --with-lua-prefix=PFX Prefix where Lua is installed.],
510 with_lua_prefix="$withval"; AC_MSG_RESULT($with_lua_prefix),
Bram Moolenaar0d2e4fc2010-07-18 12:35:47 +0200511 with_lua_prefix="";AC_MSG_RESULT(no))
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200512
513 if test "X$with_lua_prefix" != "X"; then
514 vi_cv_path_lua_pfx="$with_lua_prefix"
515 else
516 AC_MSG_CHECKING(LUA_PREFIX environment var)
517 if test "X$LUA_PREFIX" != "X"; then
518 AC_MSG_RESULT("$LUA_PREFIX")
519 vi_cv_path_lua_pfx="$LUA_PREFIX"
520 else
Bram Moolenaar0d2e4fc2010-07-18 12:35:47 +0200521 AC_MSG_RESULT([not set, default to /usr])
522 vi_cv_path_lua_pfx="/usr"
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200523 fi
524 fi
525
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200526 AC_MSG_CHECKING(--with-luajit)
527 AC_ARG_WITH(luajit,
528 [ --with-luajit Link with LuaJIT instead of Lua.],
529 [vi_cv_with_luajit="$withval"],
530 [vi_cv_with_luajit="no"])
531 AC_MSG_RESULT($vi_cv_with_luajit)
532
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200533 LUA_INC=
534 if test "X$vi_cv_path_lua_pfx" != "X"; then
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200535 if test "x$vi_cv_with_luajit" != "xno"; then
536 dnl -- try to find LuaJIT executable
537 AC_PATH_PROG(vi_cv_path_luajit, luajit)
538 if test "X$vi_cv_path_luajit" != "X"; then
539 dnl -- find LuaJIT version
540 AC_CACHE_CHECK(LuaJIT version, vi_cv_version_luajit,
Bram Moolenaar49b10272013-11-21 12:17:51 +0100541 [ vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([[0-9.]]*\)\.[[0-9]]\(-[[a-z0-9]]*\)* .*/\1/'` ])
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200542 AC_CACHE_CHECK(Lua version of LuaJIT, vi_cv_version_lua_luajit,
543 [ vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //'` ])
544 vi_cv_path_lua="$vi_cv_path_luajit"
545 vi_cv_version_lua="$vi_cv_version_lua_luajit"
546 fi
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200547 else
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200548 dnl -- try to find Lua executable
549 AC_PATH_PROG(vi_cv_path_plain_lua, lua)
550 if test "X$vi_cv_path_plain_lua" != "X"; then
551 dnl -- find Lua version
552 AC_CACHE_CHECK(Lua version, vi_cv_version_plain_lua,
553 [ vi_cv_version_plain_lua=`${vi_cv_path_plain_lua} -e "print(_VERSION)" | sed 's/.* //'` ])
554 fi
555 vi_cv_path_lua="$vi_cv_path_plain_lua"
556 vi_cv_version_lua="$vi_cv_version_plain_lua"
557 fi
558 if test "x$vi_cv_with_luajit" != "xno" && test "X$vi_cv_version_luajit" != "X"; then
559 AC_MSG_CHECKING(if lua.h can be found in $vi_cv_path_lua_pfx/include/luajit-$vi_cv_version_luajit)
Bram Moolenaar49222be2015-12-11 18:11:30 +0100560 if test -f "$vi_cv_path_lua_pfx/include/luajit-$vi_cv_version_luajit/lua.h"; then
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200561 AC_MSG_RESULT(yes)
562 LUA_INC=/luajit-$vi_cv_version_luajit
563 fi
564 fi
565 if test "X$LUA_INC" = "X"; then
566 AC_MSG_CHECKING(if lua.h can be found in $vi_cv_path_lua_pfx/include)
Bram Moolenaar49222be2015-12-11 18:11:30 +0100567 if test -f "$vi_cv_path_lua_pfx/include/lua.h"; then
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200568 AC_MSG_RESULT(yes)
Bram Moolenaar1e91f262012-10-03 14:48:08 +0200569 else
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200570 AC_MSG_RESULT(no)
571 AC_MSG_CHECKING(if lua.h can be found in $vi_cv_path_lua_pfx/include/lua$vi_cv_version_lua)
Bram Moolenaar49222be2015-12-11 18:11:30 +0100572 if test -f "$vi_cv_path_lua_pfx/include/lua$vi_cv_version_lua/lua.h"; then
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200573 AC_MSG_RESULT(yes)
574 LUA_INC=/lua$vi_cv_version_lua
575 else
576 AC_MSG_RESULT(no)
577 vi_cv_path_lua_pfx=
578 fi
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200579 fi
580 fi
581 fi
582
583 if test "X$vi_cv_path_lua_pfx" != "X"; then
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200584 if test "x$vi_cv_with_luajit" != "xno"; then
585 multiarch=`dpkg-architecture -qDEB_HOST_MULTIARCH 2> /dev/null`
586 if test "X$multiarch" != "X"; then
587 lib_multiarch="lib/${multiarch}"
588 else
589 lib_multiarch="lib"
590 fi
591 if test "X$vi_cv_version_lua" = "X"; then
592 LUA_LIBS="-L${vi_cv_path_lua_pfx}/${lib_multiarch} -lluajit"
593 else
594 LUA_LIBS="-L${vi_cv_path_lua_pfx}/${lib_multiarch} -lluajit-$vi_cv_version_lua"
595 fi
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200596 else
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200597 if test "X$LUA_INC" != "X"; then
598 dnl Test alternate location using version
599 LUA_LIBS="-L${vi_cv_path_lua_pfx}/lib -llua$vi_cv_version_lua"
600 else
601 LUA_LIBS="-L${vi_cv_path_lua_pfx}/lib -llua"
602 fi
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200603 fi
Bram Moolenaar2334b6d2010-07-22 21:32:16 +0200604 if test "$enable_luainterp" = "dynamic"; then
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200605 lua_ok="yes"
606 else
607 AC_MSG_CHECKING([if link with ${LUA_LIBS} is sane])
608 libs_save=$LIBS
609 LIBS="$LIBS $LUA_LIBS"
610 AC_TRY_LINK(,[ ],
611 AC_MSG_RESULT(yes); lua_ok="yes",
612 AC_MSG_RESULT(no); lua_ok="no"; LUA_LIBS="")
613 LIBS=$libs_save
614 fi
615 if test "x$lua_ok" = "xyes"; then
616 LUA_CFLAGS="-I${vi_cv_path_lua_pfx}/include${LUA_INC}"
617 LUA_SRC="if_lua.c"
618 LUA_OBJ="objects/if_lua.o"
619 LUA_PRO="if_lua.pro"
620 AC_DEFINE(FEAT_LUA)
621 fi
622 if test "$enable_luainterp" = "dynamic"; then
623 if test "x$vi_cv_with_luajit" != "xno"; then
624 luajit="jit"
625 fi
Bram Moolenaar1e91f262012-10-03 14:48:08 +0200626 if test -f "${vi_cv_path_lua_pfx}/bin/cyglua-${vi_cv_version_lua}.dll"; then
627 vi_cv_dll_name_lua="cyglua-${vi_cv_version_lua}.dll"
628 else
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200629 if test "x$MACOSX" = "xyes"; then
630 ext="dylib"
631 indexes=""
632 else
633 ext="so"
634 indexes=".0 .1 .2 .3 .4 .5 .6 .7 .8 .9"
635 multiarch=`dpkg-architecture -qDEB_HOST_MULTIARCH 2> /dev/null`
636 if test "X$multiarch" != "X"; then
637 lib_multiarch="lib/${multiarch}"
638 fi
Bram Moolenaar768baac2013-04-15 14:44:57 +0200639 fi
640 dnl Determine the sover for the current version, but fallback to
641 dnl liblua${vi_cv_version_lua}.so if no sover-versioned file is found.
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200642 AC_MSG_CHECKING(if liblua${luajit}*.${ext}* can be found in $vi_cv_path_lua_pfx)
Bram Moolenaar768baac2013-04-15 14:44:57 +0200643 for subdir in "${lib_multiarch}" lib64 lib; do
644 if test -z "$subdir"; then
645 continue
646 fi
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200647 for sover in "${vi_cv_version_lua}.${ext}" "-${vi_cv_version_lua}.${ext}" \
648 ".${vi_cv_version_lua}.${ext}" ".${ext}.${vi_cv_version_lua}"; do
649 for i in $indexes ""; do
650 if test -f "${vi_cv_path_lua_pfx}/${subdir}/liblua${luajit}${sover}$i"; then
Bram Moolenaar768baac2013-04-15 14:44:57 +0200651 sover2="$i"
652 break 3
653 fi
654 done
Bram Moolenaar07e1da62013-02-06 19:49:43 +0100655 done
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200656 sover=""
Bram Moolenaar1e91f262012-10-03 14:48:08 +0200657 done
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200658 if test "X$sover" = "X"; then
659 AC_MSG_RESULT(no)
660 lua_ok="no"
661 vi_cv_dll_name_lua="liblua${luajit}.${ext}"
662 else
663 AC_MSG_RESULT(yes)
664 lua_ok="yes"
665 vi_cv_dll_name_lua="liblua${luajit}${sover}$sover2"
666 fi
Bram Moolenaar1e91f262012-10-03 14:48:08 +0200667 fi
Bram Moolenaar2334b6d2010-07-22 21:32:16 +0200668 AC_DEFINE(DYNAMIC_LUA)
669 LUA_LIBS=""
Bram Moolenaar1e91f262012-10-03 14:48:08 +0200670 LUA_CFLAGS="-DDYNAMIC_LUA_DLL=\\\"${vi_cv_dll_name_lua}\\\" $LUA_CFLAGS"
Bram Moolenaar2334b6d2010-07-22 21:32:16 +0200671 fi
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200672 if test "X$LUA_CFLAGS$LUA_LIBS" != "X" && \
673 test "x$MACOSX" = "xyes" && test "x$vi_cv_with_luajit" != "xno" && \
674 test "`(uname -m) 2>/dev/null`" = "x86_64"; then
675 dnl OSX/x64 requires these flags. See http://luajit.org/install.html
676 LUA_LIBS="-pagezero_size 10000 -image_base 100000000 $LUA_LIBS"
677 fi
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200678 fi
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200679 if test "$fail_if_missing" = "yes" -a "$lua_ok" != "yes"; then
Bram Moolenaarf788a062011-12-14 20:51:25 +0100680 AC_MSG_ERROR([could not configure lua])
681 fi
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200682 AC_SUBST(LUA_SRC)
683 AC_SUBST(LUA_OBJ)
684 AC_SUBST(LUA_PRO)
685 AC_SUBST(LUA_LIBS)
686 AC_SUBST(LUA_CFLAGS)
687fi
688
689
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000690dnl Check for MzScheme feature.
691AC_MSG_CHECKING(--enable-mzschemeinterp argument)
692AC_ARG_ENABLE(mzschemeinterp,
693 [ --enable-mzschemeinterp Include MzScheme interpreter.], ,
694 [enable_mzschemeinterp="no"])
695AC_MSG_RESULT($enable_mzschemeinterp)
696
697if test "$enable_mzschemeinterp" = "yes"; then
698 dnl -- find the mzscheme executable
699 AC_SUBST(vi_cv_path_mzscheme)
700
701 AC_MSG_CHECKING(--with-plthome argument)
702 AC_ARG_WITH(plthome,
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000703 [ --with-plthome=PLTHOME Use PLTHOME.],
704 with_plthome="$withval"; AC_MSG_RESULT($with_plthome),
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000705 with_plthome="";AC_MSG_RESULT("no"))
706
707 if test "X$with_plthome" != "X"; then
708 vi_cv_path_mzscheme_pfx="$with_plthome"
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100709 vi_cv_path_mzscheme="${vi_cv_path_mzscheme_pfx}/bin/mzscheme"
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000710 else
711 AC_MSG_CHECKING(PLTHOME environment var)
712 if test "X$PLTHOME" != "X"; then
713 AC_MSG_RESULT("$PLTHOME")
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000714 vi_cv_path_mzscheme_pfx="$PLTHOME"
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100715 vi_cv_path_mzscheme="${vi_cv_path_mzscheme_pfx}/bin/mzscheme"
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000716 else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000717 AC_MSG_RESULT(not set)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000718 dnl -- try to find MzScheme executable
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000719 AC_PATH_PROG(vi_cv_path_mzscheme, mzscheme)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000720
721 dnl resolve symbolic link, the executable is often elsewhere and there
722 dnl are no links for the include files.
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000723 if test "X$vi_cv_path_mzscheme" != "X"; then
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000724 lsout=`ls -l $vi_cv_path_mzscheme`
725 if echo "$lsout" | grep -e '->' >/dev/null 2>/dev/null; then
726 vi_cv_path_mzscheme=`echo "$lsout" | sed 's/.*-> \(.*\)/\1/'`
727 fi
728 fi
729
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000730 if test "X$vi_cv_path_mzscheme" != "X"; then
731 dnl -- find where MzScheme thinks it was installed
732 AC_CACHE_CHECK(MzScheme install prefix,vi_cv_path_mzscheme_pfx,
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000733 dnl different versions of MzScheme differ in command line processing
734 dnl use universal approach
735 echo "(display (simplify-path \
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000736 (build-path (call-with-values \
737 (lambda () (split-path (find-system-path (quote exec-file)))) \
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000738 (lambda (base name must-be-dir?) base)) (quote up))))" > mzdirs.scm
739 dnl Remove a trailing slash
740 [ vi_cv_path_mzscheme_pfx=`${vi_cv_path_mzscheme} -r mzdirs.scm | \
741 sed -e 's+/$++'` ])
742 rm -f mzdirs.scm
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000743 fi
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000744 fi
745 fi
746
747 if test "X$vi_cv_path_mzscheme_pfx" != "X"; then
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100748 AC_MSG_CHECKING(for racket include directory)
749 SCHEME_INC=`${vi_cv_path_mzscheme} -e '(require setup/dirs)(let ((p (find-include-dir))) (when (path? p) (display p)))'`
750 if test "X$SCHEME_INC" != "X"; then
751 AC_MSG_RESULT(${SCHEME_INC})
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000752 else
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100753 AC_MSG_RESULT(not found)
754 AC_MSG_CHECKING(if scheme.h can be found in $vi_cv_path_mzscheme_pfx/include)
755 if test -f "$vi_cv_path_mzscheme_pfx/include/scheme.h"; then
756 SCHEME_INC=${vi_cv_path_mzscheme_pfx}/include
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000757 AC_MSG_RESULT(yes)
Bram Moolenaard7afed32007-05-06 13:26:41 +0000758 else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000759 AC_MSG_RESULT(no)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100760 AC_MSG_CHECKING(if scheme.h can be found in $vi_cv_path_mzscheme_pfx/include/plt)
761 if test -f "$vi_cv_path_mzscheme_pfx/include/plt/scheme.h"; then
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000762 AC_MSG_RESULT(yes)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100763 SCHEME_INC=${vi_cv_path_mzscheme_pfx}/include/plt
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000764 else
765 AC_MSG_RESULT(no)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100766 AC_MSG_CHECKING(if scheme.h can be found in $vi_cv_path_mzscheme_pfx/include/racket)
767 if test -f "$vi_cv_path_mzscheme_pfx/include/racket/scheme.h"; then
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100768 AC_MSG_RESULT(yes)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100769 SCHEME_INC=${vi_cv_path_mzscheme_pfx}/include/racket
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100770 else
771 AC_MSG_RESULT(no)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100772 AC_MSG_CHECKING(if scheme.h can be found in /usr/include/plt/)
773 if test -f /usr/include/plt/scheme.h; then
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100774 AC_MSG_RESULT(yes)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100775 SCHEME_INC=/usr/include/plt
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100776 else
777 AC_MSG_RESULT(no)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100778 AC_MSG_CHECKING(if scheme.h can be found in /usr/include/racket/)
779 if test -f /usr/include/racket/scheme.h; then
780 AC_MSG_RESULT(yes)
781 SCHEME_INC=/usr/include/racket
782 else
783 AC_MSG_RESULT(no)
784 vi_cv_path_mzscheme_pfx=
785 fi
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100786 fi
787 fi
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000788 fi
Bram Moolenaard7afed32007-05-06 13:26:41 +0000789 fi
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000790 fi
791 fi
792
793 if test "X$vi_cv_path_mzscheme_pfx" != "X"; then
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100794
795 AC_MSG_CHECKING(for racket lib directory)
796 SCHEME_LIB=`${vi_cv_path_mzscheme} -e '(require setup/dirs)(let ((p (find-lib-dir))) (when (path? p) (display p)))'`
797 if test "X$SCHEME_LIB" != "X"; then
798 AC_MSG_RESULT(${SCHEME_LIB})
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000799 else
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100800 AC_MSG_RESULT(not found)
801 fi
802
803 for path in "${vi_cv_path_mzscheme_pfx}/lib" "${SCHEME_LIB}"; do
804 if test "X$path" != "X"; then
805 if test "x$MACOSX" = "xyes"; then
806 MZSCHEME_LIBS="-framework Racket"
807 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
808 elif test -f "${path}/libmzscheme3m.a"; then
809 MZSCHEME_LIBS="${path}/libmzscheme3m.a"
810 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
811 elif test -f "${path}/libracket3m.a"; then
812 MZSCHEME_LIBS="${path}/libracket3m.a"
813 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
814 elif test -f "${path}/libracket.a"; then
815 MZSCHEME_LIBS="${path}/libracket.a ${path}/libmzgc.a"
816 elif test -f "${path}/libmzscheme.a"; then
817 MZSCHEME_LIBS="${path}/libmzscheme.a ${path}/libmzgc.a"
818 else
819 dnl Using shared objects
820 if test -f "${path}/libmzscheme3m.so"; then
821 MZSCHEME_LIBS="-L${path} -lmzscheme3m"
822 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
823 elif test -f "${path}/libracket3m.so"; then
824 MZSCHEME_LIBS="-L${path} -lracket3m"
825 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
826 elif test -f "${path}/libracket.so"; then
827 MZSCHEME_LIBS="-L${path} -lracket -lmzgc"
828 else
829 dnl try next until last
830 if test "$path" != "$SCHEME_LIB"; then
831 continue
832 fi
833 MZSCHEME_LIBS="-L${path} -lmzscheme -lmzgc"
834 fi
835 if test "$GCC" = yes; then
836 dnl Make Vim remember the path to the library. For when it's not in
837 dnl $LD_LIBRARY_PATH.
838 MZSCHEME_LIBS="${MZSCHEME_LIBS} -Wl,-rpath -Wl,${path}"
839 elif test "`(uname) 2>/dev/null`" = SunOS &&
840 uname -r | grep '^5' >/dev/null; then
841 MZSCHEME_LIBS="${MZSCHEME_LIBS} -R ${path}"
842 fi
843 fi
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000844 fi
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100845 if test "X$MZSCHEME_LIBS" != "X"; then
846 break
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000847 fi
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100848 done
849
850 AC_MSG_CHECKING([if racket requires -pthread])
851 if test "X$SCHEME_LIB" != "X" && $FGREP -e -pthread "$SCHEME_LIB/buildinfo" >/dev/null ; then
852 AC_MSG_RESULT(yes)
853 MZSCHEME_LIBS="${MZSCHEME_LIBS} -pthread"
854 MZSCHEME_CFLAGS="${MZSCHEME_CFLAGS} -pthread"
855 else
856 AC_MSG_RESULT(no)
857 fi
858
859 AC_MSG_CHECKING(for racket config directory)
860 SCHEME_CONFIGDIR=`${vi_cv_path_mzscheme} -e '(require setup/dirs)(let ((p (find-config-dir))) (when (path? p) (display p)))'`
861 if test "X$SCHEME_CONFIGDIR" != "X"; then
862 MZSCHEME_CFLAGS="${MZSCHEME_CFLAGS} -DMZSCHEME_CONFIGDIR='\"${SCHEME_CONFIGDIR}\"'"
863 AC_MSG_RESULT(${SCHEME_CONFIGDIR})
864 else
865 AC_MSG_RESULT(not found)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000866 fi
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100867
868 AC_MSG_CHECKING(for racket collects directory)
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100869 SCHEME_COLLECTS=`${vi_cv_path_mzscheme} -e '(require setup/dirs)(let ((p (find-collects-dir))) (when (path? p) (let-values (((base _1 _2) (split-path p))) (display base))))'`
870 if test "X$SCHEME_COLLECTS" = "X"; then
871 if test -d "$vi_cv_path_mzscheme_pfx/lib/plt/collects"; then
872 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/lib/plt/
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100873 else
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100874 if test -d "$vi_cv_path_mzscheme_pfx/lib/racket/collects"; then
875 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/lib/racket/
Bram Moolenaar75676462013-01-30 14:55:42 +0100876 else
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100877 if test -d "$vi_cv_path_mzscheme_pfx/share/racket/collects"; then
878 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/share/racket/
879 else
880 if test -d "$vi_cv_path_mzscheme_pfx/collects"; then
881 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/
882 fi
Bram Moolenaar75676462013-01-30 14:55:42 +0100883 fi
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100884 fi
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100885 fi
Bram Moolenaard7afed32007-05-06 13:26:41 +0000886 fi
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100887 if test "X$SCHEME_COLLECTS" != "X" ; then
888 AC_MSG_RESULT(${SCHEME_COLLECTS})
889 else
890 AC_MSG_RESULT(not found)
891 fi
892
893 AC_MSG_CHECKING(for mzscheme_base.c)
894 if test -f "${SCHEME_COLLECTS}collects/scheme/base.ss" ; then
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000895 MZSCHEME_EXTRA="mzscheme_base.c"
Bram Moolenaar45e2bcc2014-02-15 17:19:00 +0100896 MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/mzc"
897 MZSCHEME_MOD="++lib scheme/base"
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100898 else
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100899 if test -f "${SCHEME_COLLECTS}collects/scheme/base.rkt" ; then
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100900 MZSCHEME_EXTRA="mzscheme_base.c"
Bram Moolenaar45e2bcc2014-02-15 17:19:00 +0100901 MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/mzc"
902 MZSCHEME_MOD="++lib scheme/base"
903 else
904 if test -f "${SCHEME_COLLECTS}collects/racket/base.rkt" ; then
905 MZSCHEME_EXTRA="mzscheme_base.c"
906 MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/raco ctool"
907 MZSCHEME_MOD=""
908 fi
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100909 fi
910 fi
911 if test "X$MZSCHEME_EXTRA" != "X" ; then
912 dnl need to generate bytecode for MzScheme base
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000913 MZSCHEME_CFLAGS="${MZSCHEME_CFLAGS} -DINCLUDE_MZSCHEME_BASE"
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100914 AC_MSG_RESULT(needed)
915 else
916 AC_MSG_RESULT(not needed)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000917 fi
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100918
Bram Moolenaar9e902192013-07-17 18:58:11 +0200919 dnl On Ubuntu this fixes "undefined reference to symbol 'ffi_type_void'".
920 AC_CHECK_LIB(ffi, ffi_type_void, [MZSCHEME_LIBS="$MZSCHEME_LIBS -lffi"])
921
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000922 MZSCHEME_CFLAGS="${MZSCHEME_CFLAGS} -I${SCHEME_INC} \
Bram Moolenaarfe9fb922012-11-23 21:54:48 +0100923 -DMZSCHEME_COLLECTS='\"${SCHEME_COLLECTS}collects\"'"
Bram Moolenaar9e902192013-07-17 18:58:11 +0200924
925 dnl Test that we can compile a simple program with these CFLAGS and LIBS.
926 AC_MSG_CHECKING([if compile and link flags for MzScheme are sane])
927 cflags_save=$CFLAGS
928 libs_save=$LIBS
929 CFLAGS="$CFLAGS $MZSCHEME_CFLAGS"
930 LIBS="$LIBS $MZSCHEME_LIBS"
931 AC_TRY_LINK(,[ ],
932 AC_MSG_RESULT(yes); mzs_ok=yes,
933 AC_MSG_RESULT(no: MZSCHEME DISABLED); mzs_ok=no)
934 CFLAGS=$cflags_save
935 LIBS=$libs_save
936 if test $mzs_ok = yes; then
937 MZSCHEME_SRC="if_mzsch.c"
938 MZSCHEME_OBJ="objects/if_mzsch.o"
939 MZSCHEME_PRO="if_mzsch.pro"
940 AC_DEFINE(FEAT_MZSCHEME)
941 else
942 MZSCHEME_CFLAGS=
943 MZSCHEME_LIBS=
944 MZSCHEME_EXTRA=
945 MZSCHEME_MZC=
946 fi
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000947 fi
948 AC_SUBST(MZSCHEME_SRC)
949 AC_SUBST(MZSCHEME_OBJ)
950 AC_SUBST(MZSCHEME_PRO)
951 AC_SUBST(MZSCHEME_LIBS)
952 AC_SUBST(MZSCHEME_CFLAGS)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000953 AC_SUBST(MZSCHEME_EXTRA)
954 AC_SUBST(MZSCHEME_MZC)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000955fi
956
957
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958AC_MSG_CHECKING(--enable-perlinterp argument)
959AC_ARG_ENABLE(perlinterp,
Bram Moolenaare06c1882010-07-21 22:05:20 +0200960 [ --enable-perlinterp[=OPTS] Include Perl interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 [enable_perlinterp="no"])
962AC_MSG_RESULT($enable_perlinterp)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200963if test "$enable_perlinterp" = "yes" -o "$enable_perlinterp" = "dynamic"; then
Bram Moolenaar3c124e32016-01-31 14:36:58 +0100964 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
965 AC_MSG_ERROR([cannot use Perl with tiny or small features])
966 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 AC_SUBST(vi_cv_path_perl)
968 AC_PATH_PROG(vi_cv_path_perl, perl)
969 if test "X$vi_cv_path_perl" != "X"; then
970 AC_MSG_CHECKING(Perl version)
971 if $vi_cv_path_perl -e 'require 5.003_01' >/dev/null 2>/dev/null; then
972 eval `$vi_cv_path_perl -V:usethreads`
Bram Moolenaare06c1882010-07-21 22:05:20 +0200973 eval `$vi_cv_path_perl -V:libperl`
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 if test "X$usethreads" = "XUNKNOWN" -o "X$usethreads" = "Xundef"; then
975 badthreads=no
976 else
977 if $vi_cv_path_perl -e 'require 5.6.0' >/dev/null 2>/dev/null; then
978 eval `$vi_cv_path_perl -V:use5005threads`
979 if test "X$use5005threads" = "XUNKNOWN" -o "X$use5005threads" = "Xundef"; then
980 badthreads=no
981 else
982 badthreads=yes
983 AC_MSG_RESULT(>>> Perl > 5.6 with 5.5 threads cannot be used <<<)
984 fi
985 else
986 badthreads=yes
987 AC_MSG_RESULT(>>> Perl 5.5 with threads cannot be used <<<)
988 fi
989 fi
990 if test $badthreads = no; then
991 AC_MSG_RESULT(OK)
992 eval `$vi_cv_path_perl -V:shrpenv`
993 if test "X$shrpenv" = "XUNKNOWN"; then # pre 5.003_04
994 shrpenv=""
995 fi
996 vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
997 AC_SUBST(vi_cv_perllib)
Bram Moolenaard5f62b12014-08-17 17:05:44 +0200998 vi_cv_perl_extutils=unknown_perl_extutils_path
999 for extutils_rel_path in ExtUtils vendor_perl/ExtUtils; do
1000 xsubpp_path="$vi_cv_perllib/$extutils_rel_path/xsubpp"
1001 if test -f "$xsubpp_path"; then
1002 vi_cv_perl_xsubpp="$xsubpp_path"
1003 fi
1004 done
1005 AC_SUBST(vi_cv_perl_xsubpp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 dnl Remove "-fno-something", it breaks using cproto.
Bram Moolenaar280a8682015-06-21 13:41:08 +02001007 dnl Remove "-fdebug-prefix-map", it isn't supported by clang.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
Bram Moolenaar280a8682015-06-21 13:41:08 +02001009 -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[[^ ]]*//' \
1010 -e 's/-fdebug-prefix-map[[^ ]]*//g'`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 dnl Remove "-lc", it breaks on FreeBSD when using "-pthread".
1012 perllibs=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed -e 'ldopts' | \
1013 sed -e '/Warning/d' -e '/Note (probably harmless)/d' \
1014 -e 's/-bE:perl.exp//' -e 's/-lc //'`
1015 dnl Don't add perl lib to $LIBS: if it's not in LD_LIBRARY_PATH
1016 dnl a test in configure may fail because of that.
1017 perlldflags=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed \
1018 -e 'ccdlflags' | sed -e 's/-bE:perl.exp//'`
1019
1020 dnl check that compiling a simple program still works with the flags
1021 dnl added for Perl.
1022 AC_MSG_CHECKING([if compile and link flags for Perl are sane])
1023 cflags_save=$CFLAGS
1024 libs_save=$LIBS
1025 ldflags_save=$LDFLAGS
1026 CFLAGS="$CFLAGS $perlcppflags"
1027 LIBS="$LIBS $perllibs"
Bram Moolenaara6cc0312013-06-18 23:31:55 +02001028 perlldflags=`echo "$perlldflags" | sed -e 's/^ *//g'`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 LDFLAGS="$perlldflags $LDFLAGS"
1030 AC_TRY_LINK(,[ ],
1031 AC_MSG_RESULT(yes); perl_ok=yes,
1032 AC_MSG_RESULT(no: PERL DISABLED); perl_ok=no)
1033 CFLAGS=$cflags_save
1034 LIBS=$libs_save
1035 LDFLAGS=$ldflags_save
1036 if test $perl_ok = yes; then
1037 if test "X$perlcppflags" != "X"; then
Bram Moolenaard7afed32007-05-06 13:26:41 +00001038 dnl remove -pipe and -Wxxx, it confuses cproto
1039 PERL_CFLAGS=`echo "$perlcppflags" | sed -e 's/-pipe //' -e 's/-W[[^ ]]*//'`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 fi
1041 if test "X$perlldflags" != "X"; then
Bram Moolenaar2bcaec32014-03-27 18:51:11 +01001042 if test "X`echo \"$LDFLAGS\" | $FGREP -e \"$perlldflags\"`" = "X"; then
Bram Moolenaara6cc0312013-06-18 23:31:55 +02001043 LDFLAGS="$perlldflags $LDFLAGS"
1044 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 fi
1046 PERL_LIBS=$perllibs
1047 PERL_SRC="auto/if_perl.c if_perlsfio.c"
1048 PERL_OBJ="objects/if_perl.o objects/if_perlsfio.o"
1049 PERL_PRO="if_perl.pro if_perlsfio.pro"
1050 AC_DEFINE(FEAT_PERL)
1051 fi
1052 fi
1053 else
1054 AC_MSG_RESULT(>>> too old; need Perl version 5.003_01 or later <<<)
1055 fi
1056 fi
1057
1058 if test "x$MACOSX" = "xyes"; then
Bram Moolenaar9372a112005-12-06 19:59:18 +00001059 dnl Mac OS X 10.2 or later
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 dir=/System/Library/Perl
1061 darwindir=$dir/darwin
1062 if test -d $darwindir; then
1063 PERL=/usr/bin/perl
1064 else
1065 dnl Mac OS X 10.3
1066 dir=/System/Library/Perl/5.8.1
1067 darwindir=$dir/darwin-thread-multi-2level
1068 if test -d $darwindir; then
1069 PERL=/usr/bin/perl
1070 fi
1071 fi
1072 if test -n "$PERL"; then
1073 PERL_DIR="$dir"
1074 PERL_CFLAGS="-DFEAT_PERL -I$darwindir/CORE"
1075 PERL_OBJ="objects/if_perl.o objects/if_perlsfio.o $darwindir/auto/DynaLoader/DynaLoader.a"
1076 PERL_LIBS="-L$darwindir/CORE -lperl"
1077 fi
Bram Moolenaar5dff57d2010-07-24 16:19:44 +02001078 dnl Perl on Mac OS X 10.5 adds "-arch" flags but these should only
1079 dnl be included if requested by passing --with-mac-arch to
1080 dnl configure, so strip these flags first (if present)
1081 PERL_LIBS=`echo "$PERL_LIBS" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//' -e 's/-arch\ x86_64//'`
1082 PERL_CFLAGS=`echo "$PERL_CFLAGS" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//' -e 's/-arch\ x86_64//'`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 fi
Bram Moolenaare06c1882010-07-21 22:05:20 +02001084 if test "$enable_perlinterp" = "dynamic"; then
1085 if test "$perl_ok" = "yes" -a "X$libperl" != "X"; then
1086 AC_DEFINE(DYNAMIC_PERL)
1087 PERL_CFLAGS="-DDYNAMIC_PERL_DLL=\\\"$libperl\\\" $PERL_CFLAGS"
1088 fi
1089 fi
Bram Moolenaarf788a062011-12-14 20:51:25 +01001090
1091 if test "$fail_if_missing" = "yes" -a "$perl_ok" != "yes"; then
1092 AC_MSG_ERROR([could not configure perl])
1093 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094fi
1095AC_SUBST(shrpenv)
1096AC_SUBST(PERL_SRC)
1097AC_SUBST(PERL_OBJ)
1098AC_SUBST(PERL_PRO)
1099AC_SUBST(PERL_CFLAGS)
1100AC_SUBST(PERL_LIBS)
1101
1102AC_MSG_CHECKING(--enable-pythoninterp argument)
1103AC_ARG_ENABLE(pythoninterp,
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001104 [ --enable-pythoninterp[=OPTS] Include Python interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 [enable_pythoninterp="no"])
1106AC_MSG_RESULT($enable_pythoninterp)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001107if test "$enable_pythoninterp" = "yes" -o "$enable_pythoninterp" = "dynamic"; then
Bram Moolenaar0b105412014-11-30 13:34:23 +01001108 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
1109 AC_MSG_ERROR([cannot use Python with tiny or small features])
1110 fi
1111
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 dnl -- find the python executable
Bram Moolenaar09ba6d72012-12-12 14:25:05 +01001113 AC_PATH_PROGS(vi_cv_path_python, python2 python)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 if test "X$vi_cv_path_python" != "X"; then
1115
1116 dnl -- get its version number
1117 AC_CACHE_CHECK(Python version,vi_cv_var_python_version,
1118 [[vi_cv_var_python_version=`
1119 ${vi_cv_path_python} -c 'import sys; print sys.version[:3]'`
1120 ]])
1121
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001122 dnl -- it must be at least version 2.3
1123 AC_MSG_CHECKING(Python is 2.3 or better)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 if ${vi_cv_path_python} -c \
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001125 "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 then
1127 AC_MSG_RESULT(yep)
1128
1129 dnl -- find where python thinks it was installed
1130 AC_CACHE_CHECK(Python's install prefix,vi_cv_path_python_pfx,
1131 [ vi_cv_path_python_pfx=`
1132 ${vi_cv_path_python} -c \
1133 "import sys; print sys.prefix"` ])
1134
1135 dnl -- and where it thinks it runs
1136 AC_CACHE_CHECK(Python's execution prefix,vi_cv_path_python_epfx,
1137 [ vi_cv_path_python_epfx=`
1138 ${vi_cv_path_python} -c \
1139 "import sys; print sys.exec_prefix"` ])
1140
1141 dnl -- python's internal library path
1142
1143 AC_CACHE_VAL(vi_cv_path_pythonpath,
1144 [ vi_cv_path_pythonpath=`
1145 unset PYTHONPATH;
1146 ${vi_cv_path_python} -c \
1147 "import sys, string; print string.join(sys.path,':')"` ])
1148
1149 dnl -- where the Python implementation library archives are
1150
1151 AC_ARG_WITH(python-config-dir,
1152 [ --with-python-config-dir=PATH Python's config directory],
1153 [ vi_cv_path_python_conf="${withval}" ] )
1154
1155 AC_CACHE_CHECK(Python's configuration directory,vi_cv_path_python_conf,
1156 [
1157 vi_cv_path_python_conf=
Bram Moolenaarac499e32013-06-02 19:14:17 +02001158 d=`${vi_cv_path_python} -c "import distutils.sysconfig; print distutils.sysconfig.get_config_var('LIBPL')"`
1159 if test -d "$d" && test -f "$d/config.c"; then
1160 vi_cv_path_python_conf="$d"
1161 else
1162 for path in "${vi_cv_path_python_pfx}" "${vi_cv_path_python_epfx}"; do
1163 for subdir in lib64 lib share; do
1164 d="${path}/${subdir}/python${vi_cv_var_python_version}/config"
1165 if test -d "$d" && test -f "$d/config.c"; then
1166 vi_cv_path_python_conf="$d"
1167 fi
1168 done
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 done
Bram Moolenaarac499e32013-06-02 19:14:17 +02001170 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 ])
1172
1173 PYTHON_CONFDIR="${vi_cv_path_python_conf}"
1174
1175 if test "X$PYTHON_CONFDIR" = "X"; then
1176 AC_MSG_RESULT([can't find it!])
1177 else
1178
1179 dnl -- we need to examine Python's config/Makefile too
1180 dnl see what the interpreter is built from
1181 AC_CACHE_VAL(vi_cv_path_python_plibs,
1182 [
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001183 pwd=`pwd`
1184 tmp_mkf="$pwd/config-PyMake$$"
1185 cat -- "${PYTHON_CONFDIR}/Makefile" - <<'eof' >"${tmp_mkf}"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186__:
Bram Moolenaar218116c2010-05-20 21:46:00 +02001187 @echo "python_BASEMODLIBS='$(BASEMODLIBS)'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 @echo "python_LIBS='$(LIBS)'"
1189 @echo "python_SYSLIBS='$(SYSLIBS)'"
1190 @echo "python_LINKFORSHARED='$(LINKFORSHARED)'"
Bram Moolenaarf94a13c2012-09-21 13:26:49 +02001191 @echo "python_DLLLIBRARY='$(DLLLIBRARY)'"
Bram Moolenaar2a7e2a62010-07-24 15:19:11 +02001192 @echo "python_INSTSONAME='$(INSTSONAME)'"
Bram Moolenaar6c927552015-03-24 12:21:33 +01001193 @echo "python_PYTHONFRAMEWORK='$(PYTHONFRAMEWORK)'"
1194 @echo "python_PYTHONFRAMEWORKPREFIX='$(PYTHONFRAMEWORKPREFIX)'"
1195 @echo "python_PYTHONFRAMEWORKINSTALLDIR='$(PYTHONFRAMEWORKINSTALLDIR)'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196eof
1197 dnl -- delete the lines from make about Entering/Leaving directory
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001198 eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`"
1199 rm -f -- "${tmp_mkf}"
Bram Moolenaarcff50f52016-08-14 17:32:52 +02001200 if test "x$MACOSX" = "xyes" && test -n "${python_PYTHONFRAMEWORK}" && ${vi_cv_path_python} -c \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then
1202 vi_cv_path_python_plibs="-framework Python"
Bram Moolenaar6c927552015-03-24 12:21:33 +01001203 if test "x${vi_cv_path_python}" != "x/usr/bin/python" && test -n "${python_PYTHONFRAMEWORKPREFIX}"; then
1204 vi_cv_path_python_plibs="-F${python_PYTHONFRAMEWORKPREFIX} -framework Python"
1205 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 else
1207 if test "${vi_cv_var_python_version}" = "1.4"; then
1208 vi_cv_path_python_plibs="${PYTHON_CONFDIR}/libModules.a ${PYTHON_CONFDIR}/libPython.a ${PYTHON_CONFDIR}/libObjects.a ${PYTHON_CONFDIR}/libParser.a"
1209 else
1210 vi_cv_path_python_plibs="-L${PYTHON_CONFDIR} -lpython${vi_cv_var_python_version}"
1211 fi
Bram Moolenaar6c927552015-03-24 12:21:33 +01001212 dnl -- Check if the path contained in python_LINKFORSHARED is
1213 dnl usable for vim build. If not, make and try other
1214 dnl candidates.
Bram Moolenaara161e262015-03-24 15:14:27 +01001215 if test -n "${python_LINKFORSHARED}" && test -n "${python_PYTHONFRAMEWORKPREFIX}"; then
Bram Moolenaar6c927552015-03-24 12:21:33 +01001216 python_link_symbol=`echo ${python_LINKFORSHARED} | sed 's/\([[^ \t]][[^ \t]]*[[ \t]][[ \t]]*[[^ \t]][[^ \t]]*\)[[ \t]].*/\1/'`
1217 python_link_path=`echo ${python_LINKFORSHARED} | sed 's/\([[^ \t]][[^ \t]]*[[ \t]][[ \t]]*[[^ \t]][[^ \t]]*\)[[ \t]][[ \t]]*\(.*\)/\2/'`
1218 if test -n "${python_link_path}" && ! test -x "${python_link_path}"; then
1219 dnl -- The path looks relative. Guess the absolute one using
1220 dnl the prefix and try that.
1221 python_link_path="${python_PYTHONFRAMEWORKPREFIX}/${python_link_path}"
1222 if test -n "${python_link_path}" && ! test -x "${python_link_path}"; then
1223 dnl -- A last resort.
1224 python_link_path="${python_PYTHONFRAMEWORKINSTALLDIR}/Versions/${vi_cv_var_python_version}/${python_PYTHONFRAMEWORK}"
1225 dnl -- No check is done. The last word is left to the
1226 dnl "sanity" test on link flags that follows shortly.
1227 fi
1228 python_LINKFORSHARED="${python_link_symbol} ${python_link_path}"
1229 fi
1230 fi
Bram Moolenaar218116c2010-05-20 21:46:00 +02001231 vi_cv_path_python_plibs="${vi_cv_path_python_plibs} ${python_BASEMODLIBS} ${python_LIBS} ${python_SYSLIBS} ${python_LINKFORSHARED}"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 dnl remove -ltermcap, it can conflict with an earlier -lncurses
1233 vi_cv_path_python_plibs=`echo $vi_cv_path_python_plibs | sed s/-ltermcap//`
1234 fi
1235 ])
Bram Moolenaarba59ddb2016-01-28 15:34:25 +01001236 AC_CACHE_CHECK(Python's dll name,vi_cv_dll_name_python,
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001237 [
1238 if test "X$python_DLLLIBRARY" != "X"; then
1239 vi_cv_dll_name_python="$python_DLLLIBRARY"
1240 else
1241 vi_cv_dll_name_python="$python_INSTSONAME"
1242 fi
1243 ])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
1245 PYTHON_LIBS="${vi_cv_path_python_plibs}"
1246 if test "${vi_cv_path_python_pfx}" = "${vi_cv_path_python_epfx}"; then
Bram Moolenaar780c3e92013-06-11 20:53:28 +02001247 PYTHON_CFLAGS="-I${vi_cv_path_python_pfx}/include/python${vi_cv_var_python_version} -DPYTHON_HOME='\"${vi_cv_path_python_pfx}\"'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 else
Bram Moolenaar780c3e92013-06-11 20:53:28 +02001249 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} -DPYTHON_HOME='\"${vi_cv_path_python_pfx}\"'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 fi
1251 PYTHON_SRC="if_python.c"
Bram Moolenaar9bdb9a02012-07-25 16:32:08 +02001252 PYTHON_OBJ="objects/if_python.o"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 if test "${vi_cv_var_python_version}" = "1.4"; then
1254 PYTHON_OBJ="$PYTHON_OBJ objects/py_getpath.o"
1255 fi
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001256 PYTHON_GETPATH_CFLAGS="-DPYTHONPATH='\"${vi_cv_path_pythonpath}\"' -DPREFIX='\"${vi_cv_path_python_pfx}\"' -DEXEC_PREFIX='\"${vi_cv_path_python_epfx}\"'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257
1258 dnl On FreeBSD linking with "-pthread" is required to use threads.
1259 dnl _THREAD_SAFE must be used for compiling then.
1260 dnl The "-pthread" is added to $LIBS, so that the following check for
1261 dnl sigaltstack() will look in libc_r (it's there in libc!).
1262 dnl Otherwise, when using GCC, try adding -pthread to $CFLAGS. GCC
1263 dnl will then define target-specific defines, e.g., -D_REENTRANT.
1264 dnl Don't do this for Mac OSX, -pthread will generate a warning.
1265 AC_MSG_CHECKING([if -pthread should be used])
1266 threadsafe_flag=
1267 thread_lib=
Bram Moolenaara1b5aa52006-10-10 09:41:28 +00001268 dnl if test "x$MACOSX" != "xyes"; then
1269 if test "`(uname) 2>/dev/null`" != Darwin; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 test "$GCC" = yes && threadsafe_flag="-pthread"
1271 if test "`(uname) 2>/dev/null`" = FreeBSD; then
1272 threadsafe_flag="-D_THREAD_SAFE"
1273 thread_lib="-pthread"
1274 fi
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001275 if test "`(uname) 2>/dev/null`" = SunOS; then
1276 threadsafe_flag="-pthreads"
1277 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 fi
1279 libs_save_old=$LIBS
1280 if test -n "$threadsafe_flag"; then
1281 cflags_save=$CFLAGS
1282 CFLAGS="$CFLAGS $threadsafe_flag"
1283 LIBS="$LIBS $thread_lib"
1284 AC_TRY_LINK(,[ ],
Bram Moolenaar69f787a2010-07-11 20:52:58 +02001285 AC_MSG_RESULT(yes); PYTHON_CFLAGS="$PYTHON_CFLAGS $threadsafe_flag",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 AC_MSG_RESULT(no); LIBS=$libs_save_old
1287 )
1288 CFLAGS=$cflags_save
1289 else
1290 AC_MSG_RESULT(no)
1291 fi
1292
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001293 dnl Check that compiling a simple program still works with the flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 dnl added for Python.
1295 AC_MSG_CHECKING([if compile and link flags for Python are sane])
1296 cflags_save=$CFLAGS
1297 libs_save=$LIBS
Bram Moolenaar69f787a2010-07-11 20:52:58 +02001298 CFLAGS="$CFLAGS $PYTHON_CFLAGS"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 LIBS="$LIBS $PYTHON_LIBS"
1300 AC_TRY_LINK(,[ ],
1301 AC_MSG_RESULT(yes); python_ok=yes,
1302 AC_MSG_RESULT(no: PYTHON DISABLED); python_ok=no)
1303 CFLAGS=$cflags_save
1304 LIBS=$libs_save
1305 if test $python_ok = yes; then
1306 AC_DEFINE(FEAT_PYTHON)
1307 else
1308 LIBS=$libs_save_old
1309 PYTHON_SRC=
1310 PYTHON_OBJ=
1311 PYTHON_LIBS=
1312 PYTHON_CFLAGS=
1313 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 fi
1315 else
1316 AC_MSG_RESULT(too old)
1317 fi
1318 fi
Bram Moolenaarf788a062011-12-14 20:51:25 +01001319
1320 if test "$fail_if_missing" = "yes" -a "$python_ok" != "yes"; then
1321 AC_MSG_ERROR([could not configure python])
1322 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323fi
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001324
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325AC_SUBST(PYTHON_CONFDIR)
1326AC_SUBST(PYTHON_LIBS)
1327AC_SUBST(PYTHON_GETPATH_CFLAGS)
1328AC_SUBST(PYTHON_CFLAGS)
1329AC_SUBST(PYTHON_SRC)
1330AC_SUBST(PYTHON_OBJ)
1331
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001332
1333AC_MSG_CHECKING(--enable-python3interp argument)
1334AC_ARG_ENABLE(python3interp,
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001335 [ --enable-python3interp[=OPTS] Include Python3 interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001336 [enable_python3interp="no"])
1337AC_MSG_RESULT($enable_python3interp)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001338if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic"; then
Bram Moolenaar0b105412014-11-30 13:34:23 +01001339 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
1340 AC_MSG_ERROR([cannot use Python with tiny or small features])
1341 fi
1342
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001343 dnl -- find the python3 executable
Bram Moolenaar09ba6d72012-12-12 14:25:05 +01001344 AC_PATH_PROGS(vi_cv_path_python3, python3 python)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001345 if test "X$vi_cv_path_python3" != "X"; then
1346
1347 dnl -- get its version number
1348 AC_CACHE_CHECK(Python version,vi_cv_var_python3_version,
1349 [[vi_cv_var_python3_version=`
Bram Moolenaar3804aeb2010-07-19 21:18:54 +02001350 ${vi_cv_path_python3} -c 'import sys; print(sys.version[:3])'`
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001351 ]])
1352
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001353 dnl -- it must be at least version 3
1354 AC_MSG_CHECKING(Python is 3.0 or better)
1355 if ${vi_cv_path_python3} -c \
1356 "import sys; sys.exit(${vi_cv_var_python3_version} < 3.0)"
1357 then
1358 AC_MSG_RESULT(yep)
Bram Moolenaar456f2bb2011-06-12 21:37:13 +02001359
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001360 dnl -- get abiflags for python 3.2 or higher (PEP 3149)
1361 AC_CACHE_CHECK(Python's abiflags,vi_cv_var_python3_abiflags,
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001362 [
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001363 vi_cv_var_python3_abiflags=
1364 if ${vi_cv_path_python3} -c \
1365 "import sys; sys.exit(${vi_cv_var_python3_version} < 3.2)"
1366 then
1367 vi_cv_var_python3_abiflags=`${vi_cv_path_python3} -c \
1368 "import sys; print(sys.abiflags)"`
1369 fi ])
1370
1371 dnl -- find where python3 thinks it was installed
1372 AC_CACHE_CHECK(Python's install prefix,vi_cv_path_python3_pfx,
1373 [ vi_cv_path_python3_pfx=`
1374 ${vi_cv_path_python3} -c \
1375 "import sys; print(sys.prefix)"` ])
1376
1377 dnl -- and where it thinks it runs
1378 AC_CACHE_CHECK(Python's execution prefix,vi_cv_path_python3_epfx,
1379 [ vi_cv_path_python3_epfx=`
1380 ${vi_cv_path_python3} -c \
1381 "import sys; print(sys.exec_prefix)"` ])
1382
1383 dnl -- python3's internal library path
1384
1385 AC_CACHE_VAL(vi_cv_path_python3path,
1386 [ vi_cv_path_python3path=`
1387 unset PYTHONPATH;
1388 ${vi_cv_path_python3} -c \
1389 "import sys, string; print(':'.join(sys.path))"` ])
1390
1391 dnl -- where the Python implementation library archives are
1392
1393 AC_ARG_WITH(python3-config-dir,
1394 [ --with-python3-config-dir=PATH Python's config directory],
1395 [ vi_cv_path_python3_conf="${withval}" ] )
1396
1397 AC_CACHE_CHECK(Python's configuration directory,vi_cv_path_python3_conf,
1398 [
1399 vi_cv_path_python3_conf=
Bram Moolenaarfee496d2013-07-12 20:07:24 +02001400 config_dir="config-${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags}"
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001401 d=`${vi_cv_path_python3} -c "import distutils.sysconfig; print(distutils.sysconfig.get_config_var('LIBPL'))"`
1402 if test -d "$d" && test -f "$d/config.c"; then
1403 vi_cv_path_python3_conf="$d"
1404 else
1405 for path in "${vi_cv_path_python3_pfx}" "${vi_cv_path_python3_epfx}"; do
1406 for subdir in lib64 lib share; do
1407 d="${path}/${subdir}/python${vi_cv_var_python3_version}/${config_dir}"
1408 if test -d "$d" && test -f "$d/config.c"; then
1409 vi_cv_path_python3_conf="$d"
1410 fi
1411 done
1412 done
1413 fi
1414 ])
1415
1416 PYTHON3_CONFDIR="${vi_cv_path_python3_conf}"
1417
1418 if test "X$PYTHON3_CONFDIR" = "X"; then
1419 AC_MSG_RESULT([can't find it!])
1420 else
1421
1422 dnl -- we need to examine Python's config/Makefile too
1423 dnl see what the interpreter is built from
1424 AC_CACHE_VAL(vi_cv_path_python3_plibs,
1425 [
1426 pwd=`pwd`
1427 tmp_mkf="$pwd/config-PyMake$$"
1428 cat -- "${PYTHON3_CONFDIR}/Makefile" - <<'eof' >"${tmp_mkf}"
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001429__:
Bram Moolenaar3804aeb2010-07-19 21:18:54 +02001430 @echo "python3_BASEMODLIBS='$(BASEMODLIBS)'"
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001431 @echo "python3_LIBS='$(LIBS)'"
1432 @echo "python3_SYSLIBS='$(SYSLIBS)'"
Bram Moolenaarf94a13c2012-09-21 13:26:49 +02001433 @echo "python3_DLLLIBRARY='$(DLLLIBRARY)'"
Bram Moolenaar2a7e2a62010-07-24 15:19:11 +02001434 @echo "python3_INSTSONAME='$(INSTSONAME)'"
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001435eof
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001436 dnl -- delete the lines from make about Entering/Leaving directory
1437 eval "`cd ${PYTHON3_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`"
1438 rm -f -- "${tmp_mkf}"
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001439 vi_cv_path_python3_plibs="-L${PYTHON3_CONFDIR} -lpython${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags}"
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001440 vi_cv_path_python3_plibs="${vi_cv_path_python3_plibs} ${python3_BASEMODLIBS} ${python3_LIBS} ${python3_SYSLIBS}"
1441 dnl remove -ltermcap, it can conflict with an earlier -lncurses
1442 vi_cv_path_python3_plibs=`echo $vi_cv_path_python3_plibs | sed s/-ltermcap//`
1443 vi_cv_path_python3_plibs=`echo $vi_cv_path_python3_plibs | sed s/-lffi//`
1444 ])
Bram Moolenaarba59ddb2016-01-28 15:34:25 +01001445 AC_CACHE_CHECK(Python3's dll name,vi_cv_dll_name_python3,
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001446 [
1447 if test "X$python3_DLLLIBRARY" != "X"; then
1448 vi_cv_dll_name_python3="$python3_DLLLIBRARY"
1449 else
1450 vi_cv_dll_name_python3="$python3_INSTSONAME"
1451 fi
1452 ])
1453
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001454 PYTHON3_LIBS="${vi_cv_path_python3_plibs}"
1455 if test "${vi_cv_path_python3_pfx}" = "${vi_cv_path_python3_epfx}"; then
Bram Moolenaar780c3e92013-06-11 20:53:28 +02001456 PYTHON3_CFLAGS="-I${vi_cv_path_python3_pfx}/include/python${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags} -DPYTHON3_HOME='L\"${vi_cv_path_python3_pfx}\"'"
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001457 else
Bram Moolenaar780c3e92013-06-11 20:53:28 +02001458 PYTHON3_CFLAGS="-I${vi_cv_path_python3_pfx}/include/python${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags} -I${vi_cv_path_python3_epfx}/include/python${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags} -DPYTHON3_HOME='L\"${vi_cv_path_python3_pfx}\"'"
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001459 fi
1460 PYTHON3_SRC="if_python3.c"
1461 PYTHON3_OBJ="objects/if_python3.o"
1462
1463 dnl On FreeBSD linking with "-pthread" is required to use threads.
1464 dnl _THREAD_SAFE must be used for compiling then.
1465 dnl The "-pthread" is added to $LIBS, so that the following check for
1466 dnl sigaltstack() will look in libc_r (it's there in libc!).
1467 dnl Otherwise, when using GCC, try adding -pthread to $CFLAGS. GCC
1468 dnl will then define target-specific defines, e.g., -D_REENTRANT.
1469 dnl Don't do this for Mac OSX, -pthread will generate a warning.
1470 AC_MSG_CHECKING([if -pthread should be used])
1471 threadsafe_flag=
1472 thread_lib=
1473 dnl if test "x$MACOSX" != "xyes"; then
1474 if test "`(uname) 2>/dev/null`" != Darwin; then
1475 test "$GCC" = yes && threadsafe_flag="-pthread"
1476 if test "`(uname) 2>/dev/null`" = FreeBSD; then
1477 threadsafe_flag="-D_THREAD_SAFE"
1478 thread_lib="-pthread"
1479 fi
1480 if test "`(uname) 2>/dev/null`" = SunOS; then
1481 threadsafe_flag="-pthreads"
1482 fi
1483 fi
1484 libs_save_old=$LIBS
1485 if test -n "$threadsafe_flag"; then
1486 cflags_save=$CFLAGS
1487 CFLAGS="$CFLAGS $threadsafe_flag"
1488 LIBS="$LIBS $thread_lib"
1489 AC_TRY_LINK(,[ ],
1490 AC_MSG_RESULT(yes); PYTHON3_CFLAGS="$PYTHON3_CFLAGS $threadsafe_flag",
1491 AC_MSG_RESULT(no); LIBS=$libs_save_old
1492 )
1493 CFLAGS=$cflags_save
1494 else
1495 AC_MSG_RESULT(no)
1496 fi
1497
1498 dnl check that compiling a simple program still works with the flags
1499 dnl added for Python.
1500 AC_MSG_CHECKING([if compile and link flags for Python 3 are sane])
1501 cflags_save=$CFLAGS
1502 libs_save=$LIBS
1503 CFLAGS="$CFLAGS $PYTHON3_CFLAGS"
1504 LIBS="$LIBS $PYTHON3_LIBS"
1505 AC_TRY_LINK(,[ ],
1506 AC_MSG_RESULT(yes); python3_ok=yes,
1507 AC_MSG_RESULT(no: PYTHON3 DISABLED); python3_ok=no)
1508 CFLAGS=$cflags_save
1509 LIBS=$libs_save
1510 if test "$python3_ok" = yes; then
1511 AC_DEFINE(FEAT_PYTHON3)
1512 else
1513 LIBS=$libs_save_old
1514 PYTHON3_SRC=
1515 PYTHON3_OBJ=
1516 PYTHON3_LIBS=
1517 PYTHON3_CFLAGS=
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001518 fi
1519 fi
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02001520 else
1521 AC_MSG_RESULT(too old)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001522 fi
1523 fi
Bram Moolenaar1612b1a2013-06-14 21:22:39 +02001524 if test "$fail_if_missing" = "yes" -a "$python3_ok" != "yes"; then
1525 AC_MSG_ERROR([could not configure python3])
1526 fi
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001527fi
1528
1529AC_SUBST(PYTHON3_CONFDIR)
1530AC_SUBST(PYTHON3_LIBS)
1531AC_SUBST(PYTHON3_CFLAGS)
1532AC_SUBST(PYTHON3_SRC)
1533AC_SUBST(PYTHON3_OBJ)
1534
1535dnl if python2.x and python3.x are enabled one can only link in code
1536dnl with dlopen(), dlsym(), dlclose()
1537if test "$python_ok" = yes && test "$python3_ok" = yes; then
1538 AC_DEFINE(DYNAMIC_PYTHON)
1539 AC_DEFINE(DYNAMIC_PYTHON3)
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001540 AC_MSG_CHECKING(whether we can do without RTLD_GLOBAL for Python)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001541 cflags_save=$CFLAGS
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001542 CFLAGS="$CFLAGS $PYTHON_CFLAGS"
Bram Moolenaar5d3fbf32015-03-05 16:47:20 +01001543 libs_save=$LIBS
Bram Moolenaar6fabcbe2011-09-02 12:27:25 +02001544 dnl -ldl must go first to make this work on Archlinux (Roland Puntaier)
Bram Moolenaar5d3fbf32015-03-05 16:47:20 +01001545 LIBS="-ldl $LIBS"
Bram Moolenaar7db77842014-03-27 17:40:59 +01001546 AC_RUN_IFELSE([AC_LANG_SOURCE([
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001547 #include <dlfcn.h>
1548 /* If this program fails, then RTLD_GLOBAL is needed.
1549 * RTLD_GLOBAL will be used and then it is not possible to
1550 * have both python versions enabled in the same vim instance.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001551 * Only the first python version used will be switched on.
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001552 */
1553
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001554 int no_rtl_global_needed_for(char *python_instsoname, char *prefix)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001555 {
1556 int needed = 0;
Bram Moolenaarba59ddb2016-01-28 15:34:25 +01001557 void* pylib = dlopen(python_instsoname, RTLD_LAZY|RTLD_LOCAL);
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001558 if (pylib != 0)
1559 {
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001560 void (*pfx)(char *home) = dlsym(pylib, "Py_SetPythonHome");
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001561 void (*init)(void) = dlsym(pylib, "Py_Initialize");
1562 int (*simple)(char*) = dlsym(pylib, "PyRun_SimpleString");
1563 void (*final)(void) = dlsym(pylib, "Py_Finalize");
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001564 (*pfx)(prefix);
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001565 (*init)();
1566 needed = (*simple)("import termios") == -1;
1567 (*final)();
1568 dlclose(pylib);
1569 }
1570 return !needed;
1571 }
1572
1573 int main(int argc, char** argv)
1574 {
1575 int not_needed = 0;
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001576 if (no_rtl_global_needed_for("${vi_cv_dll_name_python}", "${vi_cv_path_python_pfx}"))
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001577 not_needed = 1;
1578 return !not_needed;
Bram Moolenaar7db77842014-03-27 17:40:59 +01001579 }])],
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001580 [AC_MSG_RESULT(yes);AC_DEFINE(PY_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)])
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001581
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001582 CFLAGS=$cflags_save
Bram Moolenaar5d3fbf32015-03-05 16:47:20 +01001583 LIBS=$libs_save
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001584
1585 AC_MSG_CHECKING(whether we can do without RTLD_GLOBAL for Python3)
1586 cflags_save=$CFLAGS
1587 CFLAGS="$CFLAGS $PYTHON3_CFLAGS"
Bram Moolenaar5d3fbf32015-03-05 16:47:20 +01001588 libs_save=$LIBS
Bram Moolenaar6fabcbe2011-09-02 12:27:25 +02001589 dnl -ldl must go first to make this work on Archlinux (Roland Puntaier)
Bram Moolenaar5d3fbf32015-03-05 16:47:20 +01001590 LIBS="-ldl $LIBS"
Bram Moolenaar7db77842014-03-27 17:40:59 +01001591 AC_RUN_IFELSE([AC_LANG_SOURCE([
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001592 #include <dlfcn.h>
1593 #include <wchar.h>
1594 /* If this program fails, then RTLD_GLOBAL is needed.
1595 * RTLD_GLOBAL will be used and then it is not possible to
1596 * have both python versions enabled in the same vim instance.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001597 * Only the first python version used will be switched on.
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001598 */
1599
1600 int no_rtl_global_needed_for(char *python_instsoname, wchar_t *prefix)
1601 {
1602 int needed = 0;
Bram Moolenaarba59ddb2016-01-28 15:34:25 +01001603 void* pylib = dlopen(python_instsoname, RTLD_LAZY|RTLD_LOCAL);
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001604 if (pylib != 0)
1605 {
1606 void (*pfx)(wchar_t *home) = dlsym(pylib, "Py_SetPythonHome");
1607 void (*init)(void) = dlsym(pylib, "Py_Initialize");
1608 int (*simple)(char*) = dlsym(pylib, "PyRun_SimpleString");
1609 void (*final)(void) = dlsym(pylib, "Py_Finalize");
1610 (*pfx)(prefix);
1611 (*init)();
1612 needed = (*simple)("import termios") == -1;
1613 (*final)();
1614 dlclose(pylib);
1615 }
1616 return !needed;
1617 }
1618
1619 int main(int argc, char** argv)
1620 {
1621 int not_needed = 0;
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001622 if (no_rtl_global_needed_for("${vi_cv_dll_name_python3}", L"${vi_cv_path_python3_pfx}"))
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001623 not_needed = 1;
1624 return !not_needed;
Bram Moolenaar7db77842014-03-27 17:40:59 +01001625 }])],
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001626 [AC_MSG_RESULT(yes);AC_DEFINE(PY3_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)])
1627
1628 CFLAGS=$cflags_save
Bram Moolenaar5d3fbf32015-03-05 16:47:20 +01001629 LIBS=$libs_save
Bram Moolenaar644d37b2010-11-16 19:26:02 +01001630
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001631 PYTHON_SRC="if_python.c"
1632 PYTHON_OBJ="objects/if_python.o"
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001633 PYTHON_CFLAGS="$PYTHON_CFLAGS -DDYNAMIC_PYTHON_DLL=\\\"${vi_cv_dll_name_python}\\\""
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001634 PYTHON_LIBS=
1635 PYTHON3_SRC="if_python3.c"
1636 PYTHON3_OBJ="objects/if_python3.o"
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001637 PYTHON3_CFLAGS="$PYTHON3_CFLAGS -DDYNAMIC_PYTHON3_DLL=\\\"${vi_cv_dll_name_python3}\\\""
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001638 PYTHON3_LIBS=
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001639elif test "$python_ok" = yes && test "$enable_pythoninterp" = "dynamic"; then
1640 AC_DEFINE(DYNAMIC_PYTHON)
1641 PYTHON_SRC="if_python.c"
1642 PYTHON_OBJ="objects/if_python.o"
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001643 PYTHON_CFLAGS="$PYTHON_CFLAGS -DDYNAMIC_PYTHON_DLL=\\\"${vi_cv_dll_name_python}\\\""
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001644 PYTHON_LIBS=
Bram Moolenaare741f272013-07-09 21:57:52 +02001645elif test "$python_ok" = yes; then
1646 dnl Check that adding -fPIE works. It may be needed when using a static
1647 dnl Python library.
1648 AC_MSG_CHECKING([if -fPIE can be added for Python])
1649 cflags_save=$CFLAGS
1650 libs_save=$LIBS
1651 CFLAGS="$CFLAGS $PYTHON_CFLAGS -fPIE"
1652 LIBS="$LIBS $PYTHON_LIBS"
1653 AC_TRY_LINK(,[ ],
1654 AC_MSG_RESULT(yes); fpie_ok=yes,
1655 AC_MSG_RESULT(no); fpie_ok=no)
1656 CFLAGS=$cflags_save
1657 LIBS=$libs_save
1658 if test $fpie_ok = yes; then
1659 PYTHON_CFLAGS="$PYTHON_CFLAGS -fPIE"
1660 fi
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001661elif test "$python3_ok" = yes && test "$enable_python3interp" = "dynamic"; then
1662 AC_DEFINE(DYNAMIC_PYTHON3)
1663 PYTHON3_SRC="if_python3.c"
1664 PYTHON3_OBJ="objects/if_python3.o"
Bram Moolenaarcf1b0572014-05-22 14:44:22 +02001665 PYTHON3_CFLAGS="$PYTHON3_CFLAGS -DDYNAMIC_PYTHON3_DLL=\\\"${vi_cv_dll_name_python3}\\\""
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02001666 PYTHON3_LIBS=
Bram Moolenaare741f272013-07-09 21:57:52 +02001667elif test "$python3_ok" = yes; then
1668 dnl Check that adding -fPIE works. It may be needed when using a static
1669 dnl Python library.
1670 AC_MSG_CHECKING([if -fPIE can be added for Python3])
1671 cflags_save=$CFLAGS
1672 libs_save=$LIBS
1673 CFLAGS="$CFLAGS $PYTHON3_CFLAGS -fPIE"
1674 LIBS="$LIBS $PYTHON3_LIBS"
1675 AC_TRY_LINK(,[ ],
1676 AC_MSG_RESULT(yes); fpie_ok=yes,
1677 AC_MSG_RESULT(no); fpie_ok=no)
1678 CFLAGS=$cflags_save
1679 LIBS=$libs_save
1680 if test $fpie_ok = yes; then
1681 PYTHON3_CFLAGS="$PYTHON3_CFLAGS -fPIE"
1682 fi
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001683fi
1684
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685AC_MSG_CHECKING(--enable-tclinterp argument)
1686AC_ARG_ENABLE(tclinterp,
Bram Moolenaar8a5115c2016-01-09 19:41:11 +01001687 [ --enable-tclinterp[=OPTS] Include Tcl interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 [enable_tclinterp="no"])
1689AC_MSG_RESULT($enable_tclinterp)
1690
Bram Moolenaar8a5115c2016-01-09 19:41:11 +01001691if test "$enable_tclinterp" = "yes" -o "$enable_tclinterp" = "dynamic"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692
Bram Moolenaar9b5d4dd2008-01-01 15:26:45 +00001693 dnl on FreeBSD tclsh is a silly script, look for tclsh8.[5420]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 AC_MSG_CHECKING(--with-tclsh argument)
1695 AC_ARG_WITH(tclsh, [ --with-tclsh=PATH which tclsh to use (default: tclsh8.0)],
1696 tclsh_name="$withval"; AC_MSG_RESULT($tclsh_name),
Bram Moolenaar9b5d4dd2008-01-01 15:26:45 +00001697 tclsh_name="tclsh8.5"; AC_MSG_RESULT(no))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
1699 AC_SUBST(vi_cv_path_tcl)
1700
Bram Moolenaar9b5d4dd2008-01-01 15:26:45 +00001701 dnl when no specific version specified, also try 8.4, 8.2 and 8.0
1702 if test "X$vi_cv_path_tcl" = "X" -a $tclsh_name = "tclsh8.5"; then
1703 tclsh_name="tclsh8.4"
1704 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
1705 fi
Bram Moolenaardf3267e2005-01-25 22:07:05 +00001706 if test "X$vi_cv_path_tcl" = "X" -a $tclsh_name = "tclsh8.4"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 tclsh_name="tclsh8.2"
1708 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
1709 fi
Bram Moolenaardf3267e2005-01-25 22:07:05 +00001710 if test "X$vi_cv_path_tcl" = "X" -a $tclsh_name = "tclsh8.2"; then
1711 tclsh_name="tclsh8.0"
1712 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
1713 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 dnl still didn't find it, try without version number
1715 if test "X$vi_cv_path_tcl" = "X"; then
1716 tclsh_name="tclsh"
1717 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name)
1718 fi
1719 if test "X$vi_cv_path_tcl" != "X"; then
1720 AC_MSG_CHECKING(Tcl version)
Bram Moolenaar49222be2015-12-11 18:11:30 +01001721 if echo 'exit [[expr [info tclversion] < 8.0]]' | "$vi_cv_path_tcl" - ; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 tclver=`echo 'puts [[info tclversion]]' | $vi_cv_path_tcl -`
1723 AC_MSG_RESULT($tclver - OK);
1724 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 -`
Bram Moolenaar8a5115c2016-01-09 19:41:11 +01001725 tcldll=`echo 'puts libtcl[[info tclversion]][[info sharedlibextension]]' | $vi_cv_path_tcl -`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726
1727 AC_MSG_CHECKING(for location of Tcl include)
1728 if test "x$MACOSX" != "xyes"; then
Bram Moolenaar0ff8f602008-02-20 11:44:03 +00001729 tclinc="$tclloc/include $tclloc/include/tcl $tclloc/include/tcl$tclver /usr/local/include /usr/local/include/tcl$tclver /usr/include /usr/include/tcl$tclver"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 else
1731 dnl For Mac OS X 10.3, use the OS-provided framework location
1732 tclinc="/System/Library/Frameworks/Tcl.framework/Headers"
1733 fi
Bram Moolenaar0ff8f602008-02-20 11:44:03 +00001734 TCL_INC=
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 for try in $tclinc; do
1736 if test -f "$try/tcl.h"; then
1737 AC_MSG_RESULT($try/tcl.h)
1738 TCL_INC=$try
1739 break
1740 fi
1741 done
1742 if test -z "$TCL_INC"; then
1743 AC_MSG_RESULT(<not found>)
1744 SKIP_TCL=YES
1745 fi
1746 if test -z "$SKIP_TCL"; then
1747 AC_MSG_CHECKING(for location of tclConfig.sh script)
1748 if test "x$MACOSX" != "xyes"; then
1749 tclcnf=`echo $tclinc | sed s/include/lib/g`
Bram Moolenaar9b5d4dd2008-01-01 15:26:45 +00001750 tclcnf="$tclcnf `echo $tclinc | sed s/include/lib64/g`"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 else
1752 dnl For Mac OS X 10.3, use the OS-provided framework location
1753 tclcnf="/System/Library/Frameworks/Tcl.framework"
1754 fi
1755 for try in $tclcnf; do
Bram Moolenaar49222be2015-12-11 18:11:30 +01001756 if test -f "$try/tclConfig.sh"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 AC_MSG_RESULT($try/tclConfig.sh)
Bram Moolenaar49222be2015-12-11 18:11:30 +01001758 . "$try/tclConfig.sh"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 dnl use eval, because tcl 8.2 includes ${TCL_DBGX}
Bram Moolenaar8a5115c2016-01-09 19:41:11 +01001760 if test "$enable_tclinterp" = "dynamic"; then
1761 TCL_LIBS=`eval echo "$TCL_STUB_LIB_SPEC $TCL_LIBS"`
1762 else
1763 TCL_LIBS=`eval echo "$TCL_LIB_SPEC $TCL_LIBS"`
1764 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 dnl Use $TCL_DEFS for -D_THREAD_SAFE et al. But only use the
Bram Moolenaardf3267e2005-01-25 22:07:05 +00001766 dnl "-D_ABC" items. Watch out for -DFOO=long\ long.
Bram Moolenaar4394bff2008-07-24 11:21:31 +00001767 TCL_DEFS=`echo $TCL_DEFS | sed -e 's/\\\\ /\\\\X/g' | tr ' ' '\012' | sed -e '/^[[^-]]/d' -e '/^-[[^D]]/d' -e '/-D[[^_]]/d' -e 's/-D_/ -D_/' | tr '\012' ' ' | sed -e 's/\\\\X/\\\\ /g'`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 break
1769 fi
1770 done
1771 if test -z "$TCL_LIBS"; then
1772 AC_MSG_RESULT(<not found>)
1773 AC_MSG_CHECKING(for Tcl library by myself)
1774 tcllib=`echo $tclinc | sed s/include/lib/g`
Bram Moolenaar9b5d4dd2008-01-01 15:26:45 +00001775 tcllib="$tcllib `echo $tclinc | sed s/include/lib64/g`"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 for ext in .so .a ; do
1777 for ver in "" $tclver ; do
1778 for try in $tcllib ; do
1779 trylib=tcl$ver$ext
Bram Moolenaar49222be2015-12-11 18:11:30 +01001780 if test -f "$try/lib$trylib" ; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 AC_MSG_RESULT($try/lib$trylib)
Bram Moolenaar49222be2015-12-11 18:11:30 +01001782 TCL_LIBS="-L\"$try\" -ltcl$ver -ldl -lm"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 if test "`(uname) 2>/dev/null`" = SunOS &&
1784 uname -r | grep '^5' >/dev/null; then
1785 TCL_LIBS="$TCL_LIBS -R $try"
1786 fi
1787 break 3
1788 fi
1789 done
1790 done
1791 done
1792 if test -z "$TCL_LIBS"; then
1793 AC_MSG_RESULT(<not found>)
1794 SKIP_TCL=YES
1795 fi
1796 fi
1797 if test -z "$SKIP_TCL"; then
1798 AC_DEFINE(FEAT_TCL)
1799 TCL_SRC=if_tcl.c
1800 TCL_OBJ=objects/if_tcl.o
1801 TCL_PRO=if_tcl.pro
1802 TCL_CFLAGS="-I$TCL_INC $TCL_DEFS"
1803 fi
1804 fi
1805 else
1806 AC_MSG_RESULT(too old; need Tcl version 8.0 or later)
1807 fi
1808 fi
Bram Moolenaar8a5115c2016-01-09 19:41:11 +01001809 if test "$enable_tclinterp" = "dynamic"; then
1810 if test "X$TCL_SRC" != "X" -a "X$tcldll" != "X"; then
1811 AC_DEFINE(DYNAMIC_TCL)
1812 TCL_CFLAGS="-DDYNAMIC_TCL_DLL=\\\"$tcldll\\\" -DDYNAMIC_TCL_VER=\\\"$tclver\\\" $TCL_CFLAGS"
1813 fi
1814 fi
Bram Moolenaarf788a062011-12-14 20:51:25 +01001815 if test "$fail_if_missing" = "yes" -a -z "$TCL_SRC"; then
1816 AC_MSG_ERROR([could not configure Tcl])
1817 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818fi
1819AC_SUBST(TCL_SRC)
1820AC_SUBST(TCL_OBJ)
1821AC_SUBST(TCL_PRO)
1822AC_SUBST(TCL_CFLAGS)
1823AC_SUBST(TCL_LIBS)
1824
1825AC_MSG_CHECKING(--enable-rubyinterp argument)
1826AC_ARG_ENABLE(rubyinterp,
Bram Moolenaar3ca71f12010-10-27 16:49:47 +02001827 [ --enable-rubyinterp[=OPTS] Include Ruby interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 [enable_rubyinterp="no"])
1829AC_MSG_RESULT($enable_rubyinterp)
Bram Moolenaar3ca71f12010-10-27 16:49:47 +02001830if test "$enable_rubyinterp" = "yes" -o "$enable_rubyinterp" = "dynamic"; then
Bram Moolenaar0b105412014-11-30 13:34:23 +01001831 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
1832 AC_MSG_ERROR([cannot use Ruby with tiny or small features])
1833 fi
1834
Bram Moolenaar165641d2010-02-17 16:23:09 +01001835 AC_MSG_CHECKING(--with-ruby-command argument)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 AC_SUBST(vi_cv_path_ruby)
Bram Moolenaar948733a2011-05-05 18:10:16 +02001837 AC_ARG_WITH(ruby-command, [ --with-ruby-command=RUBY name of the Ruby command (default: ruby)],
1838 RUBY_CMD="$withval"; vi_cv_path_ruby="$withval"; AC_MSG_RESULT($RUBY_CMD),
1839 RUBY_CMD="ruby"; AC_MSG_RESULT(defaulting to $RUBY_CMD))
Bram Moolenaar165641d2010-02-17 16:23:09 +01001840 AC_PATH_PROG(vi_cv_path_ruby, $RUBY_CMD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 if test "X$vi_cv_path_ruby" != "X"; then
1842 AC_MSG_CHECKING(Ruby version)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00001843 if $vi_cv_path_ruby -e '(VERSION rescue RUBY_VERSION) >= "1.6.0" or exit 1' >/dev/null 2>/dev/null; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 AC_MSG_RESULT(OK)
Bram Moolenaar81398892012-10-03 21:09:35 +02001845 AC_MSG_CHECKING(Ruby rbconfig)
1846 ruby_rbconfig="RbConfig"
1847 if ! $vi_cv_path_ruby -r rbconfig -e 'RbConfig' >/dev/null 2>/dev/null; then
1848 ruby_rbconfig="Config"
1849 fi
1850 AC_MSG_RESULT($ruby_rbconfig)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 AC_MSG_CHECKING(Ruby header files)
Bram Moolenaar81398892012-10-03 21:09:35 +02001852 rubyhdrdir=`$vi_cv_path_ruby -r mkmf -e "print $ruby_rbconfig::CONFIG[['rubyhdrdir']] || $ruby_rbconfig::CONFIG[['archdir']] || \\$hdrdir" 2>/dev/null`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 if test "X$rubyhdrdir" != "X"; then
1854 AC_MSG_RESULT($rubyhdrdir)
1855 RUBY_CFLAGS="-I$rubyhdrdir"
Bram Moolenaara6fd37b2014-03-27 17:19:09 +01001856 rubyarchdir=`$vi_cv_path_ruby -r rbconfig -e "print ($ruby_rbconfig::CONFIG.has_key? 'rubyarchhdrdir') ? $ruby_rbconfig::CONFIG[['rubyarchhdrdir']] : '$rubyhdrdir/'+$ruby_rbconfig::CONFIG[['arch']]"`
1857 if test -d "$rubyarchdir"; then
1858 RUBY_CFLAGS="$RUBY_CFLAGS -I$rubyarchdir"
Bram Moolenaar165641d2010-02-17 16:23:09 +01001859 fi
Bram Moolenaar81398892012-10-03 21:09:35 +02001860 rubyversion=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG[['ruby_version']].gsub(/\./, '')[[0,2]]"`
Bram Moolenaar026a4452013-08-07 15:22:23 +02001861 if test "X$rubyversion" = "X"; then
1862 rubyversion=`$vi_cv_path_ruby -e "print ((VERSION rescue RUBY_VERSION)).gsub(/\./, '')[[0,2]]"`
1863 fi
Bram Moolenaar165641d2010-02-17 16:23:09 +01001864 RUBY_CFLAGS="$RUBY_CFLAGS -DRUBY_VERSION=$rubyversion"
Bram Moolenaar81398892012-10-03 21:09:35 +02001865 rubylibs=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG[['LIBS']]"`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 if test "X$rubylibs" != "X"; then
1867 RUBY_LIBS="$rubylibs"
1868 fi
Bram Moolenaar81398892012-10-03 21:09:35 +02001869 librubyarg=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig.expand($ruby_rbconfig::CONFIG[['LIBRUBYARG']])"`
1870 librubya=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig.expand($ruby_rbconfig::CONFIG[['LIBRUBY_A']])"`
Bram Moolenaarac499e32013-06-02 19:14:17 +02001871 rubylibdir=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig.expand($ruby_rbconfig::CONFIG[['libdir']])"`
Bram Moolenaar948733a2011-05-05 18:10:16 +02001872 if test -f "$rubylibdir/$librubya"; then
1873 librubyarg="$librubyarg"
Bram Moolenaarac499e32013-06-02 19:14:17 +02001874 RUBY_LIBS="$RUBY_LIBS -L$rubylibdir"
1875 elif test "$librubyarg" = "libruby.a"; then
1876 dnl required on Mac OS 10.3 where libruby.a doesn't exist
1877 librubyarg="-lruby"
1878 RUBY_LIBS="$RUBY_LIBS -L$rubylibdir"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 fi
1880
1881 if test "X$librubyarg" != "X"; then
1882 RUBY_LIBS="$librubyarg $RUBY_LIBS"
1883 fi
Bram Moolenaar81398892012-10-03 21:09:35 +02001884 rubyldflags=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG[['LDFLAGS']]"`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 if test "X$rubyldflags" != "X"; then
Bram Moolenaar996b6d82009-07-22 09:17:23 +00001886 dnl Ruby on Mac OS X 10.5 adds "-arch" flags but these should only
1887 dnl be included if requested by passing --with-mac-arch to
1888 dnl configure, so strip these flags first (if present)
Bram Moolenaar5dff57d2010-07-24 16:19:44 +02001889 rubyldflags=`echo "$rubyldflags" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//' -e 's/-arch\ x86_64//'`
Bram Moolenaar996b6d82009-07-22 09:17:23 +00001890 if test "X$rubyldflags" != "X"; then
Bram Moolenaar2bcaec32014-03-27 18:51:11 +01001891 if test "X`echo \"$LDFLAGS\" | $FGREP -e \"$rubyldflags\"`" = "X"; then
Bram Moolenaara6cc0312013-06-18 23:31:55 +02001892 LDFLAGS="$rubyldflags $LDFLAGS"
1893 fi
Bram Moolenaar996b6d82009-07-22 09:17:23 +00001894 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 fi
1896 RUBY_SRC="if_ruby.c"
1897 RUBY_OBJ="objects/if_ruby.o"
1898 RUBY_PRO="if_ruby.pro"
1899 AC_DEFINE(FEAT_RUBY)
Bram Moolenaar3ca71f12010-10-27 16:49:47 +02001900 if test "$enable_rubyinterp" = "dynamic"; then
Bram Moolenaar81398892012-10-03 21:09:35 +02001901 libruby=`$vi_cv_path_ruby -r rbconfig -e "puts $ruby_rbconfig::CONFIG[['LIBRUBY_SO']]"`
Bram Moolenaar3ca71f12010-10-27 16:49:47 +02001902 AC_DEFINE(DYNAMIC_RUBY)
1903 RUBY_CFLAGS="-DDYNAMIC_RUBY_DLL=\\\"$libruby\\\" -DDYNAMIC_RUBY_VER=$rubyversion $RUBY_CFLAGS"
1904 RUBY_LIBS=
1905 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 else
Bram Moolenaar165641d2010-02-17 16:23:09 +01001907 AC_MSG_RESULT(not found; disabling Ruby)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 fi
1909 else
1910 AC_MSG_RESULT(too old; need Ruby version 1.6.0 or later)
1911 fi
1912 fi
Bram Moolenaarf788a062011-12-14 20:51:25 +01001913
1914 if test "$fail_if_missing" = "yes" -a -z "$RUBY_OBJ"; then
1915 AC_MSG_ERROR([could not configure Ruby])
1916 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917fi
1918AC_SUBST(RUBY_SRC)
1919AC_SUBST(RUBY_OBJ)
1920AC_SUBST(RUBY_PRO)
1921AC_SUBST(RUBY_CFLAGS)
1922AC_SUBST(RUBY_LIBS)
1923
1924AC_MSG_CHECKING(--enable-cscope argument)
1925AC_ARG_ENABLE(cscope,
1926 [ --enable-cscope Include cscope interface.], ,
1927 [enable_cscope="no"])
1928AC_MSG_RESULT($enable_cscope)
1929if test "$enable_cscope" = "yes"; then
1930 AC_DEFINE(FEAT_CSCOPE)
1931fi
1932
1933AC_MSG_CHECKING(--enable-workshop argument)
1934AC_ARG_ENABLE(workshop,
1935 [ --enable-workshop Include Sun Visual Workshop support.], ,
1936 [enable_workshop="no"])
1937AC_MSG_RESULT($enable_workshop)
1938if test "$enable_workshop" = "yes"; then
1939 AC_DEFINE(FEAT_SUN_WORKSHOP)
1940 WORKSHOP_SRC="workshop.c integration.c"
1941 AC_SUBST(WORKSHOP_SRC)
1942 WORKSHOP_OBJ="objects/workshop.o objects/integration.o"
1943 AC_SUBST(WORKSHOP_OBJ)
1944 if test "${enable_gui-xxx}" = xxx; then
1945 enable_gui=motif
1946 fi
1947fi
1948
1949AC_MSG_CHECKING(--disable-netbeans argument)
1950AC_ARG_ENABLE(netbeans,
1951 [ --disable-netbeans Disable NetBeans integration support.],
1952 , [enable_netbeans="yes"])
1953if test "$enable_netbeans" = "yes"; then
Bram Moolenaar3c124e32016-01-31 14:36:58 +01001954 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
1955 AC_MSG_RESULT([cannot use NetBeans with tiny or small features])
1956 enable_netbeans="no"
1957 else
1958 AC_MSG_RESULT(no)
1959 fi
Bram Moolenaare0874f82016-01-24 20:36:41 +01001960else
1961 AC_MSG_RESULT(yes)
1962fi
1963
1964AC_MSG_CHECKING(--disable-channel argument)
1965AC_ARG_ENABLE(channel,
1966 [ --disable-channel Disable process communication support.],
1967 , [enable_channel="yes"])
1968if test "$enable_channel" = "yes"; then
Bram Moolenaar3c124e32016-01-31 14:36:58 +01001969 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
1970 AC_MSG_RESULT([cannot use channels with tiny or small features])
1971 enable_channel="no"
1972 else
1973 AC_MSG_RESULT(no)
1974 fi
Bram Moolenaare0874f82016-01-24 20:36:41 +01001975else
1976 if test "$enable_netbeans" = "yes"; then
Bram Moolenaar16435482016-01-24 21:31:54 +01001977 AC_MSG_RESULT([yes, netbeans also disabled])
Bram Moolenaare0874f82016-01-24 20:36:41 +01001978 enable_netbeans="no"
1979 else
1980 AC_MSG_RESULT(yes)
1981 fi
1982fi
1983
Bram Moolenaar16435482016-01-24 21:31:54 +01001984if test "$enable_channel" = "yes"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 dnl On Solaris we need the socket and nsl library.
1986 AC_CHECK_LIB(socket, socket)
1987 AC_CHECK_LIB(nsl, gethostbyname)
Bram Moolenaare0874f82016-01-24 20:36:41 +01001988 AC_MSG_CHECKING(whether compiling with process communication is possible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 AC_TRY_LINK([
1990#include <stdio.h>
1991#include <stdlib.h>
1992#include <stdarg.h>
1993#include <fcntl.h>
1994#include <netdb.h>
1995#include <netinet/in.h>
1996#include <errno.h>
1997#include <sys/types.h>
1998#include <sys/socket.h>
1999 /* Check bitfields */
2000 struct nbbuf {
2001 unsigned int initDone:1;
Bram Moolenaar63de19e2016-12-09 20:11:26 +01002002 unsigned short signmaplen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 };
2004 ], [
2005 /* Check creating a socket. */
2006 struct sockaddr_in server;
2007 (void)socket(AF_INET, SOCK_STREAM, 0);
2008 (void)htons(100);
2009 (void)gethostbyname("microsoft.com");
2010 if (errno == ECONNREFUSED)
2011 (void)connect(1, (struct sockaddr *)&server, sizeof(server));
2012 ],
2013 AC_MSG_RESULT(yes),
Bram Moolenaare0874f82016-01-24 20:36:41 +01002014 AC_MSG_RESULT(no); enable_netbeans="no"; enable_channel="no")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015fi
2016if test "$enable_netbeans" = "yes"; then
2017 AC_DEFINE(FEAT_NETBEANS_INTG)
2018 NETBEANS_SRC="netbeans.c"
2019 AC_SUBST(NETBEANS_SRC)
2020 NETBEANS_OBJ="objects/netbeans.o"
2021 AC_SUBST(NETBEANS_OBJ)
2022fi
Bram Moolenaare0874f82016-01-24 20:36:41 +01002023if test "$enable_channel" = "yes"; then
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01002024 AC_DEFINE(FEAT_JOB_CHANNEL)
Bram Moolenaare0874f82016-01-24 20:36:41 +01002025 CHANNEL_SRC="channel.c"
2026 AC_SUBST(CHANNEL_SRC)
2027 CHANNEL_OBJ="objects/channel.o"
2028 AC_SUBST(CHANNEL_OBJ)
2029fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031AC_MSG_CHECKING(--enable-multibyte argument)
2032AC_ARG_ENABLE(multibyte,
2033 [ --enable-multibyte Include multibyte editing support.], ,
2034 [enable_multibyte="no"])
2035AC_MSG_RESULT($enable_multibyte)
2036if test "$enable_multibyte" = "yes"; then
2037 AC_DEFINE(FEAT_MBYTE)
2038fi
2039
2040AC_MSG_CHECKING(--enable-hangulinput argument)
2041AC_ARG_ENABLE(hangulinput,
2042 [ --enable-hangulinput Include Hangul input support.], ,
2043 [enable_hangulinput="no"])
2044AC_MSG_RESULT($enable_hangulinput)
2045
2046AC_MSG_CHECKING(--enable-xim argument)
2047AC_ARG_ENABLE(xim,
2048 [ --enable-xim Include XIM input support.],
2049 AC_MSG_RESULT($enable_xim),
2050 [enable_xim="auto"; AC_MSG_RESULT(defaulting to auto)])
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051
2052AC_MSG_CHECKING(--enable-fontset argument)
2053AC_ARG_ENABLE(fontset,
2054 [ --enable-fontset Include X fontset output support.], ,
2055 [enable_fontset="no"])
2056AC_MSG_RESULT($enable_fontset)
2057dnl defining FEAT_XFONTSET is delayed, so that it can be disabled for no GUI
2058
2059test -z "$with_x" && with_x=yes
2060test "${enable_gui-yes}" != no -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && with_x=yes
2061if test "$with_x" = no; then
2062 AC_MSG_RESULT(defaulting to: don't HAVE_X11)
2063else
2064 dnl Do this check early, so that its failure can override user requests.
2065
2066 AC_PATH_PROG(xmkmfpath, xmkmf)
2067
2068 AC_PATH_XTRA
2069
Bram Moolenaar2c704a72010-06-03 21:17:25 +02002070 dnl On z/OS Unix the X libraries are DLLs. To use them the code must
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 dnl be compiled with a special option.
2072 dnl Also add SM, ICE and Xmu to X_EXTRA_LIBS.
Bram Moolenaar2c704a72010-06-03 21:17:25 +02002073 if test "$zOSUnix" = "yes"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 CFLAGS="$CFLAGS -W c,dll"
2075 LDFLAGS="$LDFLAGS -W l,dll"
2076 X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE -lXmu"
2077 fi
2078
2079 dnl On my HPUX system the X include dir is found, but the lib dir not.
2080 dnl This is a desparate try to fix this.
2081
2082 if test -d "$x_includes" && test ! -d "$x_libraries"; then
2083 x_libraries=`echo "$x_includes" | sed s/include/lib/`
2084 AC_MSG_RESULT(Corrected X libraries to $x_libraries)
2085 X_LIBS="$X_LIBS -L$x_libraries"
2086 if test "`(uname) 2>/dev/null`" = SunOS &&
2087 uname -r | grep '^5' >/dev/null; then
2088 X_LIBS="$X_LIBS -R $x_libraries"
2089 fi
2090 fi
2091
2092 if test -d "$x_libraries" && test ! -d "$x_includes"; then
2093 x_includes=`echo "$x_libraries" | sed s/lib/include/`
2094 AC_MSG_RESULT(Corrected X includes to $x_includes)
2095 X_CFLAGS="$X_CFLAGS -I$x_includes"
2096 fi
2097
2098 dnl Remove "-I/usr/include " from X_CFLAGS, should not be needed.
2099 X_CFLAGS="`echo $X_CFLAGS\ | sed 's%-I/usr/include %%'`"
2100 dnl Remove "-L/usr/lib " from X_LIBS, should not be needed.
2101 X_LIBS="`echo $X_LIBS\ | sed 's%-L/usr/lib %%'`"
2102 dnl Same for "-R/usr/lib ".
2103 X_LIBS="`echo $X_LIBS\ | sed -e 's%-R/usr/lib %%' -e 's%-R /usr/lib %%'`"
2104
2105
2106 dnl Check if the X11 header files are correctly installed. On some systems
Bram Moolenaar00ca2842008-06-26 20:14:00 +00002107 dnl Xlib.h includes files that don't exist. On some systems X11/Intrinsic.h
2108 dnl is missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 AC_MSG_CHECKING(if X11 header files can be found)
2110 cflags_save=$CFLAGS
2111 CFLAGS="$CFLAGS $X_CFLAGS"
Bram Moolenaar00ca2842008-06-26 20:14:00 +00002112 AC_TRY_COMPILE([#include <X11/Xlib.h>
2113#include <X11/Intrinsic.h>], ,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 AC_MSG_RESULT(yes),
2115 AC_MSG_RESULT(no); no_x=yes)
2116 CFLAGS=$cflags_save
2117
2118 if test "${no_x-no}" = yes; then
2119 with_x=no
2120 else
2121 AC_DEFINE(HAVE_X11)
2122 X_LIB="-lXt -lX11";
2123 AC_SUBST(X_LIB)
2124
2125 ac_save_LDFLAGS="$LDFLAGS"
2126 LDFLAGS="-L$x_libraries $LDFLAGS"
2127
2128 dnl Check for -lXdmcp (needed on SunOS 4.1.4)
2129 dnl For HP-UX 10.20 it must be before -lSM -lICE
2130 AC_CHECK_LIB(Xdmcp, _XdmcpAuthDoIt, [X_EXTRA_LIBS="$X_EXTRA_LIBS -lXdmcp"],,
2131 [-lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS -lXdmcp])
2132
2133 dnl Some systems need -lnsl -lsocket when testing for ICE.
2134 dnl The check above doesn't do this, try here (again). Also needed to get
2135 dnl them after Xdmcp. link.sh will remove them when not needed.
2136 dnl Check for other function than above to avoid the cached value
2137 AC_CHECK_LIB(ICE, IceOpenConnection,
2138 [X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE"],, [$X_EXTRA_LIBS])
2139
2140 dnl Check for -lXpm (needed for some versions of Motif)
2141 LDFLAGS="$X_LIBS $ac_save_LDFLAGS"
2142 AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData, [X_PRE_LIBS="$X_PRE_LIBS -lXpm"],,
2143 [-lXt $X_PRE_LIBS -lXpm -lX11 $X_EXTRA_LIBS])
2144
2145 dnl Check that the X11 header files don't use implicit declarations
2146 AC_MSG_CHECKING(if X11 header files implicitly declare return values)
2147 cflags_save=$CFLAGS
Bram Moolenaard1864592013-05-04 04:40:15 +02002148 dnl -Werror is GCC only, others like Solaris Studio might not like it
2149 if test "$GCC" = yes; then
2150 CFLAGS="$CFLAGS $X_CFLAGS -Werror"
2151 else
2152 CFLAGS="$CFLAGS $X_CFLAGS"
2153 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 AC_TRY_COMPILE([#include <X11/Xlib.h>], ,
2155 AC_MSG_RESULT(no),
2156 CFLAGS="$CFLAGS -Wno-implicit-int"
2157 AC_TRY_COMPILE([#include <X11/Xlib.h>], ,
2158 AC_MSG_RESULT(yes); cflags_save="$cflags_save -Wno-implicit-int",
2159 AC_MSG_RESULT(test failed)
2160 )
2161 )
2162 CFLAGS=$cflags_save
2163
2164 LDFLAGS="$ac_save_LDFLAGS"
2165
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002166 AC_MSG_CHECKING(size of wchar_t is 2 bytes)
2167 AC_CACHE_VAL(ac_cv_small_wchar_t,
2168 [AC_TRY_RUN([
2169#include <X11/Xlib.h>
2170#if STDC_HEADERS
2171# include <stdlib.h>
2172# include <stddef.h>
2173#endif
2174 main()
2175 {
2176 if (sizeof(wchar_t) <= 2)
2177 exit(1);
2178 exit(0);
2179 }],
2180 ac_cv_small_wchar_t="no",
2181 ac_cv_small_wchar_t="yes",
2182 AC_MSG_ERROR(failed to compile test program))])
2183 AC_MSG_RESULT($ac_cv_small_wchar_t)
2184 if test "x$ac_cv_small_wchar_t" = "xyes" ; then
2185 AC_DEFINE(SMALL_WCHAR_T)
2186 fi
2187
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 fi
2189fi
2190
Bram Moolenaara7fc0102005-05-18 22:17:12 +00002191test "x$with_x" = xno -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && enable_gui=no
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192
2193AC_MSG_CHECKING(--enable-gui argument)
2194AC_ARG_ENABLE(gui,
Bram Moolenaar98921892016-02-23 17:14:37 +01002195 [ --enable-gui[=OPTS] X11 GUI [default=auto] [OPTS=auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon]], , enable_gui="auto")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196
2197dnl Canonicalize the --enable-gui= argument so that it can be easily compared.
2198dnl Do not use character classes for portability with old tools.
2199enable_gui_canon=`echo "_$enable_gui" | \
2200 sed 's/[[ _+-]]//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
2201
2202dnl Skip everything by default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203SKIP_GTK2=YES
Bram Moolenaar1858a842016-02-23 22:30:31 +01002204SKIP_GTK3=YES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205SKIP_GNOME=YES
2206SKIP_MOTIF=YES
2207SKIP_ATHENA=YES
2208SKIP_NEXTAW=YES
2209SKIP_PHOTON=YES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210SKIP_CARBON=YES
2211GUITYPE=NONE
2212
Bram Moolenaarb11160e2005-01-04 21:31:43 +00002213if test "x$QNX" = "xyes" -a "x$with_x" = "xno" ; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 SKIP_PHOTON=
2215 case "$enable_gui_canon" in
2216 no) AC_MSG_RESULT(no GUI support)
2217 SKIP_PHOTON=YES ;;
2218 yes|"") AC_MSG_RESULT(yes - automatic GUI support) ;;
2219 auto) AC_MSG_RESULT(auto - automatic GUI support) ;;
2220 photon) AC_MSG_RESULT(Photon GUI support) ;;
2221 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported])
2222 SKIP_PHOTON=YES ;;
2223 esac
2224
2225elif test "x$MACOSX" = "xyes" -a "x$with_x" = "xno" ; then
2226 SKIP_CARBON=
2227 case "$enable_gui_canon" in
2228 no) AC_MSG_RESULT(no GUI support)
2229 SKIP_CARBON=YES ;;
2230 yes|"") AC_MSG_RESULT(yes - automatic GUI support) ;;
Bram Moolenaar164fca32010-07-14 13:58:07 +02002231 auto) AC_MSG_RESULT(auto - Carbon GUI is outdated - disable GUI support)
2232 SKIP_CARBON=YES ;;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 carbon) AC_MSG_RESULT(Carbon GUI support) ;;
2234 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported])
2235 SKIP_CARBON=YES ;;
2236 esac
2237
2238else
2239
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 case "$enable_gui_canon" in
2241 no|none) AC_MSG_RESULT(no GUI support) ;;
2242 yes|""|auto) AC_MSG_RESULT(yes/auto - automatic GUI support)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 SKIP_GTK2=
2244 SKIP_GNOME=
2245 SKIP_MOTIF=
2246 SKIP_ATHENA=
2247 SKIP_NEXTAW=
2248 SKIP_CARBON=;;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 gtk2) AC_MSG_RESULT(GTK+ 2.x GUI support)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 SKIP_GTK2=;;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 gnome2) AC_MSG_RESULT(GNOME 2.x GUI support)
2252 SKIP_GNOME=
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 SKIP_GTK2=;;
Bram Moolenaar98921892016-02-23 17:14:37 +01002254 gtk3) AC_MSG_RESULT(GTK+ 3.x GUI support)
2255 SKIP_GTK3=;;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 motif) AC_MSG_RESULT(Motif GUI support)
2257 SKIP_MOTIF=;;
2258 athena) AC_MSG_RESULT(Athena GUI support)
2259 SKIP_ATHENA=;;
2260 nextaw) AC_MSG_RESULT(neXtaw GUI support)
2261 SKIP_NEXTAW=;;
2262 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported]) ;;
2263 esac
2264
2265fi
2266
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267if test "x$SKIP_GTK2" != "xYES" -a "$enable_gui_canon" != "gtk2" \
2268 -a "$enable_gui_canon" != "gnome2"; then
2269 AC_MSG_CHECKING(whether or not to look for GTK+ 2)
2270 AC_ARG_ENABLE(gtk2-check,
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002271 [ --enable-gtk2-check If auto-select GUI, check for GTK+ 2 [default=yes]],
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 , enable_gtk2_check="yes")
2273 AC_MSG_RESULT($enable_gtk2_check)
2274 if test "x$enable_gtk2_check" = "xno"; then
2275 SKIP_GTK2=YES
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002276 SKIP_GNOME=YES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 fi
2278fi
2279
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002280if test "x$SKIP_GNOME" != "xYES" -a "$enable_gui_canon" != "gnome2"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 AC_MSG_CHECKING(whether or not to look for GNOME)
2282 AC_ARG_ENABLE(gnome-check,
2283 [ --enable-gnome-check If GTK GUI, check for GNOME [default=no]],
2284 , enable_gnome_check="no")
2285 AC_MSG_RESULT($enable_gnome_check)
2286 if test "x$enable_gnome_check" = "xno"; then
2287 SKIP_GNOME=YES
2288 fi
2289fi
2290
Bram Moolenaar98921892016-02-23 17:14:37 +01002291if test "x$SKIP_GTK3" != "xYES" -a "$enable_gui_canon" != "gtk3"; then
2292 AC_MSG_CHECKING(whether or not to look for GTK+ 3)
2293 AC_ARG_ENABLE(gtk3-check,
2294 [ --enable-gtk3-check If auto-select GUI, check for GTK+ 3 [default=yes]],
2295 , enable_gtk3_check="yes")
2296 AC_MSG_RESULT($enable_gtk3_check)
2297 if test "x$enable_gtk3_check" = "xno"; then
2298 SKIP_GTK3=YES
2299 fi
2300fi
2301
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302if test "x$SKIP_MOTIF" != "xYES" -a "$enable_gui_canon" != "motif"; then
2303 AC_MSG_CHECKING(whether or not to look for Motif)
2304 AC_ARG_ENABLE(motif-check,
2305 [ --enable-motif-check If auto-select GUI, check for Motif [default=yes]],
2306 , enable_motif_check="yes")
2307 AC_MSG_RESULT($enable_motif_check)
2308 if test "x$enable_motif_check" = "xno"; then
2309 SKIP_MOTIF=YES
2310 fi
2311fi
2312
2313if test "x$SKIP_ATHENA" != "xYES" -a "$enable_gui_canon" != "athena"; then
2314 AC_MSG_CHECKING(whether or not to look for Athena)
2315 AC_ARG_ENABLE(athena-check,
2316 [ --enable-athena-check If auto-select GUI, check for Athena [default=yes]],
2317 , enable_athena_check="yes")
2318 AC_MSG_RESULT($enable_athena_check)
2319 if test "x$enable_athena_check" = "xno"; then
2320 SKIP_ATHENA=YES
2321 fi
2322fi
2323
2324if test "x$SKIP_NEXTAW" != "xYES" -a "$enable_gui_canon" != "nextaw"; then
2325 AC_MSG_CHECKING(whether or not to look for neXtaw)
2326 AC_ARG_ENABLE(nextaw-check,
2327 [ --enable-nextaw-check If auto-select GUI, check for neXtaw [default=yes]],
2328 , enable_nextaw_check="yes")
2329 AC_MSG_RESULT($enable_nextaw_check);
2330 if test "x$enable_nextaw_check" = "xno"; then
2331 SKIP_NEXTAW=YES
2332 fi
2333fi
2334
2335if test "x$SKIP_CARBON" != "xYES" -a "$enable_gui_canon" != "carbon"; then
2336 AC_MSG_CHECKING(whether or not to look for Carbon)
2337 AC_ARG_ENABLE(carbon-check,
2338 [ --enable-carbon-check If auto-select GUI, check for Carbon [default=yes]],
2339 , enable_carbon_check="yes")
2340 AC_MSG_RESULT($enable_carbon_check);
2341 if test "x$enable_carbon_check" = "xno"; then
2342 SKIP_CARBON=YES
2343 fi
2344fi
2345
Bram Moolenaar843ee412004-06-30 16:16:41 +00002346
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347if test "x$MACOSX" = "xyes" -a -z "$SKIP_CARBON" -a "x$CARBON" = "xyes"; then
2348 AC_MSG_CHECKING(for Carbon GUI)
Bram Moolenaar14716812006-05-04 21:54:08 +00002349 dnl already did the check, just give the message
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 AC_MSG_RESULT(yes);
2351 GUITYPE=CARBONGUI
Bram Moolenaare344bea2005-09-01 20:46:49 +00002352 if test "$VIMNAME" = "vim"; then
2353 VIMNAME=Vim
2354 fi
Bram Moolenaar14716812006-05-04 21:54:08 +00002355
Bram Moolenaar164fca32010-07-14 13:58:07 +02002356 if test "x$MACARCH" = "xboth"; then
2357 CPPFLAGS="$CPPFLAGS -I$DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk/Developer/Headers/FlatCarbon"
2358 else
2359 CPPFLAGS="$CPPFLAGS -I$DEVELOPER_DIR/Headers/FlatCarbon"
2360 fi
2361
Bram Moolenaar14716812006-05-04 21:54:08 +00002362 dnl Default install directory is not /usr/local
2363 if test x$prefix = xNONE; then
2364 prefix=/Applications
2365 fi
2366
2367 dnl Sorry for the hard coded default
2368 datadir='${prefix}/Vim.app/Contents/Resources'
2369
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 dnl skip everything else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 SKIP_GTK2=YES;
2372 SKIP_GNOME=YES;
2373 SKIP_MOTIF=YES;
2374 SKIP_ATHENA=YES;
2375 SKIP_NEXTAW=YES;
2376 SKIP_PHOTON=YES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 SKIP_CARBON=YES
2378fi
2379
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380dnl define an autoconf function to check for a specified version of GTK, and
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002381dnl try to compile/link a GTK program.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382dnl
2383dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002384dnl Test for GTK, and define GTK_CFLAGS, GTK_LIBDIR and GTK_LIBS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385dnl
2386AC_DEFUN(AM_PATH_GTK,
2387[
2388 if test "X$GTK_CONFIG" != "Xno" -o "X$PKG_CONFIG" != "Xno"; then
2389 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 no_gtk=""
2391 if (test "X$SKIP_GTK2" != "XYES" -a "X$PKG_CONFIG" != "Xno") \
2392 && $PKG_CONFIG --exists gtk+-2.0; then
2393 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002394 min_gtk_version=ifelse([$1], ,2.2.0,$1)
2395 AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 dnl We should be using PKG_CHECK_MODULES() instead of this hack.
2397 dnl But I guess the dependency on pkgconfig.m4 is not wanted or
2398 dnl something like that.
2399 GTK_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0`
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002400 GTK_LIBDIR=`$PKG_CONFIG --libs-only-L gtk+-2.0`
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 GTK_LIBS=`$PKG_CONFIG --libs gtk+-2.0`
2402 gtk_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
2403 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
2404 gtk_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
2405 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
2406 gtk_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
2407 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
2408 }
Bram Moolenaar98921892016-02-23 17:14:37 +01002409 elif (test "X$SKIP_GTK3" != "XYES" -a "X$PKG_CONFIG" != "Xno") \
2410 && $PKG_CONFIG --exists gtk+-3.0; then
2411 {
2412 min_gtk_version=ifelse([$1], ,3.0.0,$1)
2413 AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
2414
2415 GTK_CFLAGS=`$PKG_CONFIG --cflags gtk+-3.0`
2416 GTK_LIBDIR=`$PKG_CONFIG --libs-only-L gtk+-3.0`
2417 GTK_LIBS=`$PKG_CONFIG --libs gtk+-3.0`
2418 gtk_major_version=`$PKG_CONFIG --modversion gtk+-3.0 | \
2419 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
2420 gtk_minor_version=`$PKG_CONFIG --modversion gtk+-3.0 | \
2421 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
2422 gtk_micro_version=`$PKG_CONFIG --modversion gtk+-3.0 | \
2423 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
2424 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 else
2426 no_gtk=yes
2427 fi
2428
2429 if test "x$enable_gtktest" = "xyes" -a "x$no_gtk" = "x"; then
2430 {
2431 ac_save_CFLAGS="$CFLAGS"
2432 ac_save_LIBS="$LIBS"
2433 CFLAGS="$CFLAGS $GTK_CFLAGS"
2434 LIBS="$LIBS $GTK_LIBS"
2435
2436 dnl
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002437 dnl Now check if the installed GTK is sufficiently new.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 dnl
2439 rm -f conf.gtktest
2440 AC_TRY_RUN([
2441#include <gtk/gtk.h>
2442#include <stdio.h>
Bram Moolenaar446cb832008-06-24 21:56:24 +00002443#if STDC_HEADERS
2444# include <stdlib.h>
2445# include <stddef.h>
2446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447
2448int
2449main ()
2450{
2451int major, minor, micro;
2452char *tmp_version;
2453
2454system ("touch conf.gtktest");
2455
2456/* HP/UX 9 (%@#!) writes to sscanf strings */
2457tmp_version = g_strdup("$min_gtk_version");
2458if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
2459 printf("%s, bad version string\n", "$min_gtk_version");
2460 exit(1);
2461 }
2462
2463if ((gtk_major_version > major) ||
2464 ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
2465 ((gtk_major_version == major) && (gtk_minor_version == minor) &&
2466 (gtk_micro_version >= micro)))
2467{
2468 return 0;
2469}
2470return 1;
2471}
2472],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
2473 CFLAGS="$ac_save_CFLAGS"
2474 LIBS="$ac_save_LIBS"
2475 }
2476 fi
2477 if test "x$no_gtk" = x ; then
2478 if test "x$enable_gtktest" = "xyes"; then
2479 AC_MSG_RESULT(yes; found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
2480 else
2481 AC_MSG_RESULT(found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
2482 fi
2483 ifelse([$2], , :, [$2])
2484 else
2485 {
2486 AC_MSG_RESULT(no)
2487 GTK_CFLAGS=""
2488 GTK_LIBS=""
2489 ifelse([$3], , :, [$3])
2490 }
2491 fi
2492 }
2493 else
2494 GTK_CFLAGS=""
2495 GTK_LIBS=""
2496 ifelse([$3], , :, [$3])
2497 fi
2498 AC_SUBST(GTK_CFLAGS)
2499 AC_SUBST(GTK_LIBS)
2500 rm -f conf.gtktest
2501])
2502
2503dnl ---------------------------------------------------------------------------
2504dnl gnome
2505dnl ---------------------------------------------------------------------------
2506AC_DEFUN([GNOME_INIT_HOOK],
2507[
2508 AC_SUBST(GNOME_LIBS)
2509 AC_SUBST(GNOME_LIBDIR)
2510 AC_SUBST(GNOME_INCLUDEDIR)
2511
2512 AC_ARG_WITH(gnome-includes,
2513 [ --with-gnome-includes=DIR Specify location of GNOME headers],
2514 [CFLAGS="$CFLAGS -I$withval"]
2515 )
2516
2517 AC_ARG_WITH(gnome-libs,
2518 [ --with-gnome-libs=DIR Specify location of GNOME libs],
2519 [LDFLAGS="$LDFLAGS -L$withval" gnome_prefix=$withval]
2520 )
2521
2522 AC_ARG_WITH(gnome,
2523 [ --with-gnome Specify prefix for GNOME files],
2524 if test x$withval = xyes; then
2525 want_gnome=yes
2526 ifelse([$1], [], :, [$1])
2527 else
2528 if test "x$withval" = xno; then
2529 want_gnome=no
2530 else
2531 want_gnome=yes
2532 LDFLAGS="$LDFLAGS -L$withval/lib"
2533 CFLAGS="$CFLAGS -I$withval/include"
2534 gnome_prefix=$withval/lib
2535 fi
2536 fi,
2537 want_gnome=yes)
2538
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002539 if test "x$want_gnome" = xyes; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 {
2541 AC_MSG_CHECKING(for libgnomeui-2.0)
2542 if $PKG_CONFIG --exists libgnomeui-2.0; then
2543 AC_MSG_RESULT(yes)
2544 GNOME_LIBS=`$PKG_CONFIG --libs-only-l libgnomeui-2.0`
2545 GNOME_LIBDIR=`$PKG_CONFIG --libs-only-L libgnomeui-2.0`
2546 GNOME_INCLUDEDIR=`$PKG_CONFIG --cflags libgnomeui-2.0`
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002547
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002548 dnl On FreeBSD we need -pthread but pkg-config doesn't include it.
2549 dnl This might not be the right way but it works for me...
2550 AC_MSG_CHECKING(for FreeBSD)
2551 if test "`(uname) 2>/dev/null`" = FreeBSD; then
2552 AC_MSG_RESULT(yes, adding -pthread)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002553 GNOME_INCLUDEDIR="$GNOME_INCLUDEDIR -D_THREAD_SAFE"
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002554 GNOME_LIBS="$GNOME_LIBS -pthread"
2555 else
2556 AC_MSG_RESULT(no)
2557 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 $1
2559 else
2560 AC_MSG_RESULT(not found)
2561 if test "x$2" = xfail; then
2562 AC_MSG_ERROR(Could not find libgnomeui-2.0 via pkg-config)
2563 fi
2564 fi
2565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 fi
2567])
2568
2569AC_DEFUN([GNOME_INIT],[
2570 GNOME_INIT_HOOK([],fail)
2571])
2572
2573
2574dnl ---------------------------------------------------------------------------
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002575dnl Check for GTK2. If it fails, then continue on for Motif as before...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576dnl ---------------------------------------------------------------------------
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002577if test -z "$SKIP_GTK2"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578
2579 AC_MSG_CHECKING(--disable-gtktest argument)
2580 AC_ARG_ENABLE(gtktest, [ --disable-gtktest Do not try to compile and run a test GTK program],
2581 , enable_gtktest=yes)
2582 if test "x$enable_gtktest" = "xyes" ; then
2583 AC_MSG_RESULT(gtk test enabled)
2584 else
2585 AC_MSG_RESULT(gtk test disabled)
2586 fi
2587
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 if test "X$PKG_CONFIG" = "X"; then
2589 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
2590 fi
2591
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002592 if test "x$PKG_CONFIG" != "xno"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 dnl First try finding version 2.2.0 or later. The 2.0.x series has
2594 dnl problems (bold fonts, --remote doesn't work).
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002595 AM_PATH_GTK(2.2.0,
2596 [GUI_LIB_LOC="$GTK_LIBDIR"
2597 GTK_LIBNAME="$GTK_LIBS"
2598 GUI_INC_LOC="$GTK_CFLAGS"], )
2599 if test "x$GTK_CFLAGS" != "x"; then
Bram Moolenaar98921892016-02-23 17:14:37 +01002600 SKIP_GTK3=YES
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002601 SKIP_ATHENA=YES
2602 SKIP_NEXTAW=YES
2603 SKIP_MOTIF=YES
2604 GUITYPE=GTK
2605 AC_SUBST(GTK_LIBNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 fi
2607 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 if test "x$GUITYPE" = "xGTK"; then
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002609 if test "$gtk_minor_version" = 1 -a "0$gtk_micro_version" -ge 1 \
2610 || test "0$gtk_minor_version" -ge 2; then
2611 AC_DEFINE(HAVE_GTK_MULTIHEAD)
2612 fi
2613 dnl
2614 dnl if GTK exists, then check for GNOME.
2615 dnl
2616 if test -z "$SKIP_GNOME"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002618 GNOME_INIT_HOOK([have_gnome=yes])
2619 if test "x$have_gnome" = xyes ; then
2620 AC_DEFINE(FEAT_GUI_GNOME)
2621 GUI_INC_LOC="$GUI_INC_LOC $GNOME_INCLUDEDIR"
2622 GTK_LIBNAME="$GTK_LIBNAME $GNOME_LIBDIR $GNOME_LIBS"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 fi
2624 }
2625 fi
2626 fi
2627fi
2628
Bram Moolenaar98921892016-02-23 17:14:37 +01002629
2630dnl ---------------------------------------------------------------------------
2631dnl Check for GTK3.
2632dnl ---------------------------------------------------------------------------
2633if test -z "$SKIP_GTK3"; then
2634
2635 AC_MSG_CHECKING(--disable-gtktest argument)
2636 AC_ARG_ENABLE(gtktest, [ --disable-gtktest Do not try to compile and run a test GTK program],
2637 , enable_gtktest=yes)
2638 if test "x$enable_gtktest" = "xyes" ; then
2639 AC_MSG_RESULT(gtk test enabled)
2640 else
2641 AC_MSG_RESULT(gtk test disabled)
2642 fi
2643
2644 if test "X$PKG_CONFIG" = "X"; then
2645 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
2646 fi
2647
2648 if test "x$PKG_CONFIG" != "xno"; then
2649 AM_PATH_GTK(3.0.0,
2650 [GUI_LIB_LOC="$GTK_LIBDIR"
2651 GTK_LIBNAME="$GTK_LIBS"
2652 GUI_INC_LOC="$GTK_CFLAGS"], )
2653 if test "x$GTK_CFLAGS" != "x"; then
2654 SKIP_GTK2=YES
2655 SKIP_GNOME=YES
2656 SKIP_ATHENA=YES
2657 SKIP_NEXTAW=YES
2658 SKIP_MOTIF=YES
2659 GUITYPE=GTK
2660 AC_SUBST(GTK_LIBNAME)
2661 AC_DEFINE(HAVE_GTK_MULTIHEAD)
2662 AC_DEFINE(USE_GTK3)
2663 fi
2664 fi
2665fi
2666
Bram Moolenaard2e03f02016-01-02 22:46:36 +01002667dnl Check the version of Gdk-Pixbuf. If the version is 2.31 or later and
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002668dnl glib-compile-resources is found in PATH, use GResource.
2669if test "x$GUITYPE" = "xGTK"; then
2670 AC_MSG_CHECKING([version of Gdk-Pixbuf])
2671 gdk_pixbuf_version=`$PKG_CONFIG --modversion gdk-pixbuf-2.0`
2672 if test "x$gdk_pixbuf_version" != x ; then
2673 gdk_pixbuf_version_minor=`echo $gdk_pixbuf_version | \
2674 sed -e 's/[[0-9]][[0-9]]*\.\([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*/\1/'`
2675 if test "x$gdk_pixbuf_version_minor" != x -a \
Bram Moolenaar33c31d52016-02-22 21:07:06 +01002676 $gdk_pixbuf_version_minor -ge 31 ; then
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002677 AC_MSG_RESULT([OK.])
2678 AC_PATH_PROG(GLIB_COMPILE_RESOURCES,[glib-compile-resources],no)
2679 AC_MSG_CHECKING([glib-compile-resources])
2680 if test "x$GLIB_COMPILE_RESOURCES" = xno ; then
Bram Moolenaar33c31d52016-02-22 21:07:06 +01002681 GLIB_COMPILE_RESOURCES=""
2682 AC_MSG_RESULT([cannot be found in PATH.])
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002683 else
2684 AC_MSG_RESULT([usable.])
Bram Moolenaar33c31d52016-02-22 21:07:06 +01002685 AC_DEFINE(USE_GRESOURCE)
2686 GRESOURCE_SRC="auto/gui_gtk_gresources.c"
2687 GRESOURCE_OBJ="objects/gui_gtk_gresources.o"
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002688 fi
2689 else
2690 AC_MSG_RESULT([not usable.])
2691 fi
2692 else
2693 AC_MSG_RESULT([cannot obtain from pkg_config.])
2694 fi
Bram Moolenaar4adfaab2016-04-21 18:20:11 +02002695
2696 AC_MSG_CHECKING([--disable-icon-cache-update argument])
2697 AC_ARG_ENABLE(icon_cache_update,
2698 [ --disable-icon-cache-update update disabled],
2699 [],
2700 [enable_icon_cache_update="yes"])
2701 if test "$enable_icon_cache_update" = "yes"; then
2702 AC_MSG_RESULT([not set])
2703 AC_PATH_PROG(GTK_UPDATE_ICON_CACHE,[gtk-update-icon-cache],no)
2704 if test "x$GTK_UPDATE_ICON_CACHE" = "xno" ; then
2705 AC_MSG_RESULT([not found in PATH.])
2706 fi
2707 else
2708 AC_MSG_RESULT([update disabled])
2709 fi
2710
2711 AC_MSG_CHECKING([--disable-desktop-database-update argument])
2712 AC_ARG_ENABLE(desktop_database_update,
2713 [ --disable-desktop-database-update update disabled],
2714 [],
2715 [enable_desktop_database_update="yes"])
2716 if test "$enable_desktop_database_update" = "yes"; then
2717 AC_MSG_RESULT([not set])
2718 AC_PATH_PROG(UPDATE_DESKTOP_DATABASE,[update-desktop-database],no)
2719 if test "x$UPDATE_DESKTOP_DATABASE" = "xno" ; then
2720 AC_MSG_RESULT([not found in PATH.])
2721 fi
2722 else
2723 AC_MSG_RESULT([update disabled])
2724 fi
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002725fi
2726AC_SUBST(GLIB_COMPILE_RESOURCES)
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002727AC_SUBST(GRESOURCE_SRC)
2728AC_SUBST(GRESOURCE_OBJ)
Bram Moolenaar4adfaab2016-04-21 18:20:11 +02002729AC_SUBST(GTK_UPDATE_ICON_CACHE)
2730AC_SUBST(UPDATE_DESKTOP_DATABASE)
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002731
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732dnl Check for Motif include files location.
2733dnl The LAST one found is used, this makes the highest version to be used,
2734dnl e.g. when Motif1.2 and Motif2.0 are both present.
2735
2736if test -z "$SKIP_MOTIF"; then
2737 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"
2738 dnl Remove "-I" from before $GUI_INC_LOC if it's there
2739 GUI_INC_LOC="`echo $GUI_INC_LOC|sed 's%-I%%g'`"
2740
2741 AC_MSG_CHECKING(for location of Motif GUI includes)
2742 gui_includes="`echo $x_includes|sed 's%/[^/][^/]*$%%'` `echo "$gui_XXX" | sed s/XXX/include/g` $GUI_INC_LOC"
2743 GUI_INC_LOC=
2744 for try in $gui_includes; do
2745 if test -f "$try/Xm/Xm.h"; then
2746 GUI_INC_LOC=$try
2747 fi
2748 done
2749 if test -n "$GUI_INC_LOC"; then
2750 if test "$GUI_INC_LOC" = /usr/include; then
2751 GUI_INC_LOC=
2752 AC_MSG_RESULT(in default path)
2753 else
2754 AC_MSG_RESULT($GUI_INC_LOC)
2755 fi
2756 else
2757 AC_MSG_RESULT(<not found>)
2758 SKIP_MOTIF=YES
2759 fi
2760fi
2761
2762dnl Check for Motif library files location. In the same order as the include
2763dnl files, to avoid a mixup if several versions are present
2764
2765if test -z "$SKIP_MOTIF"; then
2766 AC_MSG_CHECKING(--with-motif-lib argument)
2767 AC_ARG_WITH(motif-lib,
2768 [ --with-motif-lib=STRING Library for Motif ],
2769 [ MOTIF_LIBNAME="${withval}" ] )
2770
2771 if test -n "$MOTIF_LIBNAME"; then
2772 AC_MSG_RESULT($MOTIF_LIBNAME)
2773 GUI_LIB_LOC=
2774 else
2775 AC_MSG_RESULT(no)
2776
2777 dnl Remove "-L" from before $GUI_LIB_LOC if it's there
2778 GUI_LIB_LOC="`echo $GUI_LIB_LOC|sed 's%-L%%g'`"
2779
Bram Moolenaar6324c3b2013-06-17 20:27:18 +02002780 dnl Ubuntu has libXm.so in /usr/lib/i386-linux-gnu and elsewhere. The
2781 dnl linker will figure out which one to use, we only check if one exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 AC_MSG_CHECKING(for location of Motif GUI libs)
Bram Moolenaar6324c3b2013-06-17 20:27:18 +02002783 gui_libs="`echo $x_libraries|sed 's%/[^/][^/]*$%%'` `echo "$gui_XXX" | sed s/XXX/lib/g` /usr/lib/i386-linux-gnu /usr/lib/x86_64-linux-gnu `echo "$GUI_INC_LOC" | sed s/include/lib/` $GUI_LIB_LOC"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 GUI_LIB_LOC=
2785 for try in $gui_libs; do
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002786 for libtry in "$try"/libXm.a "$try"/libXm.so* "$try"/libXm.sl "$try"/libXm.dylib; do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 if test -f "$libtry"; then
2788 GUI_LIB_LOC=$try
2789 fi
2790 done
2791 done
2792 if test -n "$GUI_LIB_LOC"; then
2793 dnl Remove /usr/lib, it causes trouble on some systems
Bram Moolenaar6324c3b2013-06-17 20:27:18 +02002794 if test "$GUI_LIB_LOC" = /usr/lib \
2795 -o "$GUI_LIB_LOC" = /usr/lib/i386-linux-gnu \
2796 -o "$GUI_LIB_LOC" = /usr/lib/x86_64-linux-gnu; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 GUI_LIB_LOC=
2798 AC_MSG_RESULT(in default path)
2799 else
2800 if test -n "$GUI_LIB_LOC"; then
2801 AC_MSG_RESULT($GUI_LIB_LOC)
2802 if test "`(uname) 2>/dev/null`" = SunOS &&
2803 uname -r | grep '^5' >/dev/null; then
2804 GUI_LIB_LOC="$GUI_LIB_LOC -R $GUI_LIB_LOC"
2805 fi
2806 fi
2807 fi
2808 MOTIF_LIBNAME=-lXm
2809 else
2810 AC_MSG_RESULT(<not found>)
2811 SKIP_MOTIF=YES
2812 fi
2813 fi
2814fi
2815
2816if test -z "$SKIP_MOTIF"; then
2817 SKIP_ATHENA=YES
2818 SKIP_NEXTAW=YES
2819 GUITYPE=MOTIF
2820 AC_SUBST(MOTIF_LIBNAME)
2821fi
2822
2823dnl Check if the Athena files can be found
2824
2825GUI_X_LIBS=
2826
2827if test -z "$SKIP_ATHENA"; then
2828 AC_MSG_CHECKING(if Athena header files can be found)
2829 cflags_save=$CFLAGS
2830 CFLAGS="$CFLAGS $X_CFLAGS"
2831 AC_TRY_COMPILE([
2832#include <X11/Intrinsic.h>
2833#include <X11/Xaw/Paned.h>], ,
2834 AC_MSG_RESULT(yes),
2835 AC_MSG_RESULT(no); SKIP_ATHENA=YES )
2836 CFLAGS=$cflags_save
2837fi
2838
2839if test -z "$SKIP_ATHENA"; then
2840 GUITYPE=ATHENA
2841fi
2842
2843if test -z "$SKIP_NEXTAW"; then
2844 AC_MSG_CHECKING(if neXtaw header files can be found)
2845 cflags_save=$CFLAGS
2846 CFLAGS="$CFLAGS $X_CFLAGS"
2847 AC_TRY_COMPILE([
2848#include <X11/Intrinsic.h>
2849#include <X11/neXtaw/Paned.h>], ,
2850 AC_MSG_RESULT(yes),
2851 AC_MSG_RESULT(no); SKIP_NEXTAW=YES )
2852 CFLAGS=$cflags_save
2853fi
2854
2855if test -z "$SKIP_NEXTAW"; then
2856 GUITYPE=NEXTAW
2857fi
2858
2859if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF"; then
2860 dnl Prepend -I and -L to $GUI_INC_LOC and $GUI_LIB_LOC if not empty
2861 dnl Avoid adding it when it twice
2862 if test -n "$GUI_INC_LOC"; then
2863 GUI_INC_LOC=-I"`echo $GUI_INC_LOC|sed 's%-I%%'`"
2864 fi
2865 if test -n "$GUI_LIB_LOC"; then
2866 GUI_LIB_LOC=-L"`echo $GUI_LIB_LOC|sed 's%-L%%'`"
2867 fi
2868
2869 dnl Check for -lXext and then for -lXmu
2870 ldflags_save=$LDFLAGS
2871 LDFLAGS="$X_LIBS $LDFLAGS"
2872 AC_CHECK_LIB(Xext, XShapeQueryExtension, [GUI_X_LIBS="-lXext"],,
2873 [-lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2874 dnl For Solaris we need -lw and -ldl before linking with -lXmu works.
2875 AC_CHECK_LIB(w, wslen, [X_EXTRA_LIBS="$X_EXTRA_LIBS -lw"],,
2876 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2877 AC_CHECK_LIB(dl, dlsym, [X_EXTRA_LIBS="$X_EXTRA_LIBS -ldl"],,
2878 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2879 AC_CHECK_LIB(Xmu, XmuCreateStippledPixmap, [GUI_X_LIBS="-lXmu $GUI_X_LIBS"],,
2880 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2881 if test -z "$SKIP_MOTIF"; then
2882 AC_CHECK_LIB(Xp, XpEndJob, [GUI_X_LIBS="-lXp $GUI_X_LIBS"],,
2883 [$GUI_X_LIBS -lXm -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS])
2884 fi
2885 LDFLAGS=$ldflags_save
2886
2887 dnl Execute xmkmf to figure out if -DNARROWPROTO is needed.
2888 AC_MSG_CHECKING(for extra X11 defines)
2889 NARROW_PROTO=
2890 rm -fr conftestdir
2891 if mkdir conftestdir; then
2892 cd conftestdir
2893 cat > Imakefile <<'EOF'
2894acfindx:
2895 @echo 'NARROW_PROTO="${PROTO_DEFINES}"'
2896EOF
2897 if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
2898 eval `${MAKE-make} acfindx 2>/dev/null | grep -v make`
2899 fi
2900 cd ..
2901 rm -fr conftestdir
2902 fi
2903 if test -z "$NARROW_PROTO"; then
2904 AC_MSG_RESULT(no)
2905 else
2906 AC_MSG_RESULT($NARROW_PROTO)
2907 fi
2908 AC_SUBST(NARROW_PROTO)
2909fi
2910
2911dnl Look for XSMP support - but don't necessarily restrict it to X11 GUIs
2912dnl use the X11 include path
2913if test "$enable_xsmp" = "yes"; then
2914 cppflags_save=$CPPFLAGS
2915 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
2916 AC_CHECK_HEADERS(X11/SM/SMlib.h)
2917 CPPFLAGS=$cppflags_save
2918fi
2919
2920
Bram Moolenaar98921892016-02-23 17:14:37 +01002921if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF" -o -z "$SKIP_GTK2" -o -z "$SKIP_GTK3"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 dnl Check for X11/xpm.h and X11/Sunkeysym.h with the GUI include path
2923 cppflags_save=$CPPFLAGS
2924 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
2925 AC_CHECK_HEADERS(X11/xpm.h X11/Sunkeysym.h)
2926
2927 dnl automatically disable XIM when XIMtext isn't in X11/Xlib.h
2928 if test ! "$enable_xim" = "no"; then
2929 AC_MSG_CHECKING(for XIMText in X11/Xlib.h)
2930 AC_EGREP_CPP(XIMText, [#include <X11/Xlib.h>],
2931 AC_MSG_RESULT(yes),
Bram Moolenaare29b1fe2014-04-10 20:00:15 +02002932 AC_MSG_RESULT(no; xim has been disabled); enable_xim="no")
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 fi
2934 CPPFLAGS=$cppflags_save
2935
2936 dnl automatically enable XIM when hangul input isn't enabled
2937 if test "$enable_xim" = "auto" -a "$enable_hangulinput" != "yes" \
2938 -a "x$GUITYPE" != "xNONE" ; then
2939 AC_MSG_RESULT(X GUI selected; xim has been enabled)
2940 enable_xim="yes"
2941 fi
2942fi
2943
2944if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF"; then
2945 cppflags_save=$CPPFLAGS
2946 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
Bram Moolenaar2ce06f62005-01-31 19:19:04 +00002947dnl Xmu/Editres.h may exist but can only be used after including Intrinsic.h
2948 AC_MSG_CHECKING([for X11/Xmu/Editres.h])
2949 AC_TRY_COMPILE([
2950#include <X11/Intrinsic.h>
2951#include <X11/Xmu/Editres.h>],
2952 [int i; i = 0;],
2953 AC_MSG_RESULT(yes)
2954 AC_DEFINE(HAVE_X11_XMU_EDITRES_H),
2955 AC_MSG_RESULT(no))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 CPPFLAGS=$cppflags_save
2957fi
2958
2959dnl Only use the Xm directory when compiling Motif, don't use it for Athena
2960if test -z "$SKIP_MOTIF"; then
2961 cppflags_save=$CPPFLAGS
2962 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
Bram Moolenaar77c19352012-06-13 19:19:41 +02002963 if test "$zOSUnix" = "yes"; then
2964 xmheader="Xm/Xm.h"
2965 else
2966 xmheader="Xm/Xm.h Xm/XpmP.h Xm/JoinSideT.h Xm/TraitP.h Xm/Manager.h
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02002967 Xm/UnhighlightT.h Xm/Notebook.h"
Bram Moolenaar77c19352012-06-13 19:19:41 +02002968 fi
2969 AC_CHECK_HEADERS($xmheader)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002970
Bram Moolenaar77c19352012-06-13 19:19:41 +02002971 if test "x$ac_cv_header_Xm_XpmP_h" = "xyes"; then
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002972 dnl Solaris uses XpmAttributes_21, very annoying.
2973 AC_MSG_CHECKING([for XpmAttributes_21 in Xm/XpmP.h])
2974 AC_TRY_COMPILE([#include <Xm/XpmP.h>], [XpmAttributes_21 attr;],
2975 AC_MSG_RESULT(yes); AC_DEFINE(XPMATTRIBUTES_TYPE, XpmAttributes_21),
2976 AC_MSG_RESULT(no); AC_DEFINE(XPMATTRIBUTES_TYPE, XpmAttributes)
2977 )
2978 else
Bram Moolenaar57657d82006-04-21 22:12:41 +00002979 AC_DEFINE(XPMATTRIBUTES_TYPE, XpmAttributes)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002980 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 CPPFLAGS=$cppflags_save
2982fi
2983
2984if test "x$GUITYPE" = "xNONE" -a "$enable_xim" = "yes"; then
2985 AC_MSG_RESULT(no GUI selected; xim has been disabled)
2986 enable_xim="no"
2987fi
2988if test "x$GUITYPE" = "xNONE" -a "$enable_fontset" = "yes"; then
2989 AC_MSG_RESULT(no GUI selected; fontset has been disabled)
2990 enable_fontset="no"
2991fi
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002992if test "x$GUITYPE:$enable_fontset" = "xGTK:yes"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 AC_MSG_RESULT(GTK+ 2 GUI selected; fontset has been disabled)
2994 enable_fontset="no"
2995fi
2996
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997if test -z "$SKIP_PHOTON"; then
2998 GUITYPE=PHOTONGUI
2999fi
3000
3001AC_SUBST(GUI_INC_LOC)
3002AC_SUBST(GUI_LIB_LOC)
3003AC_SUBST(GUITYPE)
3004AC_SUBST(GUI_X_LIBS)
3005
3006if test "$enable_workshop" = "yes" -a -n "$SKIP_MOTIF"; then
3007 AC_MSG_ERROR([cannot use workshop without Motif])
3008fi
3009
3010dnl defining FEAT_XIM and FEAT_XFONTSET is delayed, so that they can be disabled
3011if test "$enable_xim" = "yes"; then
3012 AC_DEFINE(FEAT_XIM)
3013fi
3014if test "$enable_fontset" = "yes"; then
3015 AC_DEFINE(FEAT_XFONTSET)
3016fi
3017
3018
3019dnl ---------------------------------------------------------------------------
3020dnl end of GUI-checking
3021dnl ---------------------------------------------------------------------------
3022
Bram Moolenaar5f69fee2017-03-09 11:58:40 +01003023AC_MSG_CHECKING([for /proc/self/exe])
3024if test -L "/proc/self/exe"; then
3025 AC_MSG_RESULT(yes)
3026 AC_DEFINE(HAVE_PROC_SELF_EXE)
3027else
3028 AC_MSG_RESULT(no)
3029fi
3030
Bram Moolenaar693e40c2013-02-26 14:56:42 +01003031dnl Check for Cygwin, which needs an extra source file if not using X11
Bram Moolenaar8def26a2015-12-17 15:34:53 +01003032AC_MSG_CHECKING(for CYGWIN or MSYS environment)
Bram Moolenaar693e40c2013-02-26 14:56:42 +01003033case `uname` in
Bram Moolenaar8def26a2015-12-17 15:34:53 +01003034 CYGWIN*|MSYS*) CYGWIN=yes; AC_MSG_RESULT(yes)
Bram Moolenaar693e40c2013-02-26 14:56:42 +01003035 AC_MSG_CHECKING(for CYGWIN clipboard support)
3036 if test "x$with_x" = "xno" ; then
3037 OS_EXTRA_SRC=winclip.c; OS_EXTRA_OBJ=objects/winclip.o
3038 AC_MSG_RESULT(yes)
3039 AC_DEFINE(FEAT_CYGWIN_WIN32_CLIPBOARD)
3040 else
3041 AC_MSG_RESULT(no - using X11)
3042 fi ;;
3043
3044 *) CYGWIN=no; AC_MSG_RESULT(no);;
3045esac
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046
3047dnl Only really enable hangul input when GUI and XFONTSET are available
3048if test "$enable_hangulinput" = "yes"; then
3049 if test "x$GUITYPE" = "xNONE"; then
3050 AC_MSG_RESULT(no GUI selected; hangul input has been disabled)
3051 enable_hangulinput=no
3052 else
3053 AC_DEFINE(FEAT_HANGULIN)
3054 HANGULIN_SRC=hangulin.c
3055 AC_SUBST(HANGULIN_SRC)
3056 HANGULIN_OBJ=objects/hangulin.o
3057 AC_SUBST(HANGULIN_OBJ)
3058 fi
3059fi
3060
3061dnl Checks for libraries and include files.
3062
Bram Moolenaar446cb832008-06-24 21:56:24 +00003063AC_CACHE_CHECK([whether toupper is broken], [vim_cv_toupper_broken],
3064 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01003065 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003066#include "confdefs.h"
3067#include <ctype.h>
3068#if STDC_HEADERS
3069# include <stdlib.h>
3070# include <stddef.h>
3071#endif
3072main() { exit(toupper('A') == 'A' && tolower('z') == 'z'); }
Bram Moolenaar7db77842014-03-27 17:40:59 +01003073 ]])],[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003074 vim_cv_toupper_broken=yes
3075 ],[
3076 vim_cv_toupper_broken=no
3077 ],[
3078 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_toupper_broken')
3079 ])])
3080
3081if test "x$vim_cv_toupper_broken" = "xyes" ; then
3082 AC_DEFINE(BROKEN_TOUPPER)
3083fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084
3085AC_MSG_CHECKING(whether __DATE__ and __TIME__ work)
Bram Moolenaar446cb832008-06-24 21:56:24 +00003086AC_TRY_COMPILE([#include <stdio.h>], [printf("(" __DATE__ " " __TIME__ ")");],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_DATE_TIME),
3088 AC_MSG_RESULT(no))
3089
Bram Moolenaar0c094b92009-05-14 20:20:33 +00003090AC_MSG_CHECKING(whether __attribute__((unused)) is allowed)
3091AC_TRY_COMPILE([#include <stdio.h>], [int x __attribute__((unused));],
3092 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ATTRIBUTE_UNUSED),
3093 AC_MSG_RESULT(no))
3094
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095dnl Checks for header files.
3096AC_CHECK_HEADER(elf.h, HAS_ELF=1)
3097dnl AC_CHECK_HEADER(dwarf.h, SVR4=1)
3098if test "$HAS_ELF" = 1; then
3099 AC_CHECK_LIB(elf, main)
3100fi
3101
3102AC_HEADER_DIRENT
3103
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104dnl If sys/wait.h is not found it might still exist but not be POSIX
3105dnl compliant. In that case we define HAVE_UNION_WAIT (for NeXT)
3106if test $ac_cv_header_sys_wait_h = no; then
3107 AC_MSG_CHECKING([for sys/wait.h that defines union wait])
3108 AC_TRY_COMPILE([#include <sys/wait.h>],
3109 [union wait xx, yy; xx = yy],
3110 AC_MSG_RESULT(yes)
3111 AC_DEFINE(HAVE_SYS_WAIT_H)
3112 AC_DEFINE(HAVE_UNION_WAIT),
3113 AC_MSG_RESULT(no))
3114fi
3115
Bram Moolenaar779a7752016-01-30 23:26:34 +01003116AC_CHECK_HEADERS(stdint.h stdlib.h string.h \
Bram Moolenaarfa7584c2010-05-19 21:57:45 +02003117 sys/select.h sys/utsname.h termcap.h fcntl.h \
3118 sgtty.h sys/ioctl.h sys/time.h sys/types.h \
3119 termio.h iconv.h inttypes.h langinfo.h math.h \
3120 unistd.h stropts.h errno.h sys/resource.h \
3121 sys/systeminfo.h locale.h sys/stream.h termios.h \
3122 libc.h sys/statfs.h poll.h sys/poll.h pwd.h \
3123 utime.h sys/param.h libintl.h libgen.h \
3124 util/debug.h util/msg18n.h frame.h sys/acl.h \
3125 sys/access.h sys/sysinfo.h wchar.h wctype.h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126
Bram Moolenaar00ca2842008-06-26 20:14:00 +00003127dnl sys/ptem.h depends on sys/stream.h on Solaris
3128AC_CHECK_HEADERS(sys/ptem.h, [], [],
3129[#if defined HAVE_SYS_STREAM_H
3130# include <sys/stream.h>
3131#endif])
3132
Bram Moolenaar32f31b12009-05-21 13:20:59 +00003133dnl sys/sysctl.h depends on sys/param.h on OpenBSD
3134AC_CHECK_HEADERS(sys/sysctl.h, [], [],
3135[#if defined HAVE_SYS_PARAM_H
3136# include <sys/param.h>
3137#endif])
3138
Bram Moolenaar00ca2842008-06-26 20:14:00 +00003139
Bram Moolenaardf3267e2005-01-25 22:07:05 +00003140dnl pthread_np.h may exist but can only be used after including pthread.h
3141AC_MSG_CHECKING([for pthread_np.h])
3142AC_TRY_COMPILE([
3143#include <pthread.h>
3144#include <pthread_np.h>],
3145 [int i; i = 0;],
3146 AC_MSG_RESULT(yes)
3147 AC_DEFINE(HAVE_PTHREAD_NP_H),
3148 AC_MSG_RESULT(no))
3149
Bram Moolenaare344bea2005-09-01 20:46:49 +00003150AC_CHECK_HEADERS(strings.h)
Bram Moolenaar9372a112005-12-06 19:59:18 +00003151if test "x$MACOSX" = "xyes"; then
3152 dnl The strings.h file on OS/X contains a warning and nothing useful.
3153 AC_DEFINE(NO_STRINGS_WITH_STRING_H)
3154else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155
3156dnl Check if strings.h and string.h can both be included when defined.
3157AC_MSG_CHECKING([if strings.h can be included after string.h])
3158cppflags_save=$CPPFLAGS
3159CPPFLAGS="$CPPFLAGS $X_CFLAGS"
3160AC_TRY_COMPILE([
3161#if defined(_AIX) && !defined(_AIX51) && !defined(_NO_PROTO)
3162# define _NO_PROTO /* like in os_unix.h, causes conflict for AIX (Winn) */
3163 /* but don't do it on AIX 5.1 (Uribarri) */
3164#endif
3165#ifdef HAVE_XM_XM_H
3166# include <Xm/Xm.h> /* This breaks it for HP-UX 11 (Squassabia) */
3167#endif
3168#ifdef HAVE_STRING_H
3169# include <string.h>
3170#endif
3171#if defined(HAVE_STRINGS_H)
3172# include <strings.h>
3173#endif
3174 ], [int i; i = 0;],
3175 AC_MSG_RESULT(yes),
3176 AC_DEFINE(NO_STRINGS_WITH_STRING_H)
3177 AC_MSG_RESULT(no))
3178CPPFLAGS=$cppflags_save
Bram Moolenaar9372a112005-12-06 19:59:18 +00003179fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180
3181dnl Checks for typedefs, structures, and compiler characteristics.
3182AC_PROG_GCC_TRADITIONAL
3183AC_C_CONST
Bram Moolenaar76243bd2009-03-02 01:47:02 +00003184AC_C_VOLATILE
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185AC_TYPE_MODE_T
3186AC_TYPE_OFF_T
3187AC_TYPE_PID_T
3188AC_TYPE_SIZE_T
3189AC_TYPE_UID_T
Bram Moolenaar0bbabe82010-05-17 20:32:55 +02003190AC_TYPE_UINT32_T
Bram Moolenaarfa7584c2010-05-19 21:57:45 +02003191
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192AC_HEADER_TIME
3193AC_CHECK_TYPE(ino_t, long)
3194AC_CHECK_TYPE(dev_t, unsigned)
Bram Moolenaar0bbabe82010-05-17 20:32:55 +02003195AC_C_BIGENDIAN(,,,)
Bram Moolenaar136f29a2016-02-27 20:14:15 +01003196AC_C_INLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197
3198AC_MSG_CHECKING(for rlim_t)
3199if eval "test \"`echo '$''{'ac_cv_type_rlim_t'+set}'`\" = set"; then
3200 AC_MSG_RESULT([(cached) $ac_cv_type_rlim_t])
3201else
3202 AC_EGREP_CPP(dnl
3203changequote(<<,>>)dnl
3204<<(^|[^a-zA-Z_0-9])rlim_t[^a-zA-Z_0-9]>>dnl
3205changequote([,]),
3206 [
3207#include <sys/types.h>
3208#if STDC_HEADERS
Bram Moolenaar446cb832008-06-24 21:56:24 +00003209# include <stdlib.h>
3210# include <stddef.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211#endif
3212#ifdef HAVE_SYS_RESOURCE_H
Bram Moolenaar446cb832008-06-24 21:56:24 +00003213# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214#endif
3215 ], ac_cv_type_rlim_t=yes, ac_cv_type_rlim_t=no)
3216 AC_MSG_RESULT($ac_cv_type_rlim_t)
3217fi
3218if test $ac_cv_type_rlim_t = no; then
3219 cat >> confdefs.h <<\EOF
3220#define rlim_t unsigned long
3221EOF
3222fi
3223
3224AC_MSG_CHECKING(for stack_t)
3225if eval "test \"`echo '$''{'ac_cv_type_stack_t'+set}'`\" = set"; then
3226 AC_MSG_RESULT([(cached) $ac_cv_type_stack_t])
3227else
3228 AC_EGREP_CPP(stack_t,
3229 [
3230#include <sys/types.h>
3231#if STDC_HEADERS
Bram Moolenaar446cb832008-06-24 21:56:24 +00003232# include <stdlib.h>
3233# include <stddef.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234#endif
3235#include <signal.h>
3236 ], ac_cv_type_stack_t=yes, ac_cv_type_stack_t=no)
3237 AC_MSG_RESULT($ac_cv_type_stack_t)
3238fi
3239if test $ac_cv_type_stack_t = no; then
3240 cat >> confdefs.h <<\EOF
3241#define stack_t struct sigaltstack
3242EOF
3243fi
3244
3245dnl BSDI uses ss_base while others use ss_sp for the stack pointer.
3246AC_MSG_CHECKING(whether stack_t has an ss_base field)
3247AC_TRY_COMPILE([
3248#include <sys/types.h>
3249#if STDC_HEADERS
Bram Moolenaar446cb832008-06-24 21:56:24 +00003250# include <stdlib.h>
3251# include <stddef.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252#endif
3253#include <signal.h>
3254#include "confdefs.h"
3255 ], [stack_t sigstk; sigstk.ss_base = 0; ],
3256 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SS_BASE),
3257 AC_MSG_RESULT(no))
3258
3259olibs="$LIBS"
3260AC_MSG_CHECKING(--with-tlib argument)
3261AC_ARG_WITH(tlib, [ --with-tlib=library terminal library to be used ],)
3262if test -n "$with_tlib"; then
3263 AC_MSG_RESULT($with_tlib)
3264 LIBS="$LIBS -l$with_tlib"
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003265 AC_MSG_CHECKING(for linking with $with_tlib library)
3266 AC_TRY_LINK([], [], AC_MSG_RESULT(OK), AC_MSG_ERROR(FAILED))
3267 dnl Need to check for tgetent() below.
3268 olibs="$LIBS"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003270 AC_MSG_RESULT([empty: automatic terminal library selection])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 dnl On HP-UX 10.10 termcap or termlib should be used instead of
3272 dnl curses, because curses is much slower.
Bram Moolenaar4e509b62011-02-09 17:42:57 +01003273 dnl Newer versions of ncurses are preferred over anything, except
Bram Moolenaar8f4ba692011-05-05 17:24:27 +02003274 dnl when tinfo has been split off, it contains all we need.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 dnl Older versions of ncurses have bugs, get a new one!
3276 dnl Digital Unix (OSF1) should use curses (Ronald Schild).
Bram Moolenaara1b5aa52006-10-10 09:41:28 +00003277 dnl On SCO Openserver should prefer termlib (Roger Cornelius).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 case "`uname -s 2>/dev/null`" in
Bram Moolenaar4e509b62011-02-09 17:42:57 +01003279 OSF1|SCO_SV) tlibs="tinfo ncurses curses termlib termcap";;
3280 *) tlibs="tinfo ncurses termlib termcap curses";;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 esac
3282 for libname in $tlibs; do
3283 AC_CHECK_LIB(${libname}, tgetent,,)
3284 if test "x$olibs" != "x$LIBS"; then
3285 dnl It's possible that a library is found but it doesn't work
3286 dnl e.g., shared library that cannot be found
3287 dnl compile and run a test program to be sure
3288 AC_TRY_RUN([
3289#ifdef HAVE_TERMCAP_H
3290# include <termcap.h>
3291#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +00003292#if STDC_HEADERS
3293# include <stdlib.h>
3294# include <stddef.h>
3295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296main() {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(0); }],
3297 res="OK", res="FAIL", res="FAIL")
3298 if test "$res" = "OK"; then
3299 break
3300 fi
3301 AC_MSG_RESULT($libname library is not usable)
3302 LIBS="$olibs"
3303 fi
3304 done
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003305 if test "x$olibs" = "x$LIBS"; then
3306 AC_MSG_RESULT(no terminal library found)
3307 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308fi
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003309
3310if test "x$olibs" = "x$LIBS"; then
3311 AC_MSG_CHECKING([for tgetent()])
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00003312 AC_TRY_LINK([],
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003313 [char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist");],
3314 AC_MSG_RESULT(yes),
3315 AC_MSG_ERROR([NOT FOUND!
3316 You need to install a terminal library; for example ncurses.
3317 Or specify the name of the library with --with-tlib.]))
3318fi
3319
Bram Moolenaar446cb832008-06-24 21:56:24 +00003320AC_CACHE_CHECK([whether we talk terminfo], [vim_cv_terminfo],
3321 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01003322 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003323#include "confdefs.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324#ifdef HAVE_TERMCAP_H
3325# include <termcap.h>
3326#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +00003327#ifdef HAVE_STRING_H
3328# include <string.h>
3329#endif
3330#if STDC_HEADERS
3331# include <stdlib.h>
3332# include <stddef.h>
3333#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334main()
Bram Moolenaar446cb832008-06-24 21:56:24 +00003335{char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(!strcmp(s==0 ? "" : s, "1")); }
Bram Moolenaar7db77842014-03-27 17:40:59 +01003336 ]])],[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003337 vim_cv_terminfo=no
3338 ],[
3339 vim_cv_terminfo=yes
3340 ],[
3341 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_terminfo')
3342 ])
3343 ])
3344
3345if test "x$vim_cv_terminfo" = "xyes" ; then
3346 AC_DEFINE(TERMINFO)
3347fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348
3349if test "x$olibs" != "x$LIBS"; then
Bram Moolenaar446cb832008-06-24 21:56:24 +00003350 AC_CACHE_CHECK([what tgetent() returns for an unknown terminal], [vim_cv_tgent],
3351 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01003352 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003353#include "confdefs.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354#ifdef HAVE_TERMCAP_H
3355# include <termcap.h>
3356#endif
Bram Moolenaar446cb832008-06-24 21:56:24 +00003357#if STDC_HEADERS
3358# include <stdlib.h>
3359# include <stddef.h>
3360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361main()
Bram Moolenaar446cb832008-06-24 21:56:24 +00003362{char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist"); exit(res != 0); }
Bram Moolenaar7db77842014-03-27 17:40:59 +01003363 ]])],[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003364 vim_cv_tgent=zero
3365 ],[
3366 vim_cv_tgent=non-zero
3367 ],[
3368 AC_MSG_ERROR(failed to compile test program.)
3369 ])
3370 ])
3371
3372 if test "x$vim_cv_tgent" = "xzero" ; then
3373 AC_DEFINE(TGETENT_ZERO_ERR, 0)
3374 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375fi
3376
3377AC_MSG_CHECKING(whether termcap.h contains ospeed)
3378AC_TRY_LINK([
3379#ifdef HAVE_TERMCAP_H
3380# include <termcap.h>
3381#endif
3382 ], [ospeed = 20000],
3383 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_OSPEED),
3384 [AC_MSG_RESULT(no)
3385 AC_MSG_CHECKING(whether ospeed can be extern)
3386 AC_TRY_LINK([
3387#ifdef HAVE_TERMCAP_H
3388# include <termcap.h>
3389#endif
3390extern short ospeed;
3391 ], [ospeed = 20000],
3392 AC_MSG_RESULT(yes); AC_DEFINE(OSPEED_EXTERN),
3393 AC_MSG_RESULT(no))]
3394 )
3395
3396AC_MSG_CHECKING([whether termcap.h contains UP, BC and PC])
3397AC_TRY_LINK([
3398#ifdef HAVE_TERMCAP_H
3399# include <termcap.h>
3400#endif
3401 ], [if (UP == 0 && BC == 0) PC = 1],
3402 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_UP_BC_PC),
3403 [AC_MSG_RESULT(no)
3404 AC_MSG_CHECKING([whether UP, BC and PC can be extern])
3405 AC_TRY_LINK([
3406#ifdef HAVE_TERMCAP_H
3407# include <termcap.h>
3408#endif
3409extern char *UP, *BC, PC;
3410 ], [if (UP == 0 && BC == 0) PC = 1],
3411 AC_MSG_RESULT(yes); AC_DEFINE(UP_BC_PC_EXTERN),
3412 AC_MSG_RESULT(no))]
3413 )
3414
3415AC_MSG_CHECKING(whether tputs() uses outfuntype)
3416AC_TRY_COMPILE([
3417#ifdef HAVE_TERMCAP_H
3418# include <termcap.h>
3419#endif
3420 ], [extern int xx(); tputs("test", 1, (outfuntype)xx)],
3421 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_OUTFUNTYPE),
3422 AC_MSG_RESULT(no))
3423
3424dnl On some SCO machines sys/select redefines struct timeval
3425AC_MSG_CHECKING([whether sys/select.h and sys/time.h may both be included])
3426AC_TRY_COMPILE([
3427#include <sys/types.h>
3428#include <sys/time.h>
3429#include <sys/select.h>], ,
3430 AC_MSG_RESULT(yes)
3431 AC_DEFINE(SYS_SELECT_WITH_SYS_TIME),
3432 AC_MSG_RESULT(no))
3433
3434dnl AC_DECL_SYS_SIGLIST
3435
3436dnl Checks for pty.c (copied from screen) ==========================
3437AC_MSG_CHECKING(for /dev/ptc)
3438if test -r /dev/ptc; then
3439 AC_DEFINE(HAVE_DEV_PTC)
3440 AC_MSG_RESULT(yes)
3441else
3442 AC_MSG_RESULT(no)
3443fi
3444
3445AC_MSG_CHECKING(for SVR4 ptys)
3446if test -c /dev/ptmx ; then
3447 AC_TRY_LINK([], [ptsname(0);grantpt(0);unlockpt(0);],
3448 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SVR4_PTYS),
3449 AC_MSG_RESULT(no))
3450else
3451 AC_MSG_RESULT(no)
3452fi
3453
3454AC_MSG_CHECKING(for ptyranges)
3455if test -d /dev/ptym ; then
3456 pdir='/dev/ptym'
3457else
3458 pdir='/dev'
3459fi
3460dnl SCO uses ptyp%d
3461AC_EGREP_CPP(yes,
3462[#ifdef M_UNIX
3463 yes;
3464#endif
3465 ], ptys=`echo /dev/ptyp??`, ptys=`echo $pdir/pty??`)
3466dnl if test -c /dev/ptyp19; then
3467dnl ptys=`echo /dev/ptyp??`
3468dnl else
3469dnl ptys=`echo $pdir/pty??`
3470dnl fi
3471if test "$ptys" != "$pdir/pty??" ; then
3472 p0=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\).$/\1/g' | sort -u | tr -d '\012'`
3473 p1=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\)$/\1/g' | sort -u | tr -d '\012'`
3474 AC_DEFINE_UNQUOTED(PTYRANGE0,"$p0")
3475 AC_DEFINE_UNQUOTED(PTYRANGE1,"$p1")
3476 AC_MSG_RESULT([$p0 / $p1])
3477else
3478 AC_MSG_RESULT([don't know])
3479fi
3480
3481dnl **** pty mode/group handling ****
3482dnl
3483dnl support provided by Luke Mewburn <lm@rmit.edu.au>, 931222
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484rm -f conftest_grp
Bram Moolenaar446cb832008-06-24 21:56:24 +00003485AC_CACHE_CHECK([default tty permissions/group], [vim_cv_tty_group],
3486 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01003487 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003488#include "confdefs.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489#include <sys/types.h>
Bram Moolenaar446cb832008-06-24 21:56:24 +00003490#if STDC_HEADERS
3491# include <stdlib.h>
3492# include <stddef.h>
3493#endif
3494#ifdef HAVE_UNISTD_H
3495#include <unistd.h>
3496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497#include <sys/stat.h>
3498#include <stdio.h>
3499main()
3500{
3501 struct stat sb;
3502 char *x,*ttyname();
3503 int om, m;
3504 FILE *fp;
3505
3506 if (!(x = ttyname(0))) exit(1);
3507 if (stat(x, &sb)) exit(1);
3508 om = sb.st_mode;
3509 if (om & 002) exit(0);
3510 m = system("mesg y");
3511 if (m == -1 || m == 127) exit(1);
3512 if (stat(x, &sb)) exit(1);
3513 m = sb.st_mode;
3514 if (chmod(x, om)) exit(1);
3515 if (m & 002) exit(0);
3516 if (sb.st_gid == getgid()) exit(1);
3517 if (!(fp=fopen("conftest_grp", "w")))
3518 exit(1);
3519 fprintf(fp, "%d\n", sb.st_gid);
3520 fclose(fp);
3521 exit(0);
3522}
Bram Moolenaar7db77842014-03-27 17:40:59 +01003523 ]])],[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003524 if test -f conftest_grp; then
3525 vim_cv_tty_group=`cat conftest_grp`
3526 if test "x$vim_cv_tty_mode" = "x" ; then
3527 vim_cv_tty_mode=0620
3528 fi
3529 AC_MSG_RESULT([pty mode: $vim_cv_tty_mode, group: $vim_cv_tty_group])
3530 else
3531 vim_cv_tty_group=world
Bram Moolenaar72951072009-12-02 16:58:33 +00003532 AC_MSG_RESULT([ptys are world accessible])
Bram Moolenaar446cb832008-06-24 21:56:24 +00003533 fi
3534 ],[
3535 vim_cv_tty_group=world
Bram Moolenaar72951072009-12-02 16:58:33 +00003536 AC_MSG_RESULT([can't determine - assume ptys are world accessible])
Bram Moolenaar446cb832008-06-24 21:56:24 +00003537 ],[
3538 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_tty_group' and 'vim_cv_tty_mode')
3539 ])
3540 ])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541rm -f conftest_grp
3542
Bram Moolenaar446cb832008-06-24 21:56:24 +00003543if test "x$vim_cv_tty_group" != "xworld" ; then
3544 AC_DEFINE_UNQUOTED(PTYGROUP,$vim_cv_tty_group)
3545 if test "x$vim_cv_tty_mode" = "x" ; then
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003546 AC_MSG_ERROR([It seems you're cross compiling and have 'vim_cv_tty_group' set, please also set the environment variable 'vim_cv_tty_mode' to the correct mode (probably 0620)])
Bram Moolenaar446cb832008-06-24 21:56:24 +00003547 else
3548 AC_DEFINE(PTYMODE, 0620)
3549 fi
3550fi
3551
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552dnl Checks for library functions. ===================================
3553
3554AC_TYPE_SIGNAL
3555
3556dnl find out what to use at the end of a signal function
3557if test $ac_cv_type_signal = void; then
3558 AC_DEFINE(SIGRETURN, [return])
3559else
3560 AC_DEFINE(SIGRETURN, [return 0])
3561fi
3562
3563dnl check if struct sigcontext is defined (used for SGI only)
3564AC_MSG_CHECKING(for struct sigcontext)
3565AC_TRY_COMPILE([
3566#include <signal.h>
3567test_sig()
3568{
3569 struct sigcontext *scont;
3570 scont = (struct sigcontext *)0;
3571 return 1;
3572} ], ,
3573 AC_MSG_RESULT(yes)
3574 AC_DEFINE(HAVE_SIGCONTEXT),
3575 AC_MSG_RESULT(no))
3576
3577dnl tricky stuff: try to find out if getcwd() is implemented with
3578dnl system("sh -c pwd")
Bram Moolenaar446cb832008-06-24 21:56:24 +00003579AC_CACHE_CHECK([getcwd implementation is broken], [vim_cv_getcwd_broken],
3580 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01003581 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003582#include "confdefs.h"
3583#ifdef HAVE_UNISTD_H
3584#include <unistd.h>
3585#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586char *dagger[] = { "IFS=pwd", 0 };
3587main()
3588{
3589 char buffer[500];
3590 extern char **environ;
3591 environ = dagger;
3592 return getcwd(buffer, 500) ? 0 : 1;
Bram Moolenaar446cb832008-06-24 21:56:24 +00003593}
Bram Moolenaar7db77842014-03-27 17:40:59 +01003594 ]])],[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003595 vim_cv_getcwd_broken=no
3596 ],[
3597 vim_cv_getcwd_broken=yes
3598 ],[
3599 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_getcwd_broken')
3600 ])
3601 ])
3602
3603if test "x$vim_cv_getcwd_broken" = "xyes" ; then
3604 AC_DEFINE(BAD_GETCWD)
3605fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606
Bram Moolenaar25153e12010-02-24 14:47:08 +01003607dnl Check for functions in one big call, to reduce the size of configure.
3608dnl Can only be used for functions that do not require any include.
Bram Moolenaarb129a442016-12-01 17:25:20 +01003609AC_CHECK_FUNCS(fchdir fchown fsync getcwd getpseudotty \
3610 getpwent getpwnam getpwuid getrlimit gettimeofday getwd lstat \
Bram Moolenaareaf03392009-11-17 11:08:52 +00003611 memset mkdtemp nanosleep opendir putenv qsort readlink select setenv \
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003612 getpgid setpgid setsid sigaltstack sigstack sigset sigsetjmp sigaction \
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02003613 sigprocmask sigvec strcasecmp strerror strftime stricmp strncasecmp \
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00003614 strnicmp strpbrk strtol tgetent towlower towupper iswupper \
Bram Moolenaara6b89762016-02-29 21:38:26 +01003615 usleep utime utimes)
Bram Moolenaar25153e12010-02-24 14:47:08 +01003616AC_FUNC_FSEEKO
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617
Bram Moolenaar317fd3a2010-05-07 16:05:55 +02003618dnl define _LARGE_FILES, _FILE_OFFSET_BITS and _LARGEFILE_SOURCE when
3619dnl appropriate, so that off_t is 64 bits when needed.
3620AC_SYS_LARGEFILE
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622dnl fstatfs() can take 2 to 4 arguments, try to use st_blksize if possible
3623AC_MSG_CHECKING(for st_blksize)
3624AC_TRY_COMPILE(
3625[#include <sys/types.h>
3626#include <sys/stat.h>],
3627[ struct stat st;
3628 int n;
3629
3630 stat("/", &st);
3631 n = (int)st.st_blksize;],
3632 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ST_BLKSIZE),
3633 AC_MSG_RESULT(no))
3634
Bram Moolenaar446cb832008-06-24 21:56:24 +00003635AC_CACHE_CHECK([whether stat() ignores a trailing slash], [vim_cv_stat_ignores_slash],
3636 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01003637 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003638#include "confdefs.h"
3639#if STDC_HEADERS
3640# include <stdlib.h>
3641# include <stddef.h>
3642#endif
3643#include <sys/types.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644#include <sys/stat.h>
Bram Moolenaar446cb832008-06-24 21:56:24 +00003645main() {struct stat st; exit(stat("configure/", &st) != 0); }
Bram Moolenaar7db77842014-03-27 17:40:59 +01003646 ]])],[
Bram Moolenaar446cb832008-06-24 21:56:24 +00003647 vim_cv_stat_ignores_slash=yes
3648 ],[
3649 vim_cv_stat_ignores_slash=no
3650 ],[
3651 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_stat_ignores_slash')
3652 ])
3653 ])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654
Bram Moolenaar446cb832008-06-24 21:56:24 +00003655if test "x$vim_cv_stat_ignores_slash" = "xyes" ; then
3656 AC_DEFINE(STAT_IGNORES_SLASH)
3657fi
3658
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659dnl Link with iconv for charset translation, if not found without library.
3660dnl check for iconv() requires including iconv.h
3661dnl Add "-liconv" when possible; Solaris has iconv but use GNU iconv when it
3662dnl has been installed.
3663AC_MSG_CHECKING(for iconv_open())
3664save_LIBS="$LIBS"
3665LIBS="$LIBS -liconv"
3666AC_TRY_LINK([
3667#ifdef HAVE_ICONV_H
3668# include <iconv.h>
3669#endif
3670 ], [iconv_open("fr", "to");],
3671 AC_MSG_RESULT(yes; with -liconv); AC_DEFINE(HAVE_ICONV),
3672 LIBS="$save_LIBS"
3673 AC_TRY_LINK([
3674#ifdef HAVE_ICONV_H
3675# include <iconv.h>
3676#endif
3677 ], [iconv_open("fr", "to");],
3678 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ICONV),
3679 AC_MSG_RESULT(no)))
3680
3681
3682AC_MSG_CHECKING(for nl_langinfo(CODESET))
3683AC_TRY_LINK([
3684#ifdef HAVE_LANGINFO_H
3685# include <langinfo.h>
3686#endif
3687], [char *cs = nl_langinfo(CODESET);],
3688 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_NL_LANGINFO_CODESET),
3689 AC_MSG_RESULT(no))
3690
Bram Moolenaar446cb832008-06-24 21:56:24 +00003691dnl Need various functions for floating point support. Only enable
3692dnl floating point when they are all present.
3693AC_CHECK_LIB(m, strtod)
3694AC_MSG_CHECKING([for strtod() and other floating point functions])
3695AC_TRY_LINK([
3696#ifdef HAVE_MATH_H
3697# include <math.h>
3698#endif
3699#if STDC_HEADERS
3700# include <stdlib.h>
3701# include <stddef.h>
3702#endif
3703], [char *s; double d;
3704 d = strtod("1.1", &s);
3705 d = fabs(1.11);
3706 d = ceil(1.11);
3707 d = floor(1.11);
3708 d = log10(1.11);
3709 d = pow(1.11, 2.22);
3710 d = sqrt(1.11);
3711 d = sin(1.11);
3712 d = cos(1.11);
3713 d = atan(1.11);
3714 ],
3715 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_FLOAT_FUNCS),
3716 AC_MSG_RESULT(no))
3717
Bram Moolenaara6b89762016-02-29 21:38:26 +01003718dnl isinf() and isnan() need to include header files and may need -lm.
3719AC_MSG_CHECKING([for isinf()])
3720AC_TRY_LINK([
3721#ifdef HAVE_MATH_H
3722# include <math.h>
3723#endif
3724#if STDC_HEADERS
3725# include <stdlib.h>
3726# include <stddef.h>
3727#endif
3728], [int r = isinf(1.11); ],
3729 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ISINF),
3730 AC_MSG_RESULT(no))
3731
3732AC_MSG_CHECKING([for isnan()])
3733AC_TRY_LINK([
3734#ifdef HAVE_MATH_H
3735# include <math.h>
3736#endif
3737#if STDC_HEADERS
3738# include <stdlib.h>
3739# include <stddef.h>
3740#endif
3741], [int r = isnan(1.11); ],
3742 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ISNAN),
3743 AC_MSG_RESULT(no))
3744
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745dnl Link with -lposix1e for ACL stuff; if not found, try -lacl for SGI
3746dnl when -lacl works, also try to use -lattr (required for Debian).
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003747dnl On Solaris, use the acl_get/set functions in libsec, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748AC_MSG_CHECKING(--disable-acl argument)
3749AC_ARG_ENABLE(acl,
3750 [ --disable-acl Don't check for ACL support.],
3751 , [enable_acl="yes"])
3752if test "$enable_acl" = "yes"; then
3753AC_MSG_RESULT(no)
3754AC_CHECK_LIB(posix1e, acl_get_file, [LIBS="$LIBS -lposix1e"],
3755 AC_CHECK_LIB(acl, acl_get_file, [LIBS="$LIBS -lacl"
3756 AC_CHECK_LIB(attr, fgetxattr, LIBS="$LIBS -lattr",,)],,),)
3757
3758AC_MSG_CHECKING(for POSIX ACL support)
3759AC_TRY_LINK([
3760#include <sys/types.h>
3761#ifdef HAVE_SYS_ACL_H
3762# include <sys/acl.h>
3763#endif
3764acl_t acl;], [acl = acl_get_file("foo", ACL_TYPE_ACCESS);
3765 acl_set_file("foo", ACL_TYPE_ACCESS, acl);
3766 acl_free(acl);],
3767 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_POSIX_ACL),
3768 AC_MSG_RESULT(no))
3769
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003770AC_CHECK_LIB(sec, acl_get, [LIBS="$LIBS -lsec"; AC_DEFINE(HAVE_SOLARIS_ZFS_ACL)],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771AC_MSG_CHECKING(for Solaris ACL support)
3772AC_TRY_LINK([
3773#ifdef HAVE_SYS_ACL_H
3774# include <sys/acl.h>
3775#endif], [acl("foo", GETACLCNT, 0, NULL);
3776 ],
3777 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SOLARIS_ACL),
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003778 AC_MSG_RESULT(no)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779
3780AC_MSG_CHECKING(for AIX ACL support)
3781AC_TRY_LINK([
Bram Moolenaar446cb832008-06-24 21:56:24 +00003782#if STDC_HEADERS
3783# include <stdlib.h>
3784# include <stddef.h>
3785#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786#ifdef HAVE_SYS_ACL_H
3787# include <sys/acl.h>
3788#endif
3789#ifdef HAVE_SYS_ACCESS_H
3790# include <sys/access.h>
3791#endif
3792#define _ALL_SOURCE
3793
3794#include <sys/stat.h>
3795
3796int aclsize;
3797struct acl *aclent;], [aclsize = sizeof(struct acl);
3798 aclent = (void *)malloc(aclsize);
3799 statacl("foo", STX_NORMAL, aclent, aclsize);
3800 ],
3801 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_AIX_ACL),
3802 AC_MSG_RESULT(no))
3803else
3804 AC_MSG_RESULT(yes)
3805fi
3806
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02003807if test "x$GTK_CFLAGS" != "x"; then
3808 dnl pango_shape_full() is new, fall back to pango_shape().
3809 AC_MSG_CHECKING(for pango_shape_full)
3810 ac_save_CFLAGS="$CFLAGS"
3811 ac_save_LIBS="$LIBS"
3812 CFLAGS="$CFLAGS $GTK_CFLAGS"
3813 LIBS="$LIBS $GTK_LIBS"
Bram Moolenaar5325b9b2015-09-09 20:27:02 +02003814 AC_TRY_LINK(
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02003815 [#include <gtk/gtk.h>],
3816 [ pango_shape_full(NULL, 0, NULL, 0, NULL, NULL); ],
3817 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_PANGO_SHAPE_FULL),
3818 AC_MSG_RESULT(no))
3819 CFLAGS="$ac_save_CFLAGS"
3820 LIBS="$ac_save_LIBS"
3821fi
3822
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823AC_MSG_CHECKING(--disable-gpm argument)
3824AC_ARG_ENABLE(gpm,
3825 [ --disable-gpm Don't use gpm (Linux mouse daemon).], ,
3826 [enable_gpm="yes"])
3827
3828if test "$enable_gpm" = "yes"; then
3829 AC_MSG_RESULT(no)
3830 dnl Checking if gpm support can be compiled
3831 AC_CACHE_CHECK([for gpm], vi_cv_have_gpm,
3832 [olibs="$LIBS" ; LIBS="-lgpm"]
3833 AC_TRY_LINK(
3834 [#include <gpm.h>
3835 #include <linux/keyboard.h>],
3836 [Gpm_GetLibVersion(NULL);],
3837 dnl Configure defines HAVE_GPM, if it is defined feature.h defines
3838 dnl FEAT_MOUSE_GPM if mouse support is included
3839 [vi_cv_have_gpm=yes],
3840 [vi_cv_have_gpm=no])
3841 [LIBS="$olibs"]
3842 )
3843 if test $vi_cv_have_gpm = yes; then
3844 LIBS="$LIBS -lgpm"
3845 AC_DEFINE(HAVE_GPM)
3846 fi
3847else
3848 AC_MSG_RESULT(yes)
3849fi
3850
Bram Moolenaar446cb832008-06-24 21:56:24 +00003851AC_MSG_CHECKING(--disable-sysmouse argument)
3852AC_ARG_ENABLE(sysmouse,
3853 [ --disable-sysmouse Don't use sysmouse (mouse in *BSD console).], ,
3854 [enable_sysmouse="yes"])
3855
3856if test "$enable_sysmouse" = "yes"; then
3857 AC_MSG_RESULT(no)
3858 dnl Checking if sysmouse support can be compiled
3859 dnl Configure defines HAVE_SYSMOUSE, if it is defined feature.h
3860 dnl defines FEAT_SYSMOUSE if mouse support is included
3861 AC_CACHE_CHECK([for sysmouse], vi_cv_have_sysmouse,
3862 AC_TRY_LINK(
3863 [#include <sys/consio.h>
3864 #include <signal.h>
3865 #include <sys/fbio.h>],
3866 [struct mouse_info mouse;
3867 mouse.operation = MOUSE_MODE;
3868 mouse.operation = MOUSE_SHOW;
3869 mouse.u.mode.mode = 0;
3870 mouse.u.mode.signal = SIGUSR2;],
3871 [vi_cv_have_sysmouse=yes],
3872 [vi_cv_have_sysmouse=no])
3873 )
3874 if test $vi_cv_have_sysmouse = yes; then
3875 AC_DEFINE(HAVE_SYSMOUSE)
3876 fi
3877else
3878 AC_MSG_RESULT(yes)
3879fi
3880
Bram Moolenaarf05da212009-11-17 16:13:15 +00003881dnl make sure the FD_CLOEXEC flag for fcntl()'s F_SETFD command is known
3882AC_MSG_CHECKING(for FD_CLOEXEC)
3883AC_TRY_COMPILE(
3884[#if HAVE_FCNTL_H
3885# include <fcntl.h>
3886#endif],
3887[ int flag = FD_CLOEXEC;],
3888 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_FD_CLOEXEC),
3889 AC_MSG_RESULT(not usable))
3890
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891dnl rename needs to be checked separately to work on Nextstep with cc
3892AC_MSG_CHECKING(for rename)
3893AC_TRY_LINK([#include <stdio.h>], [rename("this", "that")],
3894 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_RENAME),
3895 AC_MSG_RESULT(no))
3896
3897dnl sysctl() may exist but not the arguments we use
3898AC_MSG_CHECKING(for sysctl)
3899AC_TRY_COMPILE(
3900[#include <sys/types.h>
3901#include <sys/sysctl.h>],
3902[ int mib[2], r;
3903 size_t len;
3904
3905 mib[0] = CTL_HW;
3906 mib[1] = HW_USERMEM;
3907 len = sizeof(r);
3908 (void)sysctl(mib, 2, &r, &len, (void *)0, (size_t)0);
3909 ],
3910 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSCTL),
3911 AC_MSG_RESULT(not usable))
3912
3913dnl sysinfo() may exist but not be Linux compatible
3914AC_MSG_CHECKING(for sysinfo)
3915AC_TRY_COMPILE(
3916[#include <sys/types.h>
3917#include <sys/sysinfo.h>],
3918[ struct sysinfo sinfo;
3919 int t;
3920
3921 (void)sysinfo(&sinfo);
3922 t = sinfo.totalram;
3923 ],
3924 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSINFO),
3925 AC_MSG_RESULT(not usable))
3926
Bram Moolenaar914572a2007-05-01 11:37:47 +00003927dnl struct sysinfo may have the mem_unit field or not
3928AC_MSG_CHECKING(for sysinfo.mem_unit)
3929AC_TRY_COMPILE(
3930[#include <sys/types.h>
3931#include <sys/sysinfo.h>],
3932[ struct sysinfo sinfo;
Bram Moolenaar3c7ad012013-06-11 19:53:45 +02003933 sinfo.mem_unit = 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +00003934 ],
3935 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSINFO_MEM_UNIT),
3936 AC_MSG_RESULT(no))
3937
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938dnl sysconf() may exist but not support what we want to use
3939AC_MSG_CHECKING(for sysconf)
3940AC_TRY_COMPILE(
3941[#include <unistd.h>],
3942[ (void)sysconf(_SC_PAGESIZE);
3943 (void)sysconf(_SC_PHYS_PAGES);
3944 ],
3945 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSCONF),
3946 AC_MSG_RESULT(not usable))
3947
Bram Moolenaar914703b2010-05-31 21:59:46 +02003948AC_CHECK_SIZEOF([int])
3949AC_CHECK_SIZEOF([long])
3950AC_CHECK_SIZEOF([time_t])
3951AC_CHECK_SIZEOF([off_t])
Bram Moolenaar644fdff2010-05-30 13:26:21 +02003952
Bram Moolenaara2aa31a2014-02-23 22:52:40 +01003953dnl Use different names to avoid clashing with other header files.
3954AC_DEFINE_UNQUOTED(VIM_SIZEOF_INT, [$ac_cv_sizeof_int])
3955AC_DEFINE_UNQUOTED(VIM_SIZEOF_LONG, [$ac_cv_sizeof_long])
3956
Bram Moolenaarfa7584c2010-05-19 21:57:45 +02003957dnl Make sure that uint32_t is really 32 bits unsigned.
3958AC_MSG_CHECKING([uint32_t is 32 bits])
3959AC_TRY_RUN([
3960#ifdef HAVE_STDINT_H
3961# include <stdint.h>
3962#endif
3963#ifdef HAVE_INTTYPES_H
3964# include <inttypes.h>
3965#endif
3966main() {
3967 uint32_t nr1 = (uint32_t)-1;
3968 uint32_t nr2 = (uint32_t)0xffffffffUL;
3969 if (sizeof(uint32_t) != 4 || nr1 != 0xffffffffUL || nr2 + 1 != 0) exit(1);
3970 exit(0);
3971}],
3972AC_MSG_RESULT(ok),
3973AC_MSG_ERROR([WRONG! uint32_t not defined correctly.]),
Bram Moolenaar323cb952011-12-14 19:22:34 +01003974AC_MSG_WARN([cannot check uint32_t when cross-compiling.]))
Bram Moolenaarfa7584c2010-05-19 21:57:45 +02003975
Bram Moolenaar446cb832008-06-24 21:56:24 +00003976dnl Check for memmove() before bcopy(), makes memmove() be used when both are
3977dnl present, fixes problem with incompatibility between Solaris 2.4 and 2.5.
3978
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979[bcopy_test_prog='
Bram Moolenaar446cb832008-06-24 21:56:24 +00003980#include "confdefs.h"
3981#ifdef HAVE_STRING_H
3982# include <string.h>
3983#endif
3984#if STDC_HEADERS
3985# include <stdlib.h>
3986# include <stddef.h>
3987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988main() {
3989 char buf[10];
3990 strcpy(buf, "abcdefghi");
3991 mch_memmove(buf, buf + 2, 3);
3992 if (strncmp(buf, "ababcf", 6))
3993 exit(1);
3994 strcpy(buf, "abcdefghi");
3995 mch_memmove(buf + 2, buf, 3);
3996 if (strncmp(buf, "cdedef", 6))
3997 exit(1);
3998 exit(0); /* libc version works properly. */
3999}']
4000
Bram Moolenaar446cb832008-06-24 21:56:24 +00004001AC_CACHE_CHECK([whether memmove handles overlaps],[vim_cv_memmove_handles_overlap],
4002 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01004003 AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_memmove(s,d,l) memmove(d,s,l) $bcopy_test_prog]])],
Bram Moolenaar446cb832008-06-24 21:56:24 +00004004 [
4005 vim_cv_memmove_handles_overlap=yes
4006 ],[
4007 vim_cv_memmove_handles_overlap=no
4008 ],[
4009 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_memmove_handles_overlap')
4010 ])
4011 ])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012
Bram Moolenaar446cb832008-06-24 21:56:24 +00004013if test "x$vim_cv_memmove_handles_overlap" = "xyes" ; then
4014 AC_DEFINE(USEMEMMOVE)
4015else
4016 AC_CACHE_CHECK([whether bcopy handles overlaps],[vim_cv_bcopy_handles_overlap],
4017 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01004018 AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_bcopy(s,d,l) bcopy(d,s,l) $bcopy_test_prog]])],
Bram Moolenaar446cb832008-06-24 21:56:24 +00004019 [
4020 vim_cv_bcopy_handles_overlap=yes
4021 ],[
4022 vim_cv_bcopy_handles_overlap=no
4023 ],[
4024 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_bcopy_handles_overlap')
4025 ])
4026 ])
4027
4028 if test "x$vim_cv_bcopy_handles_overlap" = "xyes" ; then
4029 AC_DEFINE(USEBCOPY)
4030 else
4031 AC_CACHE_CHECK([whether memcpy handles overlaps],[vim_cv_memcpy_handles_overlap],
4032 [
Bram Moolenaar7db77842014-03-27 17:40:59 +01004033 AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_memcpy(s,d,l) memcpy(d,s,l) $bcopy_test_prog]])],
Bram Moolenaar446cb832008-06-24 21:56:24 +00004034 [
4035 vim_cv_memcpy_handles_overlap=yes
4036 ],[
4037 vim_cv_memcpy_handles_overlap=no
4038 ],[
4039 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_memcpy_handles_overlap')
4040 ])
4041 ])
4042
4043 if test "x$vim_cv_memcpy_handles_overlap" = "xyes" ; then
4044 AC_DEFINE(USEMEMCPY)
4045 fi
4046 fi
4047fi
4048
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049
4050dnl Check for multibyte locale functions
4051dnl Find out if _Xsetlocale() is supported by libX11.
4052dnl Check if X_LOCALE should be defined.
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02004053if test "x$with_x" = "xyes"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 cflags_save=$CFLAGS
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02004055 libs_save=$LIBS
4056 LIBS="$LIBS $X_LIBS $GUI_LIB_LOC $GUI_X_LIBS $X_PRE_LIBS $X_LIB $X_EXTRA_LIBS"
4057 CFLAGS="$CFLAGS $X_CFLAGS"
4058
4059 AC_MSG_CHECKING(whether X_LOCALE needed)
4060 AC_TRY_COMPILE([#include <X11/Xlocale.h>],,
4061 AC_TRY_LINK_FUNC([_Xsetlocale], [AC_MSG_RESULT(yes)
4062 AC_DEFINE(X_LOCALE)], AC_MSG_RESULT(no)),
4063 AC_MSG_RESULT(no))
4064
4065 AC_MSG_CHECKING(whether Xutf8SetWMProperties() can be used)
4066 AC_TRY_LINK_FUNC([Xutf8SetWMProperties], [AC_MSG_RESULT(yes)
4067 AC_DEFINE(HAVE_XUTF8SETWMPROPERTIES)], AC_MSG_RESULT(no))
4068
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 CFLAGS=$cflags_save
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02004070 LIBS=$libs_save
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071fi
4072
4073dnl Link with xpg4, it is said to make Korean locale working
4074AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,)
4075
Bram Moolenaar0c7ce772009-05-13 12:49:39 +00004076dnl Check how we can run ctags. Default to "ctags" when nothing works.
Bram Moolenaar8f4ba692011-05-05 17:24:27 +02004077dnl Use --version to detect Exuberant ctags (preferred)
Bram Moolenaarb21e5842006-04-16 18:30:08 +00004078dnl Add --fields=+S to get function signatures for omni completion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079dnl -t for typedefs (many ctags have this)
4080dnl -s for static functions (Elvis ctags only?)
4081dnl -v for variables. Dangerous, most ctags take this for 'vgrind style'.
4082dnl -i+m to test for older Exuberant ctags
4083AC_MSG_CHECKING(how to create tags)
4084test -f tags && mv tags tags.save
Bram Moolenaar5897e0c2011-05-10 15:42:03 +02004085if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
Bram Moolenaarb21e5842006-04-16 18:30:08 +00004086 TAGPRG="ctags -I INIT+ --fields=+S"
Bram Moolenaar5897e0c2011-05-10 15:42:03 +02004087elif (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
4088 TAGPRG="exctags -I INIT+ --fields=+S"
4089elif (eval exuberant-ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
4090 TAGPRG="exuberant-ctags -I INIT+ --fields=+S"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091else
Bram Moolenaar0c7ce772009-05-13 12:49:39 +00004092 TAGPRG="ctags"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags"
4094 (eval etags -c /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags -c"
4095 (eval ctags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags"
4096 (eval ctags -t /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -t"
4097 (eval ctags -ts /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -ts"
4098 (eval ctags -tvs /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -tvs"
4099 (eval ctags -i+m /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -i+m"
4100fi
4101test -f tags.save && mv tags.save tags
4102AC_MSG_RESULT($TAGPRG) AC_SUBST(TAGPRG)
4103
4104dnl Check how we can run man with a section number
4105AC_MSG_CHECKING(how to run man with a section nr)
4106MANDEF="man"
Bram Moolenaar8b131502008-02-13 09:28:19 +00004107(eval MANPAGER=cat PAGER=cat man -s 2 read) < /dev/null > /dev/null 2>&AC_FD_CC && MANDEF="man -s"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108AC_MSG_RESULT($MANDEF)
4109if test "$MANDEF" = "man -s"; then
4110 AC_DEFINE(USEMAN_S)
4111fi
4112
4113dnl Check if gettext() is working and if it needs -lintl
Bram Moolenaar49b6a572013-11-17 20:32:54 +01004114dnl We take care to base this on an empty LIBS: on some systems libelf would be
4115dnl in LIBS and implicitly take along libintl. The final LIBS would then not
4116dnl contain libintl, and the link step would fail due to -Wl,--as-needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117AC_MSG_CHECKING(--disable-nls argument)
4118AC_ARG_ENABLE(nls,
4119 [ --disable-nls Don't support NLS (gettext()).], ,
4120 [enable_nls="yes"])
4121
4122if test "$enable_nls" = "yes"; then
4123 AC_MSG_RESULT(no)
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00004124
4125 INSTALL_LANGS=install-languages
4126 AC_SUBST(INSTALL_LANGS)
4127 INSTALL_TOOL_LANGS=install-tool-languages
4128 AC_SUBST(INSTALL_TOOL_LANGS)
4129
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 AC_CHECK_PROG(MSGFMT, msgfmt, msgfmt, )
4131 AC_MSG_CHECKING([for NLS])
4132 if test -f po/Makefile; then
4133 have_gettext="no"
4134 if test -n "$MSGFMT"; then
Bram Moolenaar49b6a572013-11-17 20:32:54 +01004135 olibs=$LIBS
4136 LIBS=""
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 AC_TRY_LINK(
4138 [#include <libintl.h>],
4139 [gettext("Test");],
Bram Moolenaar49b6a572013-11-17 20:32:54 +01004140 AC_MSG_RESULT([gettext() works]); have_gettext="yes"; LIBS=$olibs,
4141 LIBS="-lintl"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 AC_TRY_LINK(
4143 [#include <libintl.h>],
4144 [gettext("Test");],
Bram Moolenaar49b6a572013-11-17 20:32:54 +01004145 AC_MSG_RESULT([gettext() works with -lintl]); have_gettext="yes";
4146 LIBS="$olibs -lintl",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 AC_MSG_RESULT([gettext() doesn't work]);
4148 LIBS=$olibs))
4149 else
4150 AC_MSG_RESULT([msgfmt not found - disabled]);
4151 fi
Bram Moolenaar278eb582014-07-30 13:22:52 +02004152 if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 AC_DEFINE(HAVE_GETTEXT)
4154 MAKEMO=yes
4155 AC_SUBST(MAKEMO)
4156 dnl this was added in GNU gettext 0.10.36
4157 AC_CHECK_FUNCS(bind_textdomain_codeset)
4158 dnl _nl_msg_cat_cntr is required for GNU gettext
4159 AC_MSG_CHECKING([for _nl_msg_cat_cntr])
4160 AC_TRY_LINK(
4161 [#include <libintl.h>
4162 extern int _nl_msg_cat_cntr;],
4163 [++_nl_msg_cat_cntr;],
4164 AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_NL_MSG_CAT_CNTR),
4165 AC_MSG_RESULT([no]))
4166 fi
4167 else
4168 AC_MSG_RESULT([no "po/Makefile" - disabled]);
4169 fi
4170else
4171 AC_MSG_RESULT(yes)
4172fi
4173
4174dnl Check for dynamic linking loader
4175AC_CHECK_HEADER(dlfcn.h, DLL=dlfcn.h, [AC_CHECK_HEADER(dl.h, DLL=dl.h)])
4176if test x${DLL} = xdlfcn.h; then
4177 AC_DEFINE(HAVE_DLFCN_H, 1, [ Define if we have dlfcn.h. ])
4178 AC_MSG_CHECKING([for dlopen()])
4179 AC_TRY_LINK(,[
4180 extern void* dlopen();
4181 dlopen();
4182 ],
4183 AC_MSG_RESULT(yes);
4184 AC_DEFINE(HAVE_DLOPEN, 1, [ Define if we have dlopen() ]),
4185 AC_MSG_RESULT(no);
4186 AC_MSG_CHECKING([for dlopen() in -ldl])
4187 olibs=$LIBS
4188 LIBS="$LIBS -ldl"
4189 AC_TRY_LINK(,[
4190 extern void* dlopen();
4191 dlopen();
4192 ],
4193 AC_MSG_RESULT(yes);
4194 AC_DEFINE(HAVE_DLOPEN, 1, [ Define if we have dlopen() ]),
4195 AC_MSG_RESULT(no);
4196 LIBS=$olibs))
4197 dnl ReliantUNIX has dlopen() in libc but everything else in libdl
4198 dnl ick :-)
4199 AC_MSG_CHECKING([for dlsym()])
4200 AC_TRY_LINK(,[
4201 extern void* dlsym();
4202 dlsym();
4203 ],
4204 AC_MSG_RESULT(yes);
4205 AC_DEFINE(HAVE_DLSYM, 1, [ Define if we have dlsym() ]),
4206 AC_MSG_RESULT(no);
4207 AC_MSG_CHECKING([for dlsym() in -ldl])
4208 olibs=$LIBS
4209 LIBS="$LIBS -ldl"
4210 AC_TRY_LINK(,[
4211 extern void* dlsym();
4212 dlsym();
4213 ],
4214 AC_MSG_RESULT(yes);
4215 AC_DEFINE(HAVE_DLSYM, 1, [ Define if we have dlsym() ]),
4216 AC_MSG_RESULT(no);
4217 LIBS=$olibs))
4218elif test x${DLL} = xdl.h; then
4219 AC_DEFINE(HAVE_DL_H, 1, [ Define if we have dl.h. ])
4220 AC_MSG_CHECKING([for shl_load()])
4221 AC_TRY_LINK(,[
4222 extern void* shl_load();
4223 shl_load();
4224 ],
4225 AC_MSG_RESULT(yes);
4226 AC_DEFINE(HAVE_SHL_LOAD, 1, [ Define if we have shl_load() ]),
4227 AC_MSG_RESULT(no);
4228 AC_MSG_CHECKING([for shl_load() in -ldld])
4229 olibs=$LIBS
4230 LIBS="$LIBS -ldld"
4231 AC_TRY_LINK(,[
4232 extern void* shl_load();
4233 shl_load();
4234 ],
4235 AC_MSG_RESULT(yes);
4236 AC_DEFINE(HAVE_SHL_LOAD, 1, [ Define if we have shl_load() ]),
4237 AC_MSG_RESULT(no);
4238 LIBS=$olibs))
4239fi
4240AC_CHECK_HEADERS(setjmp.h)
4241
4242if test "x$MACOSX" = "xyes" -a -n "$PERL"; then
4243 dnl -ldl must come after DynaLoader.a
4244 if echo $LIBS | grep -e '-ldl' >/dev/null; then
4245 LIBS=`echo $LIBS | sed s/-ldl//`
4246 PERL_LIBS="$PERL_LIBS -ldl"
4247 fi
4248fi
4249
Bram Moolenaar164fca32010-07-14 13:58:07 +02004250if test "x$MACOSX" = "xyes"; then
4251 AC_MSG_CHECKING(whether we need -framework Cocoa)
4252 dnl Cocoa is needed with FEAT_CLIPBOARD or FEAT_MBYTE (the former is
4253 dnl disabled during tiny build)
4254 if test "x$features" != "xtiny" || test "x$enable_multibyte" = "xyes"; then
4255 LIBS=$"$LIBS -framework Cocoa"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 AC_MSG_RESULT(yes)
4257 else
4258 AC_MSG_RESULT(no)
4259 fi
Bram Moolenaar3437b912013-07-03 19:52:53 +02004260 dnl As mentioned above, tiny build implies os_macosx.m isn't needed.
4261 dnl Exclude it from OS_EXTRA_SRC so that linker won't complain about
4262 dnl missing Objective-C symbols.
4263 if test "x$features" = "xtiny"; then
4264 OS_EXTRA_SRC=`echo "$OS_EXTRA_SRC" | sed -e 's+os_macosx.m++'`
4265 OS_EXTRA_OBJ=`echo "$OS_EXTRA_OBJ" | sed -e 's+objects/os_macosx.o++'`
4266 fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267fi
Bram Moolenaar164fca32010-07-14 13:58:07 +02004268if test "x$MACARCH" = "xboth" && test "x$GUITYPE" = "xCARBONGUI"; then
Bram Moolenaar595a7be2010-03-10 16:28:12 +01004269 LDFLAGS="$LDFLAGS -isysroot $DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc"
Bram Moolenaare224ffa2006-03-01 00:01:28 +00004270fi
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00004272dnl gcc 3.1 changed the meaning of -MM. The only solution appears to be to
4273dnl use "-isystem" instead of "-I" for all non-Vim include dirs.
4274dnl But only when making dependencies, cproto and lint don't take "-isystem".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004275dnl Mac gcc returns "powerpc-apple-darwin8-gcc-4.0.1 (GCC)...", need to allow
4276dnl the number before the version number.
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00004277DEPEND_CFLAGS_FILTER=
4278if test "$GCC" = yes; then
Bram Moolenaar0cd49302008-11-20 09:37:01 +00004279 AC_MSG_CHECKING(for GCC 3 or later)
Bram Moolenaar2217cae2006-03-25 21:55:52 +00004280 gccmajor=`echo "$gccversion" | sed -e 's/^\([[1-9]]\)\..*$/\1/g'`
Bram Moolenaarf740b292006-02-16 22:11:02 +00004281 if test "$gccmajor" -gt "2"; then
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00004282 DEPEND_CFLAGS_FILTER="| sed 's+-I */+-isystem /+g'"
Bram Moolenaar0cd49302008-11-20 09:37:01 +00004283 AC_MSG_RESULT(yes)
4284 else
4285 AC_MSG_RESULT(no)
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00004286 fi
Bram Moolenaar0cd49302008-11-20 09:37:01 +00004287 dnl -D_FORTIFY_SOURCE=2 crashes Vim on strcpy(buf, "000") when buf is
4288 dnl declared as char x[1] but actually longer. Introduced in gcc 4.0.
Bram Moolenaar56d1db32009-12-16 16:14:51 +00004289 dnl Also remove duplicate _FORTIFY_SOURCE arguments.
Bram Moolenaaraeabe052011-12-08 15:17:34 +01004290 dnl And undefine it first to avoid a warning.
Bram Moolenaar0cd49302008-11-20 09:37:01 +00004291 AC_MSG_CHECKING(whether we need -D_FORTIFY_SOURCE=1)
4292 if test "$gccmajor" -gt "3"; then
Bram Moolenaara6cc0312013-06-18 23:31:55 +02004293 CFLAGS=`echo "$CFLAGS" | sed -e 's/ *-Wp,-D_FORTIFY_SOURCE=.//g' -e 's/ *-D_FORTIFY_SOURCE=.//g' -e 's/ *-U_FORTIFY_SOURCE//g' -e 's/$/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1/'`
Bram Moolenaar0cd49302008-11-20 09:37:01 +00004294 AC_MSG_RESULT(yes)
4295 else
4296 AC_MSG_RESULT(no)
4297 fi
Bram Moolenaara5792f52005-11-23 21:25:05 +00004298fi
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00004299AC_SUBST(DEPEND_CFLAGS_FILTER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300
Bram Moolenaar22e193d2010-11-03 22:32:24 +01004301dnl link.sh tries to avoid overlinking in a hackish way.
4302dnl At least GNU ld supports --as-needed which provides the same functionality
4303dnl at linker level. Let's use it.
4304AC_MSG_CHECKING(linker --as-needed support)
4305LINK_AS_NEEDED=
4306# Check if linker supports --as-needed and --no-as-needed options
4307if $CC -Wl,--help 2>/dev/null | grep as-needed > /dev/null; then
Bram Moolenaara6cc0312013-06-18 23:31:55 +02004308 LDFLAGS=`echo "$LDFLAGS" | sed -e 's/ *-Wl,--as-needed//g' | sed -e 's/$/ -Wl,--as-needed/'`
Bram Moolenaar22e193d2010-11-03 22:32:24 +01004309 LINK_AS_NEEDED=yes
4310fi
4311if test "$LINK_AS_NEEDED" = yes; then
4312 AC_MSG_RESULT(yes)
4313else
4314 AC_MSG_RESULT(no)
4315fi
4316AC_SUBST(LINK_AS_NEEDED)
4317
Bram Moolenaar77c19352012-06-13 19:19:41 +02004318# IBM z/OS reset CFLAGS for config.mk
4319if test "$zOSUnix" = "yes"; then
4320 CFLAGS="-D_ALL_SOURCE -Wc,float\(ieee\),dll"
4321fi
4322
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323dnl write output files
4324AC_OUTPUT(auto/config.mk:config.mk.in)
4325
4326dnl vim: set sw=2 tw=78 fo+=l: