Mercurial > vim
annotate src/configure.in @ 6612:cd7b5bbe4952 v7.4.632
updated for version 7.4.632
Problem: 7.4.592 breaks the netrw plugin, because the autocommands are
skipped.
Solution: Roll back the change.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 17 Feb 2015 12:17:14 +0100 |
parents | 3421b24e419c |
children | 7026d6f3367f |
rev | line source |
---|---|
7 | 1 dnl configure.in: autoconf script for Vim |
2 | |
3 dnl Process this file with autoconf 2.12 or 2.13 to produce "configure". | |
4 dnl Should also work with autoconf 2.54 and later. | |
5 | |
6 AC_INIT(vim.h) | |
7 AC_CONFIG_HEADER(auto/config.h:config.h.in) | |
8 | |
9 dnl Being able to run configure means the system is Unix (compatible). | |
10 AC_DEFINE(UNIX) | |
11 AC_PROG_MAKE_SET | |
12 | |
13 dnl Checks for programs. | |
14 AC_PROG_CC dnl required by almost everything | |
15 AC_PROG_CPP dnl required by header file checks | |
16 AC_PROGRAM_EGREP dnl required by AC_EGREP_CPP | |
5759 | 17 AC_PROG_FGREP dnl finds working grep -F |
7 | 18 AC_ISC_POSIX dnl required by AC_C_CROSS |
19 AC_PROG_AWK dnl required for "make html" in ../doc | |
20 | |
21 dnl Don't strip if we don't have it | |
22 AC_CHECK_PROG(STRIP, strip, strip, :) | |
23 | |
14 | 24 dnl Check for extension of executables |
7 | 25 AC_EXEEXT |
26 | |
1621 | 27 dnl Check for standard headers. We don't use this in Vim but other stuff |
28 dnl in autoconf needs it, where it uses STDC_HEADERS. | |
29 AC_HEADER_STDC | |
30 AC_HEADER_SYS_WAIT | |
31 | |
3222 | 32 dnl Check for the flag that fails if stuff are missing. |
33 | |
34 AC_MSG_CHECKING(--enable-fail-if-missing argument) | |
35 AC_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"]) | |
40 AC_MSG_RESULT($fail_if_missing) | |
41 | |
7 | 42 dnl Set default value for CFLAGS if none is defined or it's empty |
43 if test -z "$CFLAGS"; then | |
44 CFLAGS="-O" | |
45 test "$GCC" = yes && CFLAGS="-O2 -fno-strength-reduce -Wall" | |
46 fi | |
47 if test "$GCC" = yes; then | |
819 | 48 dnl method that should work for nearly all versions |
5830 | 49 gccversion=`$CC -dumpversion` |
819 | 50 if test "x$gccversion" = "x"; then |
51 dnl old method; fall-back for when -dumpversion doesn't work | |
5830 | 52 gccversion=`$CC --version | sed -e '2,$d' -e 's/darwin.//' -e 's/^[[^0-9]]*\([[0-9]]\.[[0-9.]]*\).*$/\1/g'` |
819 | 53 fi |
557 | 54 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 | |
697 | 56 echo 'GCC [[34]].0.[[12]] has a bug in the optimizer, disabling "-O#"' |
7 | 57 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 | |
64 fi | |
65 | |
5394 | 66 dnl clang-500.2.75 or around has abandoned -f[no-]strength-reduce and issues a |
67 dnl warning when that flag is passed to. Accordingly, adjust CFLAGS based on | |
68 dnl the version number of the clang in use. | |
69 dnl Note that this does not work to get the version of clang 3.1 or 3.2. | |
70 AC_MSG_CHECKING(for recent clang version) | |
5830 | 71 CLANG_VERSION_STRING=`$CC --version 2>/dev/null | sed -n -e 's/^.*clang.*\([[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\.[[0-9]][[0-9]]*\).*$/\1/p'` |
5394 | 72 if 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. | |
82 if test "$CLANG_VERSION" -ge 500002075 ; then | |
83 CFLAGS=`echo "$CFLAGS" | sed -n -e 's/-fno-strength-reduce/ /p'` | |
84 fi | |
85 else | |
86 AC_MSG_RESULT(no) | |
87 fi | |
88 | |
1621 | 89 dnl If configure thinks we are cross compiling, there might be something |
90 dnl wrong with the CC or CFLAGS settings, give a useful warning message | |
7 | 91 if test "$cross_compiling" = yes; then |
1621 | 92 AC_MSG_RESULT([cannot compile a simple program; if not cross compiling check CC and CFLAGS]) |
7 | 93 fi |
94 | |
548 | 95 dnl gcc-cpp has the wonderful -MM option to produce nicer dependencies. |
96 dnl But gcc 3.1 changed the meaning! See near the end. | |
7 | 97 test "$GCC" = yes && CPP_MM=M; AC_SUBST(CPP_MM) |
98 | |
99 if test -f ./toolcheck; then | |
100 AC_CHECKING(for buggy tools) | |
101 sh ./toolcheck 1>&AC_FD_MSG | |
102 fi | |
103 | |
104 OS_EXTRA_SRC=""; OS_EXTRA_OBJ="" | |
105 | |
106 dnl Check for BeOS, which needs an extra source file | |
107 AC_MSG_CHECKING(for BeOS) | |
108 case `uname` in | |
109 BeOS) OS_EXTRA_SRC=os_beos.c; OS_EXTRA_OBJ=objects/os_beos.o | |
110 BEOS=yes; AC_MSG_RESULT(yes);; | |
111 *) BEOS=no; AC_MSG_RESULT(no);; | |
112 esac | |
113 | |
114 dnl If QNX is found, assume we don't want to use Xphoton | |
115 dnl unless it was specifically asked for (--with-x) | |
116 AC_MSG_CHECKING(for QNX) | |
117 case `uname` in | |
118 QNX) OS_EXTRA_SRC=os_qnx.c; OS_EXTRA_OBJ=objects/os_qnx.o | |
119 test -z "$with_x" && with_x=no | |
120 QNX=yes; AC_MSG_RESULT(yes);; | |
121 *) QNX=no; AC_MSG_RESULT(no);; | |
122 esac | |
123 | |
124 dnl Check for Darwin and MacOS X | |
125 dnl We do a check for MacOS X in the very beginning because there | |
126 dnl are a lot of other things we need to change besides GUI stuff | |
127 AC_MSG_CHECKING([for Darwin (Mac OS X)]) | |
128 if test "`(uname) 2>/dev/null`" = Darwin; then | |
129 AC_MSG_RESULT(yes) | |
130 | |
131 AC_MSG_CHECKING(--disable-darwin argument) | |
132 AC_ARG_ENABLE(darwin, | |
133 [ --disable-darwin Disable Darwin (Mac OS X) support.], | |
134 , [enable_darwin="yes"]) | |
135 if test "$enable_darwin" = "yes"; then | |
136 AC_MSG_RESULT(no) | |
137 AC_MSG_CHECKING(if Darwin files are there) | |
2309
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
138 if test -f os_macosx.m; then |
7 | 139 AC_MSG_RESULT(yes) |
140 else | |
141 AC_MSG_RESULT([no, Darwin support disabled]) | |
142 enable_darwin=no | |
143 fi | |
144 else | |
145 AC_MSG_RESULT([yes, Darwin support excluded]) | |
146 fi | |
147 | |
692 | 148 AC_MSG_CHECKING(--with-mac-arch argument) |
809 | 149 AC_ARG_WITH(mac-arch, [ --with-mac-arch=ARCH current, intel, ppc or both], |
692 | 150 MACARCH="$withval"; AC_MSG_RESULT($MACARCH), |
809 | 151 MACARCH="current"; AC_MSG_RESULT(defaulting to $MACARCH)) |
692 | 152 |
2110
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
153 AC_MSG_CHECKING(--with-developer-dir argument) |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
154 AC_ARG_WITH(developer-dir, [ --with-developer-dir=PATH use PATH as location for Xcode developer tools], |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
155 DEVELOPER_DIR="$withval"; AC_MSG_RESULT($DEVELOPER_DIR), |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
156 DEVELOPER_DIR=""; AC_MSG_RESULT(not present)) |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
157 |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
158 if test "x$DEVELOPER_DIR" = "x"; then |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
159 AC_PATH_PROG(XCODE_SELECT, xcode-select) |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
160 if test "x$XCODE_SELECT" != "x"; then |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
161 AC_MSG_CHECKING(for developer dir using xcode-select) |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
162 DEVELOPER_DIR=`$XCODE_SELECT -print-path` |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
163 AC_MSG_RESULT([$DEVELOPER_DIR]) |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
164 else |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
165 DEVELOPER_DIR=/Developer |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
166 fi |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
167 fi |
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
168 |
692 | 169 if test "x$MACARCH" = "xboth"; then |
697 | 170 AC_MSG_CHECKING(for 10.4 universal SDK) |
171 dnl There is a terrible inconsistency (but we appear to get away with it): | |
172 dnl $CFLAGS uses the 10.4u SDK library for the headers, while $CPPFLAGS | |
173 dnl doesn't, because "gcc -E" doesn't grok it. That means the configure | |
174 dnl tests using the preprocessor are actually done with the wrong header | |
175 dnl files. $LDFLAGS is set at the end, because configure uses it together | |
176 dnl with $CFLAGS and we can only have one -sysroot argument. | |
692 | 177 save_cppflags="$CPPFLAGS" |
697 | 178 save_cflags="$CFLAGS" |
692 | 179 save_ldflags="$LDFLAGS" |
2110
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
180 CFLAGS="$CFLAGS -isysroot $DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" |
692 | 181 AC_TRY_LINK([ ], [ ], |
697 | 182 AC_MSG_RESULT(found, will make universal binary), |
692 | 183 |
697 | 184 AC_MSG_RESULT(not found) |
716 | 185 CFLAGS="$save_cflags" |
697 | 186 AC_MSG_CHECKING(if Intel architecture is supported) |
187 CPPFLAGS="$CPPFLAGS -arch i386" | |
188 LDFLAGS="$save_ldflags -arch i386" | |
189 AC_TRY_LINK([ ], [ ], | |
190 AC_MSG_RESULT(yes); MACARCH="intel", | |
191 AC_MSG_RESULT(no, using PowerPC) | |
856 | 192 MACARCH="ppc" |
697 | 193 CPPFLAGS="$save_cppflags -arch ppc" |
194 LDFLAGS="$save_ldflags -arch ppc")) | |
195 elif test "x$MACARCH" = "xintel"; then | |
196 CPPFLAGS="$CPPFLAGS -arch intel" | |
197 LDFLAGS="$LDFLAGS -arch intel" | |
818 | 198 elif test "x$MACARCH" = "xppc"; then |
697 | 199 CPPFLAGS="$CPPFLAGS -arch ppc" |
200 LDFLAGS="$LDFLAGS -arch ppc" | |
692 | 201 fi |
202 | |
7 | 203 if test "$enable_darwin" = "yes"; then |
204 MACOSX=yes | |
2309
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
205 OS_EXTRA_SRC="os_macosx.m os_mac_conv.c"; |
18 | 206 OS_EXTRA_OBJ="objects/os_macosx.o objects/os_mac_conv.o" |
685 | 207 dnl TODO: use -arch i386 on Intel machines |
5436 | 208 dnl Removed -no-cpp-precomp, only for very old compilers. |
209 CPPFLAGS="$CPPFLAGS -DMACOS_X_UNIX" | |
7 | 210 |
211 dnl If Carbon is found, assume we don't want X11 | |
212 dnl unless it was specifically asked for (--with-x) | |
18 | 213 dnl or Motif, Athena or GTK GUI is used. |
7 | 214 AC_CHECK_HEADER(Carbon/Carbon.h, CARBON=yes) |
215 if test "x$CARBON" = "xyes"; then | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
216 if test -z "$with_x" -a "X$enable_gui" != Xmotif -a "X$enable_gui" != Xathena -a "X$enable_gui" != Xgtk2; then |
7 | 217 with_x=no |
218 fi | |
219 fi | |
220 fi | |
692 | 221 |
798 | 222 dnl Avoid a bug with -O2 with gcc 4.0.1. Symptom: malloc() reports double |
699 | 223 dnl free. This happens in expand_filename(), because the optimizer swaps |
798 | 224 dnl two blocks of code, both using "repl", that can't be swapped. |
697 | 225 if test "$MACARCH" = "intel" -o "$MACARCH" = "both"; then |
226 CFLAGS=`echo "$CFLAGS" | sed 's/-O[[23456789]]/-Oz/'` | |
227 fi | |
228 | |
7 | 229 else |
230 AC_MSG_RESULT(no) | |
231 fi | |
232 | |
5421 | 233 dnl Mac OS X 10.9+ no longer include AvailabilityMacros.h in Carbon |
234 dnl so we need to include it to have access to version macros. | |
5423 | 235 AC_CHECK_HEADERS(AvailabilityMacros.h) |
5421 | 236 |
7 | 237 AC_SUBST(OS_EXTRA_SRC) |
238 AC_SUBST(OS_EXTRA_OBJ) | |
239 | |
240 dnl Add /usr/local/lib to $LDFLAGS and /usr/local/include to CFLAGS. | |
241 dnl Only when the directory exists and it wasn't there yet. | |
242 dnl For gcc don't do this when it is already in the default search path. | |
1621 | 243 dnl Skip all of this when cross-compiling. |
244 if test "$cross_compiling" = no; then | |
1668 | 245 AC_MSG_CHECKING(--with-local-dir argument) |
1621 | 246 have_local_include='' |
247 have_local_lib='' | |
1668 | 248 AC_ARG_WITH([local-dir], [ --with-local-dir=PATH search PATH instead of /usr/local for local libraries. |
249 --without-local-dir do not search /usr/local for local libraries.], [ | |
250 local_dir="$withval" | |
251 case "$withval" in | |
252 */*) ;; | |
253 no) | |
254 # avoid adding local dir to LDFLAGS and CPPFLAGS | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
255 have_local_include=yes |
1668 | 256 have_local_lib=yes |
257 ;; | |
258 *) AC_MSG_ERROR(must pass path argument to --with-local-dir) ;; | |
259 esac | |
260 AC_MSG_RESULT($local_dir) | |
261 ], [ | |
262 local_dir=/usr/local | |
263 AC_MSG_RESULT(Defaulting to $local_dir) | |
264 ]) | |
265 if test "$GCC" = yes -a "$local_dir" != no; then | |
1621 | 266 echo 'void f(){}' > conftest.c |
5436 | 267 dnl Removed -no-cpp-precomp, only needed for OS X 10.2 (Ben Fowler) |
268 have_local_include=`${CC-cc} -c -v conftest.c 2>&1 | grep "${local_dir}/include"` | |
1668 | 269 have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep "${local_dir}/lib"` |
1621 | 270 rm -f conftest.c conftest.o |
7 | 271 fi |
1668 | 272 if test -z "$have_local_lib" -a -d "${local_dir}/lib"; then |
273 tt=`echo "$LDFLAGS" | sed -e "s+-L${local_dir}/lib ++g" -e "s+-L${local_dir}/lib$++g"` | |
1621 | 274 if test "$tt" = "$LDFLAGS"; then |
1668 | 275 LDFLAGS="$LDFLAGS -L${local_dir}/lib" |
1621 | 276 fi |
277 fi | |
1668 | 278 if test -z "$have_local_include" -a -d "${local_dir}/include"; then |
279 tt=`echo "$CPPFLAGS" | sed -e "s+-I${local_dir}/include ++g" -e "s+-I${local_dir}/include$++g"` | |
1621 | 280 if test "$tt" = "$CPPFLAGS"; then |
1668 | 281 CPPFLAGS="$CPPFLAGS -I${local_dir}/include" |
1621 | 282 fi |
7 | 283 fi |
284 fi | |
285 | |
286 AC_MSG_CHECKING(--with-vim-name argument) | |
287 AC_ARG_WITH(vim-name, [ --with-vim-name=NAME what to call the Vim executable], | |
288 VIMNAME="$withval"; AC_MSG_RESULT($VIMNAME), | |
502 | 289 VIMNAME="vim"; AC_MSG_RESULT(Defaulting to $VIMNAME)) |
7 | 290 AC_SUBST(VIMNAME) |
291 AC_MSG_CHECKING(--with-ex-name argument) | |
292 AC_ARG_WITH(ex-name, [ --with-ex-name=NAME what to call the Ex executable], | |
293 EXNAME="$withval"; AC_MSG_RESULT($EXNAME), | |
294 EXNAME="ex"; AC_MSG_RESULT(Defaulting to ex)) | |
295 AC_SUBST(EXNAME) | |
296 AC_MSG_CHECKING(--with-view-name argument) | |
297 AC_ARG_WITH(view-name, [ --with-view-name=NAME what to call the View executable], | |
298 VIEWNAME="$withval"; AC_MSG_RESULT($VIEWNAME), | |
299 VIEWNAME="view"; AC_MSG_RESULT(Defaulting to view)) | |
300 AC_SUBST(VIEWNAME) | |
301 | |
302 AC_MSG_CHECKING(--with-global-runtime argument) | |
303 AC_ARG_WITH(global-runtime, [ --with-global-runtime=DIR global runtime directory in 'runtimepath'], | |
304 AC_MSG_RESULT($withval); AC_DEFINE_UNQUOTED(RUNTIME_GLOBAL, "$withval"), | |
305 AC_MSG_RESULT(no)) | |
306 | |
307 AC_MSG_CHECKING(--with-modified-by argument) | |
308 AC_ARG_WITH(modified-by, [ --with-modified-by=NAME name of who modified a release version], | |
309 AC_MSG_RESULT($withval); AC_DEFINE_UNQUOTED(MODIFIED_BY, "$withval"), | |
310 AC_MSG_RESULT(no)) | |
311 | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
312 dnl Check for EBCDIC stolen from the LYNX port to z/OS Unix |
7 | 313 AC_MSG_CHECKING(if character set is EBCDIC) |
314 AC_TRY_COMPILE([ ], | |
315 [ /* TryCompile function for CharSet. | |
316 Treat any failure as ASCII for compatibility with existing art. | |
317 Use compile-time rather than run-time tests for cross-compiler | |
318 tolerance. */ | |
319 #if '0'!=240 | |
320 make an error "Character set is not EBCDIC" | |
321 #endif ], | |
322 [ # TryCompile action if true | |
323 cf_cv_ebcdic=yes ], | |
324 [ # TryCompile action if false | |
325 cf_cv_ebcdic=no]) | |
326 # end of TryCompile ]) | |
327 # end of CacheVal CvEbcdic | |
328 AC_MSG_RESULT($cf_cv_ebcdic) | |
329 case "$cf_cv_ebcdic" in #(vi | |
330 yes) AC_DEFINE(EBCDIC) | |
331 line_break='"\\n"' | |
332 ;; | |
333 *) line_break='"\\012"';; | |
334 esac | |
335 AC_SUBST(line_break) | |
336 | |
337 if test "$cf_cv_ebcdic" = "yes"; then | |
4352 | 338 dnl If we have EBCDIC we most likely have z/OS Unix, let's test it! |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
339 AC_MSG_CHECKING(for z/OS Unix) |
7 | 340 case `uname` in |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
341 OS/390) zOSUnix="yes"; |
7 | 342 dnl If using cc the environment variable _CC_CCMODE must be |
343 dnl set to "1", so that some compiler extensions are enabled. | |
344 dnl If using c89 the environment variable is named _CC_C89MODE. | |
345 dnl Note: compile with c89 never tested. | |
346 if test "$CC" = "cc"; then | |
347 ccm="$_CC_CCMODE" | |
348 ccn="CC" | |
349 else | |
350 if test "$CC" = "c89"; then | |
351 ccm="$_CC_C89MODE" | |
352 ccn="C89" | |
353 else | |
354 ccm=1 | |
355 fi | |
356 fi | |
357 if test "$ccm" != "1"; then | |
358 echo "" | |
359 echo "------------------------------------------" | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
360 echo " On z/OS Unix, the environment variable" |
3590 | 361 echo " _CC_${ccn}MODE must be set to \"1\"!" |
7 | 362 echo " Do:" |
363 echo " export _CC_${ccn}MODE=1" | |
364 echo " and then call configure again." | |
365 echo "------------------------------------------" | |
366 exit 1 | |
367 fi | |
3590 | 368 # Set CFLAGS for configure process. |
369 # This will be reset later for config.mk. | |
370 # Use haltonmsg to force error for missing H files. | |
371 CFLAGS="$CFLAGS -D_ALL_SOURCE -Wc,float(ieee),haltonmsg(3296)"; | |
372 LDFLAGS="$LDFLAGS -Wl,EDIT=NO" | |
7 | 373 AC_MSG_RESULT(yes) |
374 ;; | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
375 *) zOSUnix="no"; |
7 | 376 AC_MSG_RESULT(no) |
377 ;; | |
378 esac | |
379 fi | |
380 | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
381 dnl Set QUOTESED. Needs additional backslashes on zOS |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
382 if test "$zOSUnix" = "yes"; then |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
383 QUOTESED="sed -e 's/[[\\\\\"]]/\\\\\\\\&/g' -e 's/\\\\\\\\\"/\"/' -e 's/\\\\\\\\\";\$\$/\";/'" |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
384 else |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
385 QUOTESED="sed -e 's/[[\\\\\"]]/\\\\&/g' -e 's/\\\\\"/\"/' -e 's/\\\\\";\$\$/\";/'" |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
386 fi |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
387 AC_SUBST(QUOTESED) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
388 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
389 |
5788 | 390 dnl Link with -lsmack for Smack stuff; if not found |
391 AC_MSG_CHECKING(--disable-smack argument) | |
392 AC_ARG_ENABLE(smack, | |
393 [ --disable-smack Do not check for Smack support.], | |
394 , enable_smack="yes") | |
395 if test "$enable_smack" = "yes"; then | |
5804 | 396 AC_MSG_RESULT(no) |
5788 | 397 AC_CHECK_HEADER([linux/xattr.h], true, enable_smack="no") |
5804 | 398 else |
5822 | 399 AC_MSG_RESULT(yes) |
400 fi | |
401 if test "$enable_smack" = "yes"; then | |
402 AC_CHECK_HEADER([attr/xattr.h], true, enable_smack="no") | |
5788 | 403 fi |
404 if test "$enable_smack" = "yes"; then | |
5822 | 405 AC_MSG_CHECKING(for XATTR_NAME_SMACKEXEC in linux/xattr.h) |
406 AC_EGREP_CPP(XATTR_NAME_SMACKEXEC, [#include <linux/xattr.h>], | |
407 AC_MSG_RESULT(yes), | |
5824 | 408 AC_MSG_RESULT(no); enable_smack="no") |
5822 | 409 fi |
410 if test "$enable_smack" = "yes"; then | |
411 AC_CHECK_LIB(attr, setxattr, | |
5788 | 412 [LIBS="$LIBS -lattr" |
413 found_smack="yes" | |
414 AC_DEFINE(HAVE_SMACK)]) | |
1583 | 415 fi |
7 | 416 |
5788 | 417 dnl When smack was found don't search for SELinux |
418 if test "x$found_smack" = "x"; then | |
419 dnl Link with -lselinux for SELinux stuff; if not found | |
420 AC_MSG_CHECKING(--disable-selinux argument) | |
421 AC_ARG_ENABLE(selinux, | |
422 [ --disable-selinux Do not check for SELinux support.], | |
423 , enable_selinux="yes") | |
424 if test "$enable_selinux" = "yes"; then | |
425 AC_MSG_RESULT(no) | |
426 AC_CHECK_LIB(selinux, is_selinux_enabled, | |
427 [LIBS="$LIBS -lselinux" | |
428 AC_DEFINE(HAVE_SELINUX)]) | |
429 else | |
430 AC_MSG_RESULT(yes) | |
431 fi | |
432 fi | |
433 | |
7 | 434 dnl Check user requested features. |
435 | |
436 AC_MSG_CHECKING(--with-features argument) | |
437 AC_ARG_WITH(features, [ --with-features=TYPE tiny, small, normal, big or huge (default: normal)], | |
438 features="$withval"; AC_MSG_RESULT($features), | |
439 features="normal"; AC_MSG_RESULT(Defaulting to normal)) | |
440 | |
441 dovimdiff="" | |
442 dogvimdiff="" | |
443 case "$features" in | |
444 tiny) AC_DEFINE(FEAT_TINY) ;; | |
445 small) AC_DEFINE(FEAT_SMALL) ;; | |
446 normal) AC_DEFINE(FEAT_NORMAL) dovimdiff="installvimdiff"; | |
447 dogvimdiff="installgvimdiff" ;; | |
448 big) AC_DEFINE(FEAT_BIG) dovimdiff="installvimdiff"; | |
449 dogvimdiff="installgvimdiff" ;; | |
450 huge) AC_DEFINE(FEAT_HUGE) dovimdiff="installvimdiff"; | |
451 dogvimdiff="installgvimdiff" ;; | |
452 *) AC_MSG_RESULT([Sorry, $features is not supported]) ;; | |
453 esac | |
454 | |
455 AC_SUBST(dovimdiff) | |
456 AC_SUBST(dogvimdiff) | |
457 | |
458 AC_MSG_CHECKING(--with-compiledby argument) | |
459 AC_ARG_WITH(compiledby, [ --with-compiledby=NAME name to show in :version message], | |
460 compiledby="$withval"; AC_MSG_RESULT($withval), | |
461 compiledby=""; AC_MSG_RESULT(no)) | |
462 AC_SUBST(compiledby) | |
463 | |
464 AC_MSG_CHECKING(--disable-xsmp argument) | |
465 AC_ARG_ENABLE(xsmp, | |
466 [ --disable-xsmp Disable XSMP session management], | |
467 , enable_xsmp="yes") | |
468 | |
469 if test "$enable_xsmp" = "yes"; then | |
470 AC_MSG_RESULT(no) | |
471 AC_MSG_CHECKING(--disable-xsmp-interact argument) | |
472 AC_ARG_ENABLE(xsmp-interact, | |
473 [ --disable-xsmp-interact Disable XSMP interaction], | |
474 , enable_xsmp_interact="yes") | |
475 if test "$enable_xsmp_interact" = "yes"; then | |
476 AC_MSG_RESULT(no) | |
477 AC_DEFINE(USE_XSMP_INTERACT) | |
478 else | |
479 AC_MSG_RESULT(yes) | |
480 fi | |
481 else | |
482 AC_MSG_RESULT(yes) | |
483 fi | |
484 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
485 dnl Check for Lua feature. |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
486 AC_MSG_CHECKING(--enable-luainterp argument) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
487 AC_ARG_ENABLE(luainterp, |
2373
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
488 [ --enable-luainterp[=OPTS] Include Lua interpreter. [default=no] [OPTS=no/yes/dynamic]], , |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
489 [enable_luainterp="no"]) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
490 AC_MSG_RESULT($enable_luainterp) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
491 |
2373
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
492 if test "$enable_luainterp" = "yes" -o "$enable_luainterp" = "dynamic"; then |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
493 dnl -- find the lua executable |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
494 AC_SUBST(vi_cv_path_lua) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
495 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
496 AC_MSG_CHECKING(--with-lua-prefix argument) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
497 AC_ARG_WITH(lua_prefix, |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
498 [ --with-lua-prefix=PFX Prefix where Lua is installed.], |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
499 with_lua_prefix="$withval"; AC_MSG_RESULT($with_lua_prefix), |
2331
3840b7508835
Make it easier to build with Lua. Remove compiler warnings.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
500 with_lua_prefix="";AC_MSG_RESULT(no)) |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
501 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
502 if test "X$with_lua_prefix" != "X"; then |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
503 vi_cv_path_lua_pfx="$with_lua_prefix" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
504 else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
505 AC_MSG_CHECKING(LUA_PREFIX environment var) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
506 if test "X$LUA_PREFIX" != "X"; then |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
507 AC_MSG_RESULT("$LUA_PREFIX") |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
508 vi_cv_path_lua_pfx="$LUA_PREFIX" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
509 else |
2331
3840b7508835
Make it easier to build with Lua. Remove compiler warnings.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
510 AC_MSG_RESULT([not set, default to /usr]) |
3840b7508835
Make it easier to build with Lua. Remove compiler warnings.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
511 vi_cv_path_lua_pfx="/usr" |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
512 fi |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
513 fi |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
514 |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
515 AC_MSG_CHECKING(--with-luajit) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
516 AC_ARG_WITH(luajit, |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
517 [ --with-luajit Link with LuaJIT instead of Lua.], |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
518 [vi_cv_with_luajit="$withval"], |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
519 [vi_cv_with_luajit="no"]) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
520 AC_MSG_RESULT($vi_cv_with_luajit) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
521 |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
522 LUA_INC= |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
523 if test "X$vi_cv_path_lua_pfx" != "X"; then |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
524 if test "x$vi_cv_with_luajit" != "xno"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
525 dnl -- try to find LuaJIT executable |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
526 AC_PATH_PROG(vi_cv_path_luajit, luajit) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
527 if test "X$vi_cv_path_luajit" != "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
528 dnl -- find LuaJIT version |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
529 AC_CACHE_CHECK(LuaJIT version, vi_cv_version_luajit, |
5492 | 530 [ vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([[0-9.]]*\)\.[[0-9]]\(-[[a-z0-9]]*\)* .*/\1/'` ]) |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
531 AC_CACHE_CHECK(Lua version of LuaJIT, vi_cv_version_lua_luajit, |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
532 [ vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //'` ]) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
533 vi_cv_path_lua="$vi_cv_path_luajit" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
534 vi_cv_version_lua="$vi_cv_version_lua_luajit" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
535 fi |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
536 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
537 dnl -- try to find Lua executable |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
538 AC_PATH_PROG(vi_cv_path_plain_lua, lua) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
539 if test "X$vi_cv_path_plain_lua" != "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
540 dnl -- find Lua version |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
541 AC_CACHE_CHECK(Lua version, vi_cv_version_plain_lua, |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
542 [ vi_cv_version_plain_lua=`${vi_cv_path_plain_lua} -e "print(_VERSION)" | sed 's/.* //'` ]) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
543 fi |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
544 vi_cv_path_lua="$vi_cv_path_plain_lua" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
545 vi_cv_version_lua="$vi_cv_version_plain_lua" |
3833 | 546 fi |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
547 if test "x$vi_cv_with_luajit" != "xno" && test "X$vi_cv_version_luajit" != "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
548 AC_MSG_CHECKING(if lua.h can be found in $vi_cv_path_lua_pfx/include/luajit-$vi_cv_version_luajit) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
549 if test -f $vi_cv_path_lua_pfx/include/luajit-$vi_cv_version_luajit/lua.h; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
550 AC_MSG_RESULT(yes) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
551 LUA_INC=/luajit-$vi_cv_version_luajit |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
552 fi |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
553 fi |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
554 if test "X$LUA_INC" = "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
555 AC_MSG_CHECKING(if lua.h can be found in $vi_cv_path_lua_pfx/include) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
556 if test -f $vi_cv_path_lua_pfx/include/lua.h; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
557 AC_MSG_RESULT(yes) |
3833 | 558 else |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
559 AC_MSG_RESULT(no) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
560 AC_MSG_CHECKING(if lua.h can be found in $vi_cv_path_lua_pfx/include/lua$vi_cv_version_lua) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
561 if test -f $vi_cv_path_lua_pfx/include/lua$vi_cv_version_lua/lua.h; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
562 AC_MSG_RESULT(yes) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
563 LUA_INC=/lua$vi_cv_version_lua |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
564 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
565 AC_MSG_RESULT(no) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
566 vi_cv_path_lua_pfx= |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
567 fi |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
568 fi |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
569 fi |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
570 fi |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
571 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
572 if test "X$vi_cv_path_lua_pfx" != "X"; then |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
573 if test "x$vi_cv_with_luajit" != "xno"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
574 multiarch=`dpkg-architecture -qDEB_HOST_MULTIARCH 2> /dev/null` |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
575 if test "X$multiarch" != "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
576 lib_multiarch="lib/${multiarch}" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
577 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
578 lib_multiarch="lib" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
579 fi |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
580 if test "X$vi_cv_version_lua" = "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
581 LUA_LIBS="-L${vi_cv_path_lua_pfx}/${lib_multiarch} -lluajit" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
582 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
583 LUA_LIBS="-L${vi_cv_path_lua_pfx}/${lib_multiarch} -lluajit-$vi_cv_version_lua" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
584 fi |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
585 else |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
586 if test "X$LUA_INC" != "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
587 dnl Test alternate location using version |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
588 LUA_LIBS="-L${vi_cv_path_lua_pfx}/lib -llua$vi_cv_version_lua" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
589 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
590 LUA_LIBS="-L${vi_cv_path_lua_pfx}/lib -llua" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
591 fi |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
592 fi |
2373
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
593 if test "$enable_luainterp" = "dynamic"; then |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
594 lua_ok="yes" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
595 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
596 AC_MSG_CHECKING([if link with ${LUA_LIBS} is sane]) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
597 libs_save=$LIBS |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
598 LIBS="$LIBS $LUA_LIBS" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
599 AC_TRY_LINK(,[ ], |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
600 AC_MSG_RESULT(yes); lua_ok="yes", |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
601 AC_MSG_RESULT(no); lua_ok="no"; LUA_LIBS="") |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
602 LIBS=$libs_save |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
603 fi |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
604 if test "x$lua_ok" = "xyes"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
605 LUA_CFLAGS="-I${vi_cv_path_lua_pfx}/include${LUA_INC}" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
606 LUA_SRC="if_lua.c" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
607 LUA_OBJ="objects/if_lua.o" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
608 LUA_PRO="if_lua.pro" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
609 AC_DEFINE(FEAT_LUA) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
610 fi |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
611 if test "$enable_luainterp" = "dynamic"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
612 if test "x$vi_cv_with_luajit" != "xno"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
613 luajit="jit" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
614 fi |
3833 | 615 if test -f "${vi_cv_path_lua_pfx}/bin/cyglua-${vi_cv_version_lua}.dll"; then |
616 vi_cv_dll_name_lua="cyglua-${vi_cv_version_lua}.dll" | |
617 else | |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
618 if test "x$MACOSX" = "xyes"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
619 ext="dylib" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
620 indexes="" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
621 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
622 ext="so" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
623 indexes=".0 .1 .2 .3 .4 .5 .6 .7 .8 .9" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
624 multiarch=`dpkg-architecture -qDEB_HOST_MULTIARCH 2> /dev/null` |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
625 if test "X$multiarch" != "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
626 lib_multiarch="lib/${multiarch}" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
627 fi |
4295 | 628 fi |
629 dnl Determine the sover for the current version, but fallback to | |
630 dnl liblua${vi_cv_version_lua}.so if no sover-versioned file is found. | |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
631 AC_MSG_CHECKING(if liblua${luajit}*.${ext}* can be found in $vi_cv_path_lua_pfx) |
4295 | 632 for subdir in "${lib_multiarch}" lib64 lib; do |
633 if test -z "$subdir"; then | |
634 continue | |
635 fi | |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
636 for sover in "${vi_cv_version_lua}.${ext}" "-${vi_cv_version_lua}.${ext}" \ |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
637 ".${vi_cv_version_lua}.${ext}" ".${ext}.${vi_cv_version_lua}"; do |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
638 for i in $indexes ""; do |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
639 if test -f "${vi_cv_path_lua_pfx}/${subdir}/liblua${luajit}${sover}$i"; then |
4295 | 640 sover2="$i" |
641 break 3 | |
642 fi | |
643 done | |
4103 | 644 done |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
645 sover="" |
3833 | 646 done |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
647 if test "X$sover" = "X"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
648 AC_MSG_RESULT(no) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
649 lua_ok="no" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
650 vi_cv_dll_name_lua="liblua${luajit}.${ext}" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
651 else |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
652 AC_MSG_RESULT(yes) |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
653 lua_ok="yes" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
654 vi_cv_dll_name_lua="liblua${luajit}${sover}$sover2" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
655 fi |
3833 | 656 fi |
2373
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
657 AC_DEFINE(DYNAMIC_LUA) |
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
658 LUA_LIBS="" |
3833 | 659 LUA_CFLAGS="-DDYNAMIC_LUA_DLL=\\\"${vi_cv_dll_name_lua}\\\" $LUA_CFLAGS" |
2373
f149bb1cf5be
Make it possible to load Lua dynamically on Unix. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
660 fi |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
661 if test "X$LUA_CFLAGS$LUA_LIBS" != "X" && \ |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
662 test "x$MACOSX" = "xyes" && test "x$vi_cv_with_luajit" != "xno" && \ |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
663 test "`(uname -m) 2>/dev/null`" = "x86_64"; then |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
664 dnl OSX/x64 requires these flags. See http://luajit.org/install.html |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
665 LUA_LIBS="-pagezero_size 10000 -image_base 100000000 $LUA_LIBS" |
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
666 fi |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
667 fi |
5240
da95a7f1d5a8
updated for version 7.4a.045
Bram Moolenaar <bram@vim.org>
parents:
5206
diff
changeset
|
668 if test "$fail_if_missing" = "yes" -a "$lua_ok" != "yes"; then |
3222 | 669 AC_MSG_ERROR([could not configure lua]) |
670 fi | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
671 AC_SUBST(LUA_SRC) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
672 AC_SUBST(LUA_OBJ) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
673 AC_SUBST(LUA_PRO) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
674 AC_SUBST(LUA_LIBS) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
675 AC_SUBST(LUA_CFLAGS) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
676 fi |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
677 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
678 |
14 | 679 dnl Check for MzScheme feature. |
680 AC_MSG_CHECKING(--enable-mzschemeinterp argument) | |
681 AC_ARG_ENABLE(mzschemeinterp, | |
682 [ --enable-mzschemeinterp Include MzScheme interpreter.], , | |
683 [enable_mzschemeinterp="no"]) | |
684 AC_MSG_RESULT($enable_mzschemeinterp) | |
685 | |
686 if test "$enable_mzschemeinterp" = "yes"; then | |
687 dnl -- find the mzscheme executable | |
688 AC_SUBST(vi_cv_path_mzscheme) | |
689 | |
690 AC_MSG_CHECKING(--with-plthome argument) | |
691 AC_ARG_WITH(plthome, | |
856 | 692 [ --with-plthome=PLTHOME Use PLTHOME.], |
693 with_plthome="$withval"; AC_MSG_RESULT($with_plthome), | |
14 | 694 with_plthome="";AC_MSG_RESULT("no")) |
695 | |
696 if test "X$with_plthome" != "X"; then | |
697 vi_cv_path_mzscheme_pfx="$with_plthome" | |
698 else | |
699 AC_MSG_CHECKING(PLTHOME environment var) | |
700 if test "X$PLTHOME" != "X"; then | |
701 AC_MSG_RESULT("$PLTHOME") | |
856 | 702 vi_cv_path_mzscheme_pfx="$PLTHOME" |
14 | 703 else |
1894 | 704 AC_MSG_RESULT(not set) |
14 | 705 dnl -- try to find MzScheme executable |
856 | 706 AC_PATH_PROG(vi_cv_path_mzscheme, mzscheme) |
14 | 707 |
708 dnl resolve symbolic link, the executable is often elsewhere and there | |
709 dnl are no links for the include files. | |
856 | 710 if test "X$vi_cv_path_mzscheme" != "X"; then |
14 | 711 lsout=`ls -l $vi_cv_path_mzscheme` |
712 if echo "$lsout" | grep -e '->' >/dev/null 2>/dev/null; then | |
713 vi_cv_path_mzscheme=`echo "$lsout" | sed 's/.*-> \(.*\)/\1/'` | |
714 fi | |
715 fi | |
716 | |
856 | 717 if test "X$vi_cv_path_mzscheme" != "X"; then |
718 dnl -- find where MzScheme thinks it was installed | |
719 AC_CACHE_CHECK(MzScheme install prefix,vi_cv_path_mzscheme_pfx, | |
1894 | 720 dnl different versions of MzScheme differ in command line processing |
721 dnl use universal approach | |
722 echo "(display (simplify-path \ | |
856 | 723 (build-path (call-with-values \ |
724 (lambda () (split-path (find-system-path (quote exec-file)))) \ | |
1894 | 725 (lambda (base name must-be-dir?) base)) (quote up))))" > mzdirs.scm |
726 dnl Remove a trailing slash | |
727 [ vi_cv_path_mzscheme_pfx=`${vi_cv_path_mzscheme} -r mzdirs.scm | \ | |
728 sed -e 's+/$++'` ]) | |
729 rm -f mzdirs.scm | |
856 | 730 fi |
14 | 731 fi |
732 fi | |
733 | |
1154 | 734 SCHEME_INC= |
14 | 735 if test "X$vi_cv_path_mzscheme_pfx" != "X"; then |
736 AC_MSG_CHECKING(if scheme.h can be found in $vi_cv_path_mzscheme_pfx/include) | |
737 if test -f $vi_cv_path_mzscheme_pfx/include/scheme.h; then | |
1894 | 738 SCHEME_INC=${vi_cv_path_mzscheme_pfx}/include |
739 AC_MSG_RESULT(yes) | |
14 | 740 else |
1894 | 741 AC_MSG_RESULT(no) |
742 AC_MSG_CHECKING(if scheme.h can be found in $vi_cv_path_mzscheme_pfx/include/plt) | |
1154 | 743 if test -f $vi_cv_path_mzscheme_pfx/include/plt/scheme.h; then |
1894 | 744 AC_MSG_RESULT(yes) |
745 SCHEME_INC=${vi_cv_path_mzscheme_pfx}/include/plt | |
1154 | 746 else |
1894 | 747 AC_MSG_RESULT(no) |
2628 | 748 AC_MSG_CHECKING(if scheme.h can be found in $vi_cv_path_mzscheme_pfx/include/racket) |
749 if test -f $vi_cv_path_mzscheme_pfx/include/racket/scheme.h; then | |
1894 | 750 AC_MSG_RESULT(yes) |
2628 | 751 SCHEME_INC=${vi_cv_path_mzscheme_pfx}/include/racket |
1894 | 752 else |
753 AC_MSG_RESULT(no) | |
2628 | 754 AC_MSG_CHECKING(if scheme.h can be found in /usr/include/plt/) |
755 if test -f /usr/include/plt/scheme.h; then | |
756 AC_MSG_RESULT(yes) | |
757 SCHEME_INC=/usr/include/plt | |
758 else | |
759 AC_MSG_RESULT(no) | |
760 AC_MSG_CHECKING(if scheme.h can be found in /usr/include/racket/) | |
761 if test -f /usr/include/racket/scheme.h; then | |
762 AC_MSG_RESULT(yes) | |
763 SCHEME_INC=/usr/include/racket | |
764 else | |
765 AC_MSG_RESULT(no) | |
766 vi_cv_path_mzscheme_pfx= | |
767 fi | |
768 fi | |
1894 | 769 fi |
1154 | 770 fi |
14 | 771 fi |
772 fi | |
773 | |
774 if test "X$vi_cv_path_mzscheme_pfx" != "X"; then | |
1301 | 775 if test "x$MACOSX" = "xyes"; then |
4074 | 776 MZSCHEME_LIBS="-framework Racket" |
777 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC" | |
1894 | 778 elif test -f "${vi_cv_path_mzscheme_pfx}/lib/libmzscheme3m.a"; then |
779 MZSCHEME_LIBS="${vi_cv_path_mzscheme_pfx}/lib/libmzscheme3m.a" | |
780 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC" | |
2628 | 781 elif test -f "${vi_cv_path_mzscheme_pfx}/lib/libracket3m.a"; then |
782 MZSCHEME_LIBS="${vi_cv_path_mzscheme_pfx}/lib/libracket3m.a" | |
783 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC" | |
784 elif test -f "${vi_cv_path_mzscheme_pfx}/lib/libracket.a"; then | |
785 MZSCHEME_LIBS="${vi_cv_path_mzscheme_pfx}/lib/libracket.a ${vi_cv_path_mzscheme_pfx}/lib/libmzgc.a" | |
786 elif test -f "${vi_cv_path_mzscheme_pfx}/lib/libmzscheme.a"; then | |
1264 | 787 MZSCHEME_LIBS="${vi_cv_path_mzscheme_pfx}/lib/libmzscheme.a ${vi_cv_path_mzscheme_pfx}/lib/libmzgc.a" |
14 | 788 else |
1894 | 789 dnl Using shared objects |
790 if test -f "${vi_cv_path_mzscheme_pfx}/lib/libmzscheme3m.so"; then | |
791 MZSCHEME_LIBS="-L${vi_cv_path_mzscheme_pfx}/lib -lmzscheme3m" | |
792 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC" | |
2628 | 793 elif test -f "${vi_cv_path_mzscheme_pfx}/lib/libracket3m.so"; then |
794 MZSCHEME_LIBS="-L${vi_cv_path_mzscheme_pfx}/lib -lracket3m" | |
795 MZSCHEME_CFLAGS="-DMZ_PRECISE_GC" | |
796 elif test -f "${vi_cv_path_mzscheme_pfx}/lib/libracket.so"; then | |
797 MZSCHEME_LIBS="-L${vi_cv_path_mzscheme_pfx}/lib -lracket -lmzgc" | |
1894 | 798 else |
799 MZSCHEME_LIBS="-L${vi_cv_path_mzscheme_pfx}/lib -lmzscheme -lmzgc" | |
800 fi | |
16 | 801 if test "$GCC" = yes; then |
802 dnl Make Vim remember the path to the library. For when it's not in | |
803 dnl $LD_LIBRARY_PATH. | |
1894 | 804 MZSCHEME_LIBS="${MZSCHEME_LIBS} -Wl,-rpath -Wl,${vi_cv_path_mzscheme_pfx}/lib" |
17 | 805 elif test "`(uname) 2>/dev/null`" = SunOS && |
806 uname -r | grep '^5' >/dev/null; then | |
1894 | 807 MZSCHEME_LIBS="${MZSCHEME_LIBS} -R ${vi_cv_path_mzscheme_pfx}/lib" |
16 | 808 fi |
14 | 809 fi |
3945 | 810 |
811 AC_MSG_CHECKING(for racket collects directory) | |
1154 | 812 if test -d $vi_cv_path_mzscheme_pfx/lib/plt/collects; then |
3945 | 813 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/lib/plt/ |
2628 | 814 else |
815 if test -d $vi_cv_path_mzscheme_pfx/lib/racket/collects; then | |
3945 | 816 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/lib/racket/ |
817 else | |
818 if test -d $vi_cv_path_mzscheme_pfx/share/racket/collects; then | |
819 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/share/racket/ | |
4074 | 820 else |
821 if test -d $vi_cv_path_mzscheme_pfx/collects; then | |
822 SCHEME_COLLECTS=$vi_cv_path_mzscheme_pfx/ | |
823 fi | |
3945 | 824 fi |
2628 | 825 fi |
1154 | 826 fi |
3945 | 827 if test "X$SCHEME_COLLECTS" != "X" ; then |
828 AC_MSG_RESULT(${SCHEME_COLLECTS}) | |
829 else | |
830 AC_MSG_RESULT(not found) | |
831 fi | |
832 | |
833 AC_MSG_CHECKING(for mzscheme_base.c) | |
834 if test -f "${SCHEME_COLLECTS}collects/scheme/base.ss" ; then | |
2628 | 835 MZSCHEME_EXTRA="mzscheme_base.c" |
5672 | 836 MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/mzc" |
837 MZSCHEME_MOD="++lib scheme/base" | |
2628 | 838 else |
3945 | 839 if test -f "${SCHEME_COLLECTS}collects/scheme/base.rkt" ; then |
2628 | 840 MZSCHEME_EXTRA="mzscheme_base.c" |
5672 | 841 MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/mzc" |
842 MZSCHEME_MOD="++lib scheme/base" | |
843 else | |
844 if test -f "${SCHEME_COLLECTS}collects/racket/base.rkt" ; then | |
845 MZSCHEME_EXTRA="mzscheme_base.c" | |
846 MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/raco ctool" | |
847 MZSCHEME_MOD="" | |
848 fi | |
2628 | 849 fi |
850 fi | |
851 if test "X$MZSCHEME_EXTRA" != "X" ; then | |
1894 | 852 dnl need to generate bytecode for MzScheme base |
853 MZSCHEME_CFLAGS="${MZSCHEME_CFLAGS} -DINCLUDE_MZSCHEME_BASE" | |
854 MZSCHEME_MZC="${vi_cv_path_mzscheme_pfx}/bin/mzc" | |
3945 | 855 AC_MSG_RESULT(needed) |
856 else | |
857 AC_MSG_RESULT(not needed) | |
1894 | 858 fi |
3945 | 859 |
5206
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
860 dnl On Ubuntu this fixes "undefined reference to symbol 'ffi_type_void'". |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
861 AC_CHECK_LIB(ffi, ffi_type_void, [MZSCHEME_LIBS="$MZSCHEME_LIBS -lffi"]) |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
862 |
1894 | 863 MZSCHEME_CFLAGS="${MZSCHEME_CFLAGS} -I${SCHEME_INC} \ |
3945 | 864 -DMZSCHEME_COLLECTS='\"${SCHEME_COLLECTS}collects\"'" |
5206
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
865 |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
866 dnl Test that we can compile a simple program with these CFLAGS and LIBS. |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
867 AC_MSG_CHECKING([if compile and link flags for MzScheme are sane]) |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
868 cflags_save=$CFLAGS |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
869 libs_save=$LIBS |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
870 CFLAGS="$CFLAGS $MZSCHEME_CFLAGS" |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
871 LIBS="$LIBS $MZSCHEME_LIBS" |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
872 AC_TRY_LINK(,[ ], |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
873 AC_MSG_RESULT(yes); mzs_ok=yes, |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
874 AC_MSG_RESULT(no: MZSCHEME DISABLED); mzs_ok=no) |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
875 CFLAGS=$cflags_save |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
876 LIBS=$libs_save |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
877 if test $mzs_ok = yes; then |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
878 MZSCHEME_SRC="if_mzsch.c" |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
879 MZSCHEME_OBJ="objects/if_mzsch.o" |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
880 MZSCHEME_PRO="if_mzsch.pro" |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
881 AC_DEFINE(FEAT_MZSCHEME) |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
882 else |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
883 MZSCHEME_CFLAGS= |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
884 MZSCHEME_LIBS= |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
885 MZSCHEME_EXTRA= |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
886 MZSCHEME_MZC= |
2b58913e19a5
updated for version 7.4a.029
Bram Moolenaar <bram@vim.org>
parents:
5170
diff
changeset
|
887 fi |
14 | 888 fi |
889 AC_SUBST(MZSCHEME_SRC) | |
890 AC_SUBST(MZSCHEME_OBJ) | |
891 AC_SUBST(MZSCHEME_PRO) | |
892 AC_SUBST(MZSCHEME_LIBS) | |
893 AC_SUBST(MZSCHEME_CFLAGS) | |
1894 | 894 AC_SUBST(MZSCHEME_EXTRA) |
895 AC_SUBST(MZSCHEME_MZC) | |
14 | 896 fi |
897 | |
898 | |
7 | 899 AC_MSG_CHECKING(--enable-perlinterp argument) |
900 AC_ARG_ENABLE(perlinterp, | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
901 [ --enable-perlinterp[=OPTS] Include Perl interpreter. [default=no] [OPTS=no/yes/dynamic]], , |
7 | 902 [enable_perlinterp="no"]) |
903 AC_MSG_RESULT($enable_perlinterp) | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
904 if test "$enable_perlinterp" = "yes" -o "$enable_perlinterp" = "dynamic"; then |
7 | 905 AC_SUBST(vi_cv_path_perl) |
906 AC_PATH_PROG(vi_cv_path_perl, perl) | |
907 if test "X$vi_cv_path_perl" != "X"; then | |
908 AC_MSG_CHECKING(Perl version) | |
909 if $vi_cv_path_perl -e 'require 5.003_01' >/dev/null 2>/dev/null; then | |
910 eval `$vi_cv_path_perl -V:usethreads` | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
911 eval `$vi_cv_path_perl -V:libperl` |
7 | 912 if test "X$usethreads" = "XUNKNOWN" -o "X$usethreads" = "Xundef"; then |
913 badthreads=no | |
914 else | |
915 if $vi_cv_path_perl -e 'require 5.6.0' >/dev/null 2>/dev/null; then | |
916 eval `$vi_cv_path_perl -V:use5005threads` | |
917 if test "X$use5005threads" = "XUNKNOWN" -o "X$use5005threads" = "Xundef"; then | |
918 badthreads=no | |
919 else | |
920 badthreads=yes | |
921 AC_MSG_RESULT(>>> Perl > 5.6 with 5.5 threads cannot be used <<<) | |
922 fi | |
923 else | |
924 badthreads=yes | |
925 AC_MSG_RESULT(>>> Perl 5.5 with threads cannot be used <<<) | |
926 fi | |
927 fi | |
928 if test $badthreads = no; then | |
929 AC_MSG_RESULT(OK) | |
930 eval `$vi_cv_path_perl -V:shrpenv` | |
931 if test "X$shrpenv" = "XUNKNOWN"; then # pre 5.003_04 | |
932 shrpenv="" | |
933 fi | |
934 vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'` | |
935 AC_SUBST(vi_cv_perllib) | |
6143 | 936 vi_cv_perl_extutils=unknown_perl_extutils_path |
937 for extutils_rel_path in ExtUtils vendor_perl/ExtUtils; do | |
938 xsubpp_path="$vi_cv_perllib/$extutils_rel_path/xsubpp" | |
939 if test -f "$xsubpp_path"; then | |
940 vi_cv_perl_xsubpp="$xsubpp_path" | |
941 fi | |
942 done | |
943 AC_SUBST(vi_cv_perl_xsubpp) | |
7 | 944 dnl Remove "-fno-something", it breaks using cproto. |
945 perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \ | |
946 -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[[^ ]]*//'` | |
947 dnl Remove "-lc", it breaks on FreeBSD when using "-pthread". | |
948 perllibs=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed -e 'ldopts' | \ | |
949 sed -e '/Warning/d' -e '/Note (probably harmless)/d' \ | |
950 -e 's/-bE:perl.exp//' -e 's/-lc //'` | |
951 dnl Don't add perl lib to $LIBS: if it's not in LD_LIBRARY_PATH | |
952 dnl a test in configure may fail because of that. | |
953 perlldflags=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed \ | |
954 -e 'ccdlflags' | sed -e 's/-bE:perl.exp//'` | |
955 | |
956 dnl check that compiling a simple program still works with the flags | |
957 dnl added for Perl. | |
958 AC_MSG_CHECKING([if compile and link flags for Perl are sane]) | |
959 cflags_save=$CFLAGS | |
960 libs_save=$LIBS | |
961 ldflags_save=$LDFLAGS | |
962 CFLAGS="$CFLAGS $perlcppflags" | |
963 LIBS="$LIBS $perllibs" | |
4952
9f7b92f232d3
updated for version 7.3.1221
Bram Moolenaar <bram@vim.org>
parents:
4942
diff
changeset
|
964 perlldflags=`echo "$perlldflags" | sed -e 's/^ *//g'` |
7 | 965 LDFLAGS="$perlldflags $LDFLAGS" |
966 AC_TRY_LINK(,[ ], | |
967 AC_MSG_RESULT(yes); perl_ok=yes, | |
968 AC_MSG_RESULT(no: PERL DISABLED); perl_ok=no) | |
969 CFLAGS=$cflags_save | |
970 LIBS=$libs_save | |
971 LDFLAGS=$ldflags_save | |
972 if test $perl_ok = yes; then | |
973 if test "X$perlcppflags" != "X"; then | |
1154 | 974 dnl remove -pipe and -Wxxx, it confuses cproto |
975 PERL_CFLAGS=`echo "$perlcppflags" | sed -e 's/-pipe //' -e 's/-W[[^ ]]*//'` | |
7 | 976 fi |
977 if test "X$perlldflags" != "X"; then | |
5759 | 978 if test "X`echo \"$LDFLAGS\" | $FGREP -e \"$perlldflags\"`" = "X"; then |
4952
9f7b92f232d3
updated for version 7.3.1221
Bram Moolenaar <bram@vim.org>
parents:
4942
diff
changeset
|
979 LDFLAGS="$perlldflags $LDFLAGS" |
9f7b92f232d3
updated for version 7.3.1221
Bram Moolenaar <bram@vim.org>
parents:
4942
diff
changeset
|
980 fi |
7 | 981 fi |
982 PERL_LIBS=$perllibs | |
983 PERL_SRC="auto/if_perl.c if_perlsfio.c" | |
984 PERL_OBJ="objects/if_perl.o objects/if_perlsfio.o" | |
985 PERL_PRO="if_perl.pro if_perlsfio.pro" | |
986 AC_DEFINE(FEAT_PERL) | |
987 fi | |
988 fi | |
989 else | |
990 AC_MSG_RESULT(>>> too old; need Perl version 5.003_01 or later <<<) | |
991 fi | |
992 fi | |
993 | |
994 if test "x$MACOSX" = "xyes"; then | |
574 | 995 dnl Mac OS X 10.2 or later |
7 | 996 dir=/System/Library/Perl |
997 darwindir=$dir/darwin | |
998 if test -d $darwindir; then | |
999 PERL=/usr/bin/perl | |
1000 else | |
1001 dnl Mac OS X 10.3 | |
1002 dir=/System/Library/Perl/5.8.1 | |
1003 darwindir=$dir/darwin-thread-multi-2level | |
1004 if test -d $darwindir; then | |
1005 PERL=/usr/bin/perl | |
1006 fi | |
1007 fi | |
1008 if test -n "$PERL"; then | |
1009 PERL_DIR="$dir" | |
1010 PERL_CFLAGS="-DFEAT_PERL -I$darwindir/CORE" | |
1011 PERL_OBJ="objects/if_perl.o objects/if_perlsfio.o $darwindir/auto/DynaLoader/DynaLoader.a" | |
1012 PERL_LIBS="-L$darwindir/CORE -lperl" | |
1013 fi | |
2389
d680c97481c1
Remove -arch flag from build flags for Perl. (Bjorn Wickler)
Bram Moolenaar <bram@vim.org>
parents:
2388
diff
changeset
|
1014 dnl Perl on Mac OS X 10.5 adds "-arch" flags but these should only |
d680c97481c1
Remove -arch flag from build flags for Perl. (Bjorn Wickler)
Bram Moolenaar <bram@vim.org>
parents:
2388
diff
changeset
|
1015 dnl be included if requested by passing --with-mac-arch to |
d680c97481c1
Remove -arch flag from build flags for Perl. (Bjorn Wickler)
Bram Moolenaar <bram@vim.org>
parents:
2388
diff
changeset
|
1016 dnl configure, so strip these flags first (if present) |
d680c97481c1
Remove -arch flag from build flags for Perl. (Bjorn Wickler)
Bram Moolenaar <bram@vim.org>
parents:
2388
diff
changeset
|
1017 PERL_LIBS=`echo "$PERL_LIBS" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//' -e 's/-arch\ x86_64//'` |
d680c97481c1
Remove -arch flag from build flags for Perl. (Bjorn Wickler)
Bram Moolenaar <bram@vim.org>
parents:
2388
diff
changeset
|
1018 PERL_CFLAGS=`echo "$PERL_CFLAGS" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//' -e 's/-arch\ x86_64//'` |
7 | 1019 fi |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
1020 if test "$enable_perlinterp" = "dynamic"; then |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
1021 if test "$perl_ok" = "yes" -a "X$libperl" != "X"; then |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
1022 AC_DEFINE(DYNAMIC_PERL) |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
1023 PERL_CFLAGS="-DDYNAMIC_PERL_DLL=\\\"$libperl\\\" $PERL_CFLAGS" |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
1024 fi |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2351
diff
changeset
|
1025 fi |
3222 | 1026 |
1027 if test "$fail_if_missing" = "yes" -a "$perl_ok" != "yes"; then | |
1028 AC_MSG_ERROR([could not configure perl]) | |
1029 fi | |
7 | 1030 fi |
1031 AC_SUBST(shrpenv) | |
1032 AC_SUBST(PERL_SRC) | |
1033 AC_SUBST(PERL_OBJ) | |
1034 AC_SUBST(PERL_PRO) | |
1035 AC_SUBST(PERL_CFLAGS) | |
1036 AC_SUBST(PERL_LIBS) | |
1037 | |
1038 AC_MSG_CHECKING(--enable-pythoninterp argument) | |
1039 AC_ARG_ENABLE(pythoninterp, | |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1040 [ --enable-pythoninterp[=OPTS] Include Python interpreter. [default=no] [OPTS=no/yes/dynamic]], , |
7 | 1041 [enable_pythoninterp="no"]) |
1042 AC_MSG_RESULT($enable_pythoninterp) | |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1043 if test "$enable_pythoninterp" = "yes" -o "$enable_pythoninterp" = "dynamic"; then |
6415 | 1044 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then |
1045 AC_MSG_ERROR([cannot use Python with tiny or small features]) | |
1046 fi | |
1047 | |
7 | 1048 dnl -- find the python executable |
4001 | 1049 AC_PATH_PROGS(vi_cv_path_python, python2 python) |
7 | 1050 if test "X$vi_cv_path_python" != "X"; then |
1051 | |
1052 dnl -- get its version number | |
1053 AC_CACHE_CHECK(Python version,vi_cv_var_python_version, | |
1054 [[vi_cv_var_python_version=` | |
1055 ${vi_cv_path_python} -c 'import sys; print sys.version[:3]'` | |
1056 ]]) | |
1057 | |
4833
70b1178dec79
updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents:
4708
diff
changeset
|
1058 dnl -- it must be at least version 2.3 |
70b1178dec79
updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents:
4708
diff
changeset
|
1059 AC_MSG_CHECKING(Python is 2.3 or better) |
7 | 1060 if ${vi_cv_path_python} -c \ |
4833
70b1178dec79
updated for version 7.3.1163
Bram Moolenaar <bram@vim.org>
parents:
4708
diff
changeset
|
1061 "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)" |
7 | 1062 then |
1063 AC_MSG_RESULT(yep) | |
1064 | |
1065 dnl -- find where python thinks it was installed | |
1066 AC_CACHE_CHECK(Python's install prefix,vi_cv_path_python_pfx, | |
1067 [ vi_cv_path_python_pfx=` | |
1068 ${vi_cv_path_python} -c \ | |
1069 "import sys; print sys.prefix"` ]) | |
1070 | |
1071 dnl -- and where it thinks it runs | |
1072 AC_CACHE_CHECK(Python's execution prefix,vi_cv_path_python_epfx, | |
1073 [ vi_cv_path_python_epfx=` | |
1074 ${vi_cv_path_python} -c \ | |
1075 "import sys; print sys.exec_prefix"` ]) | |
1076 | |
1077 dnl -- python's internal library path | |
1078 | |
1079 AC_CACHE_VAL(vi_cv_path_pythonpath, | |
1080 [ vi_cv_path_pythonpath=` | |
1081 unset PYTHONPATH; | |
1082 ${vi_cv_path_python} -c \ | |
1083 "import sys, string; print string.join(sys.path,':')"` ]) | |
1084 | |
1085 dnl -- where the Python implementation library archives are | |
1086 | |
1087 AC_ARG_WITH(python-config-dir, | |
1088 [ --with-python-config-dir=PATH Python's config directory], | |
1089 [ vi_cv_path_python_conf="${withval}" ] ) | |
1090 | |
1091 AC_CACHE_CHECK(Python's configuration directory,vi_cv_path_python_conf, | |
1092 [ | |
1093 vi_cv_path_python_conf= | |
4708
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1094 d=`${vi_cv_path_python} -c "import distutils.sysconfig; print distutils.sysconfig.get_config_var('LIBPL')"` |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1095 if test -d "$d" && test -f "$d/config.c"; then |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1096 vi_cv_path_python_conf="$d" |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1097 else |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1098 for path in "${vi_cv_path_python_pfx}" "${vi_cv_path_python_epfx}"; do |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1099 for subdir in lib64 lib share; do |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1100 d="${path}/${subdir}/python${vi_cv_var_python_version}/config" |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1101 if test -d "$d" && test -f "$d/config.c"; then |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1102 vi_cv_path_python_conf="$d" |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1103 fi |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1104 done |
7 | 1105 done |
4708
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1106 fi |
7 | 1107 ]) |
1108 | |
1109 PYTHON_CONFDIR="${vi_cv_path_python_conf}" | |
1110 | |
1111 if test "X$PYTHON_CONFDIR" = "X"; then | |
1112 AC_MSG_RESULT([can't find it!]) | |
1113 else | |
1114 | |
1115 dnl -- we need to examine Python's config/Makefile too | |
1116 dnl see what the interpreter is built from | |
1117 AC_CACHE_VAL(vi_cv_path_python_plibs, | |
1118 [ | |
1681 | 1119 pwd=`pwd` |
1120 tmp_mkf="$pwd/config-PyMake$$" | |
1121 cat -- "${PYTHON_CONFDIR}/Makefile" - <<'eof' >"${tmp_mkf}" | |
7 | 1122 __: |
2200
99ba9a30755a
Various smaller changes. Updated proto files. Updated dependencies.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1123 @echo "python_BASEMODLIBS='$(BASEMODLIBS)'" |
7 | 1124 @echo "python_LIBS='$(LIBS)'" |
1125 @echo "python_SYSLIBS='$(SYSLIBS)'" | |
1126 @echo "python_LINKFORSHARED='$(LINKFORSHARED)'" | |
3822 | 1127 @echo "python_DLLLIBRARY='$(DLLLIBRARY)'" |
2383
410d7b5916f9
Specify library to load for Python more precisely. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2373
diff
changeset
|
1128 @echo "python_INSTSONAME='$(INSTSONAME)'" |
7 | 1129 eof |
1130 dnl -- delete the lines from make about Entering/Leaving directory | |
1681 | 1131 eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`" |
1132 rm -f -- "${tmp_mkf}" | |
7 | 1133 if test "x$MACOSX" = "xyes" && ${vi_cv_path_python} -c \ |
1134 "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then | |
1135 vi_cv_path_python_plibs="-framework Python" | |
1136 else | |
1137 if test "${vi_cv_var_python_version}" = "1.4"; then | |
1138 vi_cv_path_python_plibs="${PYTHON_CONFDIR}/libModules.a ${PYTHON_CONFDIR}/libPython.a ${PYTHON_CONFDIR}/libObjects.a ${PYTHON_CONFDIR}/libParser.a" | |
1139 else | |
1140 vi_cv_path_python_plibs="-L${PYTHON_CONFDIR} -lpython${vi_cv_var_python_version}" | |
1141 fi | |
2200
99ba9a30755a
Various smaller changes. Updated proto files. Updated dependencies.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1142 vi_cv_path_python_plibs="${vi_cv_path_python_plibs} ${python_BASEMODLIBS} ${python_LIBS} ${python_SYSLIBS} ${python_LINKFORSHARED}" |
7 | 1143 dnl remove -ltermcap, it can conflict with an earlier -lncurses |
1144 vi_cv_path_python_plibs=`echo $vi_cv_path_python_plibs | sed s/-ltermcap//` | |
1145 fi | |
1146 ]) | |
5915 | 1147 AC_CACHE_VAL(vi_cv_dll_name_python, |
1148 [ | |
1149 if test "X$python_DLLLIBRARY" != "X"; then | |
1150 vi_cv_dll_name_python="$python_DLLLIBRARY" | |
1151 else | |
1152 vi_cv_dll_name_python="$python_INSTSONAME" | |
1153 fi | |
1154 ]) | |
1155 | |
7 | 1156 PYTHON_LIBS="${vi_cv_path_python_plibs}" |
1157 if test "${vi_cv_path_python_pfx}" = "${vi_cv_path_python_epfx}"; then | |
4843
ed47632fd149
updated for version 7.3.1168
Bram Moolenaar <bram@vim.org>
parents:
4841
diff
changeset
|
1158 PYTHON_CFLAGS="-I${vi_cv_path_python_pfx}/include/python${vi_cv_var_python_version} -DPYTHON_HOME='\"${vi_cv_path_python_pfx}\"'" |
7 | 1159 else |
4843
ed47632fd149
updated for version 7.3.1168
Bram Moolenaar <bram@vim.org>
parents:
4841
diff
changeset
|
1160 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}\"'" |
7 | 1161 fi |
1162 PYTHON_SRC="if_python.c" | |
3707 | 1163 PYTHON_OBJ="objects/if_python.o" |
7 | 1164 if test "${vi_cv_var_python_version}" = "1.4"; then |
1165 PYTHON_OBJ="$PYTHON_OBJ objects/py_getpath.o" | |
1166 fi | |
2641 | 1167 PYTHON_GETPATH_CFLAGS="-DPYTHONPATH='\"${vi_cv_path_pythonpath}\"' -DPREFIX='\"${vi_cv_path_python_pfx}\"' -DEXEC_PREFIX='\"${vi_cv_path_python_epfx}\"'" |
7 | 1168 |
1169 dnl On FreeBSD linking with "-pthread" is required to use threads. | |
1170 dnl _THREAD_SAFE must be used for compiling then. | |
1171 dnl The "-pthread" is added to $LIBS, so that the following check for | |
1172 dnl sigaltstack() will look in libc_r (it's there in libc!). | |
1173 dnl Otherwise, when using GCC, try adding -pthread to $CFLAGS. GCC | |
1174 dnl will then define target-specific defines, e.g., -D_REENTRANT. | |
1175 dnl Don't do this for Mac OSX, -pthread will generate a warning. | |
1176 AC_MSG_CHECKING([if -pthread should be used]) | |
1177 threadsafe_flag= | |
1178 thread_lib= | |
997 | 1179 dnl if test "x$MACOSX" != "xyes"; then |
1180 if test "`(uname) 2>/dev/null`" != Darwin; then | |
7 | 1181 test "$GCC" = yes && threadsafe_flag="-pthread" |
1182 if test "`(uname) 2>/dev/null`" = FreeBSD; then | |
1183 threadsafe_flag="-D_THREAD_SAFE" | |
1184 thread_lib="-pthread" | |
1185 fi | |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1186 if test "`(uname) 2>/dev/null`" = SunOS; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1187 threadsafe_flag="-pthreads" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1188 fi |
7 | 1189 fi |
1190 libs_save_old=$LIBS | |
1191 if test -n "$threadsafe_flag"; then | |
1192 cflags_save=$CFLAGS | |
1193 CFLAGS="$CFLAGS $threadsafe_flag" | |
1194 LIBS="$LIBS $thread_lib" | |
1195 AC_TRY_LINK(,[ ], | |
2303
6ebb886efe3c
Filter out -pthread for cproto.
Bram Moolenaar <bram@vim.org>
parents:
2285
diff
changeset
|
1196 AC_MSG_RESULT(yes); PYTHON_CFLAGS="$PYTHON_CFLAGS $threadsafe_flag", |
7 | 1197 AC_MSG_RESULT(no); LIBS=$libs_save_old |
1198 ) | |
1199 CFLAGS=$cflags_save | |
1200 else | |
1201 AC_MSG_RESULT(no) | |
1202 fi | |
1203 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1204 dnl Check that compiling a simple program still works with the flags |
7 | 1205 dnl added for Python. |
1206 AC_MSG_CHECKING([if compile and link flags for Python are sane]) | |
1207 cflags_save=$CFLAGS | |
1208 libs_save=$LIBS | |
2303
6ebb886efe3c
Filter out -pthread for cproto.
Bram Moolenaar <bram@vim.org>
parents:
2285
diff
changeset
|
1209 CFLAGS="$CFLAGS $PYTHON_CFLAGS" |
7 | 1210 LIBS="$LIBS $PYTHON_LIBS" |
1211 AC_TRY_LINK(,[ ], | |
1212 AC_MSG_RESULT(yes); python_ok=yes, | |
1213 AC_MSG_RESULT(no: PYTHON DISABLED); python_ok=no) | |
1214 CFLAGS=$cflags_save | |
1215 LIBS=$libs_save | |
1216 if test $python_ok = yes; then | |
1217 AC_DEFINE(FEAT_PYTHON) | |
1218 else | |
1219 LIBS=$libs_save_old | |
1220 PYTHON_SRC= | |
1221 PYTHON_OBJ= | |
1222 PYTHON_LIBS= | |
1223 PYTHON_CFLAGS= | |
1224 fi | |
1225 fi | |
1226 else | |
1227 AC_MSG_RESULT(too old) | |
1228 fi | |
1229 fi | |
3222 | 1230 |
1231 if test "$fail_if_missing" = "yes" -a "$python_ok" != "yes"; then | |
1232 AC_MSG_ERROR([could not configure python]) | |
1233 fi | |
7 | 1234 fi |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1235 |
7 | 1236 AC_SUBST(PYTHON_CONFDIR) |
1237 AC_SUBST(PYTHON_LIBS) | |
1238 AC_SUBST(PYTHON_GETPATH_CFLAGS) | |
1239 AC_SUBST(PYTHON_CFLAGS) | |
1240 AC_SUBST(PYTHON_SRC) | |
1241 AC_SUBST(PYTHON_OBJ) | |
1242 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1243 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1244 AC_MSG_CHECKING(--enable-python3interp argument) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1245 AC_ARG_ENABLE(python3interp, |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1246 [ --enable-python3interp[=OPTS] Include Python3 interpreter. [default=no] [OPTS=no/yes/dynamic]], , |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1247 [enable_python3interp="no"]) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1248 AC_MSG_RESULT($enable_python3interp) |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1249 if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic"; then |
6415 | 1250 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then |
1251 AC_MSG_ERROR([cannot use Python with tiny or small features]) | |
1252 fi | |
1253 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1254 dnl -- find the python3 executable |
4001 | 1255 AC_PATH_PROGS(vi_cv_path_python3, python3 python) |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1256 if test "X$vi_cv_path_python3" != "X"; then |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1257 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1258 dnl -- get its version number |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1259 AC_CACHE_CHECK(Python version,vi_cv_var_python3_version, |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1260 [[vi_cv_var_python3_version=` |
2351
df5fc287a891
Fix configure for Python3 libs and version number. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2331
diff
changeset
|
1261 ${vi_cv_path_python3} -c 'import sys; print(sys.version[:3])'` |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1262 ]]) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1263 |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1264 dnl -- it must be at least version 3 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1265 AC_MSG_CHECKING(Python is 3.0 or better) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1266 if ${vi_cv_path_python3} -c \ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1267 "import sys; sys.exit(${vi_cv_var_python3_version} < 3.0)" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1268 then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1269 AC_MSG_RESULT(yep) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1270 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1271 dnl -- get abiflags for python 3.2 or higher (PEP 3149) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1272 AC_CACHE_CHECK(Python's abiflags,vi_cv_var_python3_abiflags, |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1273 [ |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1274 vi_cv_var_python3_abiflags= |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1275 if ${vi_cv_path_python3} -c \ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1276 "import sys; sys.exit(${vi_cv_var_python3_version} < 3.2)" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1277 then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1278 vi_cv_var_python3_abiflags=`${vi_cv_path_python3} -c \ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1279 "import sys; print(sys.abiflags)"` |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1280 fi ]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1281 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1282 dnl -- find where python3 thinks it was installed |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1283 AC_CACHE_CHECK(Python's install prefix,vi_cv_path_python3_pfx, |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1284 [ vi_cv_path_python3_pfx=` |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1285 ${vi_cv_path_python3} -c \ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1286 "import sys; print(sys.prefix)"` ]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1287 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1288 dnl -- and where it thinks it runs |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1289 AC_CACHE_CHECK(Python's execution prefix,vi_cv_path_python3_epfx, |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1290 [ vi_cv_path_python3_epfx=` |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1291 ${vi_cv_path_python3} -c \ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1292 "import sys; print(sys.exec_prefix)"` ]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1293 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1294 dnl -- python3's internal library path |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1295 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1296 AC_CACHE_VAL(vi_cv_path_python3path, |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1297 [ vi_cv_path_python3path=` |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1298 unset PYTHONPATH; |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1299 ${vi_cv_path_python3} -c \ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1300 "import sys, string; print(':'.join(sys.path))"` ]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1301 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1302 dnl -- where the Python implementation library archives are |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1303 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1304 AC_ARG_WITH(python3-config-dir, |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1305 [ --with-python3-config-dir=PATH Python's config directory], |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1306 [ vi_cv_path_python3_conf="${withval}" ] ) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1307 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1308 AC_CACHE_CHECK(Python's configuration directory,vi_cv_path_python3_conf, |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1309 [ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1310 vi_cv_path_python3_conf= |
5170
ce587b26b8d6
updated for version 7.4a.011
Bram Moolenaar <bram@vim.org>
parents:
5168
diff
changeset
|
1311 config_dir="config-${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags}" |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1312 d=`${vi_cv_path_python3} -c "import distutils.sysconfig; print(distutils.sysconfig.get_config_var('LIBPL'))"` |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1313 if test -d "$d" && test -f "$d/config.c"; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1314 vi_cv_path_python3_conf="$d" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1315 else |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1316 for path in "${vi_cv_path_python3_pfx}" "${vi_cv_path_python3_epfx}"; do |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1317 for subdir in lib64 lib share; do |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1318 d="${path}/${subdir}/python${vi_cv_var_python3_version}/${config_dir}" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1319 if test -d "$d" && test -f "$d/config.c"; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1320 vi_cv_path_python3_conf="$d" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1321 fi |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1322 done |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1323 done |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1324 fi |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1325 ]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1326 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1327 PYTHON3_CONFDIR="${vi_cv_path_python3_conf}" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1328 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1329 if test "X$PYTHON3_CONFDIR" = "X"; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1330 AC_MSG_RESULT([can't find it!]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1331 else |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1332 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1333 dnl -- we need to examine Python's config/Makefile too |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1334 dnl see what the interpreter is built from |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1335 AC_CACHE_VAL(vi_cv_path_python3_plibs, |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1336 [ |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1337 pwd=`pwd` |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1338 tmp_mkf="$pwd/config-PyMake$$" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1339 cat -- "${PYTHON3_CONFDIR}/Makefile" - <<'eof' >"${tmp_mkf}" |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1340 __: |
2351
df5fc287a891
Fix configure for Python3 libs and version number. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2331
diff
changeset
|
1341 @echo "python3_BASEMODLIBS='$(BASEMODLIBS)'" |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1342 @echo "python3_LIBS='$(LIBS)'" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1343 @echo "python3_SYSLIBS='$(SYSLIBS)'" |
3822 | 1344 @echo "python3_DLLLIBRARY='$(DLLLIBRARY)'" |
2383
410d7b5916f9
Specify library to load for Python more precisely. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2373
diff
changeset
|
1345 @echo "python3_INSTSONAME='$(INSTSONAME)'" |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1346 eof |
5915 | 1347 dnl -- delete the lines from make about Entering/Leaving directory |
1348 eval "`cd ${PYTHON3_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`" | |
1349 rm -f -- "${tmp_mkf}" | |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1350 vi_cv_path_python3_plibs="-L${PYTHON3_CONFDIR} -lpython${vi_cv_var_python3_version}${vi_cv_var_python3_abiflags}" |
5915 | 1351 vi_cv_path_python3_plibs="${vi_cv_path_python3_plibs} ${python3_BASEMODLIBS} ${python3_LIBS} ${python3_SYSLIBS}" |
1352 dnl remove -ltermcap, it can conflict with an earlier -lncurses | |
1353 vi_cv_path_python3_plibs=`echo $vi_cv_path_python3_plibs | sed s/-ltermcap//` | |
1354 vi_cv_path_python3_plibs=`echo $vi_cv_path_python3_plibs | sed s/-lffi//` | |
1355 ]) | |
1356 AC_CACHE_VAL(vi_cv_dll_name_python3, | |
1357 [ | |
1358 if test "X$python3_DLLLIBRARY" != "X"; then | |
1359 vi_cv_dll_name_python3="$python3_DLLLIBRARY" | |
1360 else | |
1361 vi_cv_dll_name_python3="$python3_INSTSONAME" | |
1362 fi | |
1363 ]) | |
1364 | |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1365 PYTHON3_LIBS="${vi_cv_path_python3_plibs}" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1366 if test "${vi_cv_path_python3_pfx}" = "${vi_cv_path_python3_epfx}"; then |
4843
ed47632fd149
updated for version 7.3.1168
Bram Moolenaar <bram@vim.org>
parents:
4841
diff
changeset
|
1367 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}\"'" |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1368 else |
4843
ed47632fd149
updated for version 7.3.1168
Bram Moolenaar <bram@vim.org>
parents:
4841
diff
changeset
|
1369 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}\"'" |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1370 fi |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1371 PYTHON3_SRC="if_python3.c" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1372 PYTHON3_OBJ="objects/if_python3.o" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1373 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1374 dnl On FreeBSD linking with "-pthread" is required to use threads. |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1375 dnl _THREAD_SAFE must be used for compiling then. |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1376 dnl The "-pthread" is added to $LIBS, so that the following check for |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1377 dnl sigaltstack() will look in libc_r (it's there in libc!). |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1378 dnl Otherwise, when using GCC, try adding -pthread to $CFLAGS. GCC |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1379 dnl will then define target-specific defines, e.g., -D_REENTRANT. |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1380 dnl Don't do this for Mac OSX, -pthread will generate a warning. |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1381 AC_MSG_CHECKING([if -pthread should be used]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1382 threadsafe_flag= |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1383 thread_lib= |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1384 dnl if test "x$MACOSX" != "xyes"; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1385 if test "`(uname) 2>/dev/null`" != Darwin; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1386 test "$GCC" = yes && threadsafe_flag="-pthread" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1387 if test "`(uname) 2>/dev/null`" = FreeBSD; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1388 threadsafe_flag="-D_THREAD_SAFE" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1389 thread_lib="-pthread" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1390 fi |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1391 if test "`(uname) 2>/dev/null`" = SunOS; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1392 threadsafe_flag="-pthreads" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1393 fi |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1394 fi |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1395 libs_save_old=$LIBS |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1396 if test -n "$threadsafe_flag"; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1397 cflags_save=$CFLAGS |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1398 CFLAGS="$CFLAGS $threadsafe_flag" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1399 LIBS="$LIBS $thread_lib" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1400 AC_TRY_LINK(,[ ], |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1401 AC_MSG_RESULT(yes); PYTHON3_CFLAGS="$PYTHON3_CFLAGS $threadsafe_flag", |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1402 AC_MSG_RESULT(no); LIBS=$libs_save_old |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1403 ) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1404 CFLAGS=$cflags_save |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1405 else |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1406 AC_MSG_RESULT(no) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1407 fi |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1408 |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1409 dnl check that compiling a simple program still works with the flags |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1410 dnl added for Python. |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1411 AC_MSG_CHECKING([if compile and link flags for Python 3 are sane]) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1412 cflags_save=$CFLAGS |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1413 libs_save=$LIBS |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1414 CFLAGS="$CFLAGS $PYTHON3_CFLAGS" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1415 LIBS="$LIBS $PYTHON3_LIBS" |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1416 AC_TRY_LINK(,[ ], |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1417 AC_MSG_RESULT(yes); python3_ok=yes, |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1418 AC_MSG_RESULT(no: PYTHON3 DISABLED); python3_ok=no) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1419 CFLAGS=$cflags_save |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1420 LIBS=$libs_save |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1421 if test "$python3_ok" = yes; then |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1422 AC_DEFINE(FEAT_PYTHON3) |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1423 else |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1424 LIBS=$libs_save_old |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1425 PYTHON3_SRC= |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1426 PYTHON3_OBJ= |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1427 PYTHON3_LIBS= |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1428 PYTHON3_CFLAGS= |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1429 fi |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1430 fi |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1431 else |
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
1432 AC_MSG_RESULT(too old) |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1433 fi |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1434 fi |
4895
8b46c37c4b84
updated for version 7.3.1193
Bram Moolenaar <bram@vim.org>
parents:
4843
diff
changeset
|
1435 if test "$fail_if_missing" = "yes" -a "$python3_ok" != "yes"; then |
8b46c37c4b84
updated for version 7.3.1193
Bram Moolenaar <bram@vim.org>
parents:
4843
diff
changeset
|
1436 AC_MSG_ERROR([could not configure python3]) |
8b46c37c4b84
updated for version 7.3.1193
Bram Moolenaar <bram@vim.org>
parents:
4843
diff
changeset
|
1437 fi |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1438 fi |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1439 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1440 AC_SUBST(PYTHON3_CONFDIR) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1441 AC_SUBST(PYTHON3_LIBS) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1442 AC_SUBST(PYTHON3_CFLAGS) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1443 AC_SUBST(PYTHON3_SRC) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1444 AC_SUBST(PYTHON3_OBJ) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1445 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1446 dnl if python2.x and python3.x are enabled one can only link in code |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1447 dnl with dlopen(), dlsym(), dlclose() |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1448 if test "$python_ok" = yes && test "$python3_ok" = yes; then |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1449 AC_DEFINE(DYNAMIC_PYTHON) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1450 AC_DEFINE(DYNAMIC_PYTHON3) |
2641 | 1451 AC_MSG_CHECKING(whether we can do without RTLD_GLOBAL for Python) |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1452 cflags_save=$CFLAGS |
2641 | 1453 CFLAGS="$CFLAGS $PYTHON_CFLAGS" |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1454 ldflags_save=$LDFLAGS |
3038 | 1455 dnl -ldl must go first to make this work on Archlinux (Roland Puntaier) |
1456 LDFLAGS="-ldl $LDFLAGS" | |
5757 | 1457 AC_RUN_IFELSE([AC_LANG_SOURCE([ |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1458 #include <dlfcn.h> |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1459 /* If this program fails, then RTLD_GLOBAL is needed. |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1460 * RTLD_GLOBAL will be used and then it is not possible to |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1461 * have both python versions enabled in the same vim instance. |
4352 | 1462 * Only the first python version used will be switched on. |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1463 */ |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1464 |
2641 | 1465 int no_rtl_global_needed_for(char *python_instsoname, char *prefix) |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1466 { |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1467 int needed = 0; |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1468 void* pylib = dlopen(python_instsoname, RTLD_LAZY); |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1469 if (pylib != 0) |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1470 { |
2641 | 1471 void (*pfx)(char *home) = dlsym(pylib, "Py_SetPythonHome"); |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1472 void (*init)(void) = dlsym(pylib, "Py_Initialize"); |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1473 int (*simple)(char*) = dlsym(pylib, "PyRun_SimpleString"); |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1474 void (*final)(void) = dlsym(pylib, "Py_Finalize"); |
2641 | 1475 (*pfx)(prefix); |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1476 (*init)(); |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1477 needed = (*simple)("import termios") == -1; |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1478 (*final)(); |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1479 dlclose(pylib); |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1480 } |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1481 return !needed; |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1482 } |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1483 |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1484 int main(int argc, char** argv) |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1485 { |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1486 int not_needed = 0; |
5915 | 1487 if (no_rtl_global_needed_for("${vi_cv_dll_name_python}", "${vi_cv_path_python_pfx}")) |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1488 not_needed = 1; |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1489 return !not_needed; |
5757 | 1490 }])], |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1491 [AC_MSG_RESULT(yes);AC_DEFINE(PY_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)]) |
2641 | 1492 |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1493 CFLAGS=$cflags_save |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1494 LDFLAGS=$ldflags_save |
2641 | 1495 |
1496 AC_MSG_CHECKING(whether we can do without RTLD_GLOBAL for Python3) | |
1497 cflags_save=$CFLAGS | |
1498 CFLAGS="$CFLAGS $PYTHON3_CFLAGS" | |
1499 ldflags_save=$LDFLAGS | |
3038 | 1500 dnl -ldl must go first to make this work on Archlinux (Roland Puntaier) |
1501 LDFLAGS="-ldl $LDFLAGS" | |
5757 | 1502 AC_RUN_IFELSE([AC_LANG_SOURCE([ |
2641 | 1503 #include <dlfcn.h> |
1504 #include <wchar.h> | |
1505 /* If this program fails, then RTLD_GLOBAL is needed. | |
1506 * RTLD_GLOBAL will be used and then it is not possible to | |
1507 * have both python versions enabled in the same vim instance. | |
4352 | 1508 * Only the first python version used will be switched on. |
2641 | 1509 */ |
1510 | |
1511 int no_rtl_global_needed_for(char *python_instsoname, wchar_t *prefix) | |
1512 { | |
1513 int needed = 0; | |
1514 void* pylib = dlopen(python_instsoname, RTLD_LAZY); | |
1515 if (pylib != 0) | |
1516 { | |
1517 void (*pfx)(wchar_t *home) = dlsym(pylib, "Py_SetPythonHome"); | |
1518 void (*init)(void) = dlsym(pylib, "Py_Initialize"); | |
1519 int (*simple)(char*) = dlsym(pylib, "PyRun_SimpleString"); | |
1520 void (*final)(void) = dlsym(pylib, "Py_Finalize"); | |
1521 (*pfx)(prefix); | |
1522 (*init)(); | |
1523 needed = (*simple)("import termios") == -1; | |
1524 (*final)(); | |
1525 dlclose(pylib); | |
1526 } | |
1527 return !needed; | |
1528 } | |
1529 | |
1530 int main(int argc, char** argv) | |
1531 { | |
1532 int not_needed = 0; | |
5915 | 1533 if (no_rtl_global_needed_for("${vi_cv_dll_name_python3}", L"${vi_cv_path_python3_pfx}")) |
2641 | 1534 not_needed = 1; |
1535 return !not_needed; | |
5757 | 1536 }])], |
2641 | 1537 [AC_MSG_RESULT(yes);AC_DEFINE(PY3_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)]) |
1538 | |
1539 CFLAGS=$cflags_save | |
1540 LDFLAGS=$ldflags_save | |
1541 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1542 PYTHON_SRC="if_python.c" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1543 PYTHON_OBJ="objects/if_python.o" |
5915 | 1544 PYTHON_CFLAGS="$PYTHON_CFLAGS -DDYNAMIC_PYTHON_DLL=\\\"${vi_cv_dll_name_python}\\\"" |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1545 PYTHON_LIBS= |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1546 PYTHON3_SRC="if_python3.c" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1547 PYTHON3_OBJ="objects/if_python3.o" |
5915 | 1548 PYTHON3_CFLAGS="$PYTHON3_CFLAGS -DDYNAMIC_PYTHON3_DLL=\\\"${vi_cv_dll_name_python3}\\\"" |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1549 PYTHON3_LIBS= |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1550 elif test "$python_ok" = yes && test "$enable_pythoninterp" = "dynamic"; then |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1551 AC_DEFINE(DYNAMIC_PYTHON) |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1552 PYTHON_SRC="if_python.c" |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1553 PYTHON_OBJ="objects/if_python.o" |
5915 | 1554 PYTHON_CFLAGS="$PYTHON_CFLAGS -DDYNAMIC_PYTHON_DLL=\\\"${vi_cv_dll_name_python}\\\"" |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1555 PYTHON_LIBS= |
5168
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1556 elif test "$python_ok" = yes; then |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1557 dnl Check that adding -fPIE works. It may be needed when using a static |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1558 dnl Python library. |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1559 AC_MSG_CHECKING([if -fPIE can be added for Python]) |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1560 cflags_save=$CFLAGS |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1561 libs_save=$LIBS |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1562 CFLAGS="$CFLAGS $PYTHON_CFLAGS -fPIE" |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1563 LIBS="$LIBS $PYTHON_LIBS" |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1564 AC_TRY_LINK(,[ ], |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1565 AC_MSG_RESULT(yes); fpie_ok=yes, |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1566 AC_MSG_RESULT(no); fpie_ok=no) |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1567 CFLAGS=$cflags_save |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1568 LIBS=$libs_save |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1569 if test $fpie_ok = yes; then |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1570 PYTHON_CFLAGS="$PYTHON_CFLAGS -fPIE" |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1571 fi |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1572 elif test "$python3_ok" = yes && test "$enable_python3interp" = "dynamic"; then |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1573 AC_DEFINE(DYNAMIC_PYTHON3) |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1574 PYTHON3_SRC="if_python3.c" |
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1575 PYTHON3_OBJ="objects/if_python3.o" |
5915 | 1576 PYTHON3_CFLAGS="$PYTHON3_CFLAGS -DDYNAMIC_PYTHON3_DLL=\\\"${vi_cv_dll_name_python3}\\\"" |
2554
7abef60aca22
Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2402
diff
changeset
|
1577 PYTHON3_LIBS= |
5168
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1578 elif test "$python3_ok" = yes; then |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1579 dnl Check that adding -fPIE works. It may be needed when using a static |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1580 dnl Python library. |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1581 AC_MSG_CHECKING([if -fPIE can be added for Python3]) |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1582 cflags_save=$CFLAGS |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1583 libs_save=$LIBS |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1584 CFLAGS="$CFLAGS $PYTHON3_CFLAGS -fPIE" |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1585 LIBS="$LIBS $PYTHON3_LIBS" |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1586 AC_TRY_LINK(,[ ], |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1587 AC_MSG_RESULT(yes); fpie_ok=yes, |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1588 AC_MSG_RESULT(no); fpie_ok=no) |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1589 CFLAGS=$cflags_save |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1590 LIBS=$libs_save |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1591 if test $fpie_ok = yes; then |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1592 PYTHON3_CFLAGS="$PYTHON3_CFLAGS -fPIE" |
a4e08386a6aa
updated for version 7.4a.010
Bram Moolenaar <bram@vim.org>
parents:
5114
diff
changeset
|
1593 fi |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1594 fi |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1595 |
7 | 1596 AC_MSG_CHECKING(--enable-tclinterp argument) |
1597 AC_ARG_ENABLE(tclinterp, | |
1598 [ --enable-tclinterp Include Tcl interpreter.], , | |
1599 [enable_tclinterp="no"]) | |
1600 AC_MSG_RESULT($enable_tclinterp) | |
1601 | |
1602 if test "$enable_tclinterp" = "yes"; then | |
1603 | |
1464 | 1604 dnl on FreeBSD tclsh is a silly script, look for tclsh8.[5420] |
7 | 1605 AC_MSG_CHECKING(--with-tclsh argument) |
1606 AC_ARG_WITH(tclsh, [ --with-tclsh=PATH which tclsh to use (default: tclsh8.0)], | |
1607 tclsh_name="$withval"; AC_MSG_RESULT($tclsh_name), | |
1464 | 1608 tclsh_name="tclsh8.5"; AC_MSG_RESULT(no)) |
7 | 1609 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name) |
1610 AC_SUBST(vi_cv_path_tcl) | |
1611 | |
1464 | 1612 dnl when no specific version specified, also try 8.4, 8.2 and 8.0 |
1613 if test "X$vi_cv_path_tcl" = "X" -a $tclsh_name = "tclsh8.5"; then | |
1614 tclsh_name="tclsh8.4" | |
1615 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name) | |
1616 fi | |
132 | 1617 if test "X$vi_cv_path_tcl" = "X" -a $tclsh_name = "tclsh8.4"; then |
7 | 1618 tclsh_name="tclsh8.2" |
1619 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name) | |
1620 fi | |
132 | 1621 if test "X$vi_cv_path_tcl" = "X" -a $tclsh_name = "tclsh8.2"; then |
1622 tclsh_name="tclsh8.0" | |
1623 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name) | |
1624 fi | |
7 | 1625 dnl still didn't find it, try without version number |
1626 if test "X$vi_cv_path_tcl" = "X"; then | |
1627 tclsh_name="tclsh" | |
1628 AC_PATH_PROG(vi_cv_path_tcl, $tclsh_name) | |
1629 fi | |
1630 if test "X$vi_cv_path_tcl" != "X"; then | |
1631 AC_MSG_CHECKING(Tcl version) | |
1632 if echo 'exit [[expr [info tclversion] < 8.0]]' | $vi_cv_path_tcl - ; then | |
1633 tclver=`echo 'puts [[info tclversion]]' | $vi_cv_path_tcl -` | |
1634 AC_MSG_RESULT($tclver - OK); | |
1635 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 -` | |
1636 | |
1637 AC_MSG_CHECKING(for location of Tcl include) | |
1638 if test "x$MACOSX" != "xyes"; then | |
1542 | 1639 tclinc="$tclloc/include $tclloc/include/tcl $tclloc/include/tcl$tclver /usr/local/include /usr/local/include/tcl$tclver /usr/include /usr/include/tcl$tclver" |
7 | 1640 else |
1641 dnl For Mac OS X 10.3, use the OS-provided framework location | |
1642 tclinc="/System/Library/Frameworks/Tcl.framework/Headers" | |
1643 fi | |
1542 | 1644 TCL_INC= |
7 | 1645 for try in $tclinc; do |
1646 if test -f "$try/tcl.h"; then | |
1647 AC_MSG_RESULT($try/tcl.h) | |
1648 TCL_INC=$try | |
1649 break | |
1650 fi | |
1651 done | |
1652 if test -z "$TCL_INC"; then | |
1653 AC_MSG_RESULT(<not found>) | |
1654 SKIP_TCL=YES | |
1655 fi | |
1656 if test -z "$SKIP_TCL"; then | |
1657 AC_MSG_CHECKING(for location of tclConfig.sh script) | |
1658 if test "x$MACOSX" != "xyes"; then | |
1659 tclcnf=`echo $tclinc | sed s/include/lib/g` | |
1464 | 1660 tclcnf="$tclcnf `echo $tclinc | sed s/include/lib64/g`" |
7 | 1661 else |
1662 dnl For Mac OS X 10.3, use the OS-provided framework location | |
1663 tclcnf="/System/Library/Frameworks/Tcl.framework" | |
1664 fi | |
1665 for try in $tclcnf; do | |
1666 if test -f $try/tclConfig.sh; then | |
1667 AC_MSG_RESULT($try/tclConfig.sh) | |
1668 . $try/tclConfig.sh | |
1669 dnl use eval, because tcl 8.2 includes ${TCL_DBGX} | |
1670 TCL_LIBS=`eval echo "$TCL_LIB_SPEC $TCL_LIBS"` | |
1671 dnl Use $TCL_DEFS for -D_THREAD_SAFE et al. But only use the | |
132 | 1672 dnl "-D_ABC" items. Watch out for -DFOO=long\ long. |
1679 | 1673 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'` |
7 | 1674 break |
1675 fi | |
1676 done | |
1677 if test -z "$TCL_LIBS"; then | |
1678 AC_MSG_RESULT(<not found>) | |
1679 AC_MSG_CHECKING(for Tcl library by myself) | |
1680 tcllib=`echo $tclinc | sed s/include/lib/g` | |
1464 | 1681 tcllib="$tcllib `echo $tclinc | sed s/include/lib64/g`" |
7 | 1682 for ext in .so .a ; do |
1683 for ver in "" $tclver ; do | |
1684 for try in $tcllib ; do | |
1685 trylib=tcl$ver$ext | |
1686 if test -f $try/lib$trylib ; then | |
1687 AC_MSG_RESULT($try/lib$trylib) | |
1688 TCL_LIBS="-L$try -ltcl$ver -ldl -lm" | |
1689 if test "`(uname) 2>/dev/null`" = SunOS && | |
1690 uname -r | grep '^5' >/dev/null; then | |
1691 TCL_LIBS="$TCL_LIBS -R $try" | |
1692 fi | |
1693 break 3 | |
1694 fi | |
1695 done | |
1696 done | |
1697 done | |
1698 if test -z "$TCL_LIBS"; then | |
1699 AC_MSG_RESULT(<not found>) | |
1700 SKIP_TCL=YES | |
1701 fi | |
1702 fi | |
1703 if test -z "$SKIP_TCL"; then | |
1704 AC_DEFINE(FEAT_TCL) | |
1705 TCL_SRC=if_tcl.c | |
1706 TCL_OBJ=objects/if_tcl.o | |
1707 TCL_PRO=if_tcl.pro | |
1708 TCL_CFLAGS="-I$TCL_INC $TCL_DEFS" | |
1709 fi | |
1710 fi | |
1711 else | |
1712 AC_MSG_RESULT(too old; need Tcl version 8.0 or later) | |
1713 fi | |
1714 fi | |
3222 | 1715 if test "$fail_if_missing" = "yes" -a -z "$TCL_SRC"; then |
1716 AC_MSG_ERROR([could not configure Tcl]) | |
1717 fi | |
7 | 1718 fi |
1719 AC_SUBST(TCL_SRC) | |
1720 AC_SUBST(TCL_OBJ) | |
1721 AC_SUBST(TCL_PRO) | |
1722 AC_SUBST(TCL_CFLAGS) | |
1723 AC_SUBST(TCL_LIBS) | |
1724 | |
1725 AC_MSG_CHECKING(--enable-rubyinterp argument) | |
1726 AC_ARG_ENABLE(rubyinterp, | |
2621 | 1727 [ --enable-rubyinterp[=OPTS] Include Ruby interpreter. [default=no] [OPTS=no/yes/dynamic]], , |
7 | 1728 [enable_rubyinterp="no"]) |
1729 AC_MSG_RESULT($enable_rubyinterp) | |
2621 | 1730 if test "$enable_rubyinterp" = "yes" -o "$enable_rubyinterp" = "dynamic"; then |
6415 | 1731 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then |
1732 AC_MSG_ERROR([cannot use Ruby with tiny or small features]) | |
1733 fi | |
1734 | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2019
diff
changeset
|
1735 AC_MSG_CHECKING(--with-ruby-command argument) |
2801 | 1736 AC_SUBST(vi_cv_path_ruby) |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2019
diff
changeset
|
1737 AC_ARG_WITH(ruby-command, [ --with-ruby-command=RUBY name of the Ruby command (default: ruby)], |
2801 | 1738 RUBY_CMD="$withval"; vi_cv_path_ruby="$withval"; AC_MSG_RESULT($RUBY_CMD), |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2019
diff
changeset
|
1739 RUBY_CMD="ruby"; AC_MSG_RESULT(defaulting to $RUBY_CMD)) |
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2019
diff
changeset
|
1740 AC_PATH_PROG(vi_cv_path_ruby, $RUBY_CMD) |
7 | 1741 if test "X$vi_cv_path_ruby" != "X"; then |
1742 AC_MSG_CHECKING(Ruby version) | |
189 | 1743 if $vi_cv_path_ruby -e '(VERSION rescue RUBY_VERSION) >= "1.6.0" or exit 1' >/dev/null 2>/dev/null; then |
7 | 1744 AC_MSG_RESULT(OK) |
3843 | 1745 AC_MSG_CHECKING(Ruby rbconfig) |
1746 ruby_rbconfig="RbConfig" | |
1747 if ! $vi_cv_path_ruby -r rbconfig -e 'RbConfig' >/dev/null 2>/dev/null; then | |
1748 ruby_rbconfig="Config" | |
1749 fi | |
1750 AC_MSG_RESULT($ruby_rbconfig) | |
7 | 1751 AC_MSG_CHECKING(Ruby header files) |
3843 | 1752 rubyhdrdir=`$vi_cv_path_ruby -r mkmf -e "print $ruby_rbconfig::CONFIG[['rubyhdrdir']] || $ruby_rbconfig::CONFIG[['archdir']] || \\$hdrdir" 2>/dev/null` |
7 | 1753 if test "X$rubyhdrdir" != "X"; then |
1754 AC_MSG_RESULT($rubyhdrdir) | |
1755 RUBY_CFLAGS="-I$rubyhdrdir" | |
5755 | 1756 rubyarchdir=`$vi_cv_path_ruby -r rbconfig -e "print ($ruby_rbconfig::CONFIG.has_key? 'rubyarchhdrdir') ? $ruby_rbconfig::CONFIG[['rubyarchhdrdir']] : '$rubyhdrdir/'+$ruby_rbconfig::CONFIG[['arch']]"` |
1757 if test -d "$rubyarchdir"; then | |
1758 RUBY_CFLAGS="$RUBY_CFLAGS -I$rubyarchdir" | |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2019
diff
changeset
|
1759 fi |
3843 | 1760 rubyversion=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG[['ruby_version']].gsub(/\./, '')[[0,2]]"` |
5280
ba37e955913e
updated for version 7.4b.016
Bram Moolenaar <bram@vim.org>
parents:
5240
diff
changeset
|
1761 if test "X$rubyversion" = "X"; then |
ba37e955913e
updated for version 7.4b.016
Bram Moolenaar <bram@vim.org>
parents:
5240
diff
changeset
|
1762 rubyversion=`$vi_cv_path_ruby -e "print ((VERSION rescue RUBY_VERSION)).gsub(/\./, '')[[0,2]]"` |
ba37e955913e
updated for version 7.4b.016
Bram Moolenaar <bram@vim.org>
parents:
5240
diff
changeset
|
1763 fi |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2019
diff
changeset
|
1764 RUBY_CFLAGS="$RUBY_CFLAGS -DRUBY_VERSION=$rubyversion" |
3843 | 1765 rubylibs=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG[['LIBS']]"` |
7 | 1766 if test "X$rubylibs" != "X"; then |
1767 RUBY_LIBS="$rubylibs" | |
1768 fi | |
3843 | 1769 librubyarg=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig.expand($ruby_rbconfig::CONFIG[['LIBRUBYARG']])"` |
1770 librubya=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig.expand($ruby_rbconfig::CONFIG[['LIBRUBY_A']])"` | |
4708
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1771 rubylibdir=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig.expand($ruby_rbconfig::CONFIG[['libdir']])"` |
2801 | 1772 if test -f "$rubylibdir/$librubya"; then |
1773 librubyarg="$librubyarg" | |
4708
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1774 RUBY_LIBS="$RUBY_LIBS -L$rubylibdir" |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1775 elif test "$librubyarg" = "libruby.a"; then |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1776 dnl required on Mac OS 10.3 where libruby.a doesn't exist |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1777 librubyarg="-lruby" |
761e42cc79c2
updated for version 7.3.1101
Bram Moolenaar <bram@vim.org>
parents:
4399
diff
changeset
|
1778 RUBY_LIBS="$RUBY_LIBS -L$rubylibdir" |
7 | 1779 fi |
1780 | |
1781 if test "X$librubyarg" != "X"; then | |
1782 RUBY_LIBS="$librubyarg $RUBY_LIBS" | |
1783 fi | |
3843 | 1784 rubyldflags=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG[['LDFLAGS']]"` |
7 | 1785 if test "X$rubyldflags" != "X"; then |
1939 | 1786 dnl Ruby on Mac OS X 10.5 adds "-arch" flags but these should only |
1787 dnl be included if requested by passing --with-mac-arch to | |
1788 dnl configure, so strip these flags first (if present) | |
2389
d680c97481c1
Remove -arch flag from build flags for Perl. (Bjorn Wickler)
Bram Moolenaar <bram@vim.org>
parents:
2388
diff
changeset
|
1789 rubyldflags=`echo "$rubyldflags" | sed -e 's/-arch\ ppc//' -e 's/-arch\ i386//' -e 's/-arch\ x86_64//'` |
1939 | 1790 if test "X$rubyldflags" != "X"; then |
5759 | 1791 if test "X`echo \"$LDFLAGS\" | $FGREP -e \"$rubyldflags\"`" = "X"; then |
4952
9f7b92f232d3
updated for version 7.3.1221
Bram Moolenaar <bram@vim.org>
parents:
4942
diff
changeset
|
1792 LDFLAGS="$rubyldflags $LDFLAGS" |
9f7b92f232d3
updated for version 7.3.1221
Bram Moolenaar <bram@vim.org>
parents:
4942
diff
changeset
|
1793 fi |
1939 | 1794 fi |
7 | 1795 fi |
1796 RUBY_SRC="if_ruby.c" | |
1797 RUBY_OBJ="objects/if_ruby.o" | |
1798 RUBY_PRO="if_ruby.pro" | |
1799 AC_DEFINE(FEAT_RUBY) | |
2621 | 1800 if test "$enable_rubyinterp" = "dynamic"; then |
3843 | 1801 libruby=`$vi_cv_path_ruby -r rbconfig -e "puts $ruby_rbconfig::CONFIG[['LIBRUBY_SO']]"` |
2621 | 1802 AC_DEFINE(DYNAMIC_RUBY) |
1803 RUBY_CFLAGS="-DDYNAMIC_RUBY_DLL=\\\"$libruby\\\" -DDYNAMIC_RUBY_VER=$rubyversion $RUBY_CFLAGS" | |
1804 RUBY_LIBS= | |
1805 fi | |
7 | 1806 else |
2077
d8983769c9dd
updated for version 7.2.361
Bram Moolenaar <bram@zimbu.org>
parents:
2019
diff
changeset
|
1807 AC_MSG_RESULT(not found; disabling Ruby) |
7 | 1808 fi |
1809 else | |
1810 AC_MSG_RESULT(too old; need Ruby version 1.6.0 or later) | |
1811 fi | |
1812 fi | |
3222 | 1813 |
1814 if test "$fail_if_missing" = "yes" -a -z "$RUBY_OBJ"; then | |
1815 AC_MSG_ERROR([could not configure Ruby]) | |
1816 fi | |
7 | 1817 fi |
1818 AC_SUBST(RUBY_SRC) | |
1819 AC_SUBST(RUBY_OBJ) | |
1820 AC_SUBST(RUBY_PRO) | |
1821 AC_SUBST(RUBY_CFLAGS) | |
1822 AC_SUBST(RUBY_LIBS) | |
1823 | |
1824 AC_MSG_CHECKING(--enable-cscope argument) | |
1825 AC_ARG_ENABLE(cscope, | |
1826 [ --enable-cscope Include cscope interface.], , | |
1827 [enable_cscope="no"]) | |
1828 AC_MSG_RESULT($enable_cscope) | |
1829 if test "$enable_cscope" = "yes"; then | |
1830 AC_DEFINE(FEAT_CSCOPE) | |
1831 fi | |
1832 | |
1833 AC_MSG_CHECKING(--enable-workshop argument) | |
1834 AC_ARG_ENABLE(workshop, | |
1835 [ --enable-workshop Include Sun Visual Workshop support.], , | |
1836 [enable_workshop="no"]) | |
1837 AC_MSG_RESULT($enable_workshop) | |
1838 if test "$enable_workshop" = "yes"; then | |
1839 AC_DEFINE(FEAT_SUN_WORKSHOP) | |
1840 WORKSHOP_SRC="workshop.c integration.c" | |
1841 AC_SUBST(WORKSHOP_SRC) | |
1842 WORKSHOP_OBJ="objects/workshop.o objects/integration.o" | |
1843 AC_SUBST(WORKSHOP_OBJ) | |
1844 if test "${enable_gui-xxx}" = xxx; then | |
1845 enable_gui=motif | |
1846 fi | |
1847 fi | |
1848 | |
1849 AC_MSG_CHECKING(--disable-netbeans argument) | |
1850 AC_ARG_ENABLE(netbeans, | |
1851 [ --disable-netbeans Disable NetBeans integration support.], | |
1852 , [enable_netbeans="yes"]) | |
1853 if test "$enable_netbeans" = "yes"; then | |
1854 AC_MSG_RESULT(no) | |
1855 dnl On Solaris we need the socket and nsl library. | |
1856 AC_CHECK_LIB(socket, socket) | |
1857 AC_CHECK_LIB(nsl, gethostbyname) | |
1858 AC_MSG_CHECKING(whether compiling netbeans integration is possible) | |
1859 AC_TRY_LINK([ | |
1860 #include <stdio.h> | |
1861 #include <stdlib.h> | |
1862 #include <stdarg.h> | |
1863 #include <fcntl.h> | |
1864 #include <netdb.h> | |
1865 #include <netinet/in.h> | |
1866 #include <errno.h> | |
1867 #include <sys/types.h> | |
1868 #include <sys/socket.h> | |
1869 /* Check bitfields */ | |
1870 struct nbbuf { | |
1871 unsigned int initDone:1; | |
1872 ushort signmaplen; | |
1873 }; | |
1874 ], [ | |
1875 /* Check creating a socket. */ | |
1876 struct sockaddr_in server; | |
1877 (void)socket(AF_INET, SOCK_STREAM, 0); | |
1878 (void)htons(100); | |
1879 (void)gethostbyname("microsoft.com"); | |
1880 if (errno == ECONNREFUSED) | |
1881 (void)connect(1, (struct sockaddr *)&server, sizeof(server)); | |
1882 ], | |
1883 AC_MSG_RESULT(yes), | |
1884 AC_MSG_RESULT(no); enable_netbeans="no") | |
1885 else | |
1886 AC_MSG_RESULT(yes) | |
1887 fi | |
1888 if test "$enable_netbeans" = "yes"; then | |
1889 AC_DEFINE(FEAT_NETBEANS_INTG) | |
1890 NETBEANS_SRC="netbeans.c" | |
1891 AC_SUBST(NETBEANS_SRC) | |
1892 NETBEANS_OBJ="objects/netbeans.o" | |
1893 AC_SUBST(NETBEANS_OBJ) | |
1894 fi | |
1895 | |
1896 AC_MSG_CHECKING(--enable-sniff argument) | |
1897 AC_ARG_ENABLE(sniff, | |
1898 [ --enable-sniff Include Sniff interface.], , | |
1899 [enable_sniff="no"]) | |
1900 AC_MSG_RESULT($enable_sniff) | |
1901 if test "$enable_sniff" = "yes"; then | |
1902 AC_DEFINE(FEAT_SNIFF) | |
1903 SNIFF_SRC="if_sniff.c" | |
1904 AC_SUBST(SNIFF_SRC) | |
1905 SNIFF_OBJ="objects/if_sniff.o" | |
1906 AC_SUBST(SNIFF_OBJ) | |
1907 fi | |
1908 | |
1909 AC_MSG_CHECKING(--enable-multibyte argument) | |
1910 AC_ARG_ENABLE(multibyte, | |
1911 [ --enable-multibyte Include multibyte editing support.], , | |
1912 [enable_multibyte="no"]) | |
1913 AC_MSG_RESULT($enable_multibyte) | |
1914 if test "$enable_multibyte" = "yes"; then | |
1915 AC_DEFINE(FEAT_MBYTE) | |
1916 fi | |
1917 | |
1918 AC_MSG_CHECKING(--enable-hangulinput argument) | |
1919 AC_ARG_ENABLE(hangulinput, | |
1920 [ --enable-hangulinput Include Hangul input support.], , | |
1921 [enable_hangulinput="no"]) | |
1922 AC_MSG_RESULT($enable_hangulinput) | |
1923 | |
1924 AC_MSG_CHECKING(--enable-xim argument) | |
1925 AC_ARG_ENABLE(xim, | |
1926 [ --enable-xim Include XIM input support.], | |
1927 AC_MSG_RESULT($enable_xim), | |
1928 [enable_xim="auto"; AC_MSG_RESULT(defaulting to auto)]) | |
1929 | |
1930 AC_MSG_CHECKING(--enable-fontset argument) | |
1931 AC_ARG_ENABLE(fontset, | |
1932 [ --enable-fontset Include X fontset output support.], , | |
1933 [enable_fontset="no"]) | |
1934 AC_MSG_RESULT($enable_fontset) | |
1935 dnl defining FEAT_XFONTSET is delayed, so that it can be disabled for no GUI | |
1936 | |
1937 test -z "$with_x" && with_x=yes | |
1938 test "${enable_gui-yes}" != no -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && with_x=yes | |
1939 if test "$with_x" = no; then | |
1940 AC_MSG_RESULT(defaulting to: don't HAVE_X11) | |
1941 else | |
1942 dnl Do this check early, so that its failure can override user requests. | |
1943 | |
1944 AC_PATH_PROG(xmkmfpath, xmkmf) | |
1945 | |
1946 AC_PATH_XTRA | |
1947 | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
1948 dnl On z/OS Unix the X libraries are DLLs. To use them the code must |
7 | 1949 dnl be compiled with a special option. |
1950 dnl Also add SM, ICE and Xmu to X_EXTRA_LIBS. | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
1951 if test "$zOSUnix" = "yes"; then |
7 | 1952 CFLAGS="$CFLAGS -W c,dll" |
1953 LDFLAGS="$LDFLAGS -W l,dll" | |
1954 X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE -lXmu" | |
1955 fi | |
1956 | |
1957 dnl On my HPUX system the X include dir is found, but the lib dir not. | |
1958 dnl This is a desparate try to fix this. | |
1959 | |
1960 if test -d "$x_includes" && test ! -d "$x_libraries"; then | |
1961 x_libraries=`echo "$x_includes" | sed s/include/lib/` | |
1962 AC_MSG_RESULT(Corrected X libraries to $x_libraries) | |
1963 X_LIBS="$X_LIBS -L$x_libraries" | |
1964 if test "`(uname) 2>/dev/null`" = SunOS && | |
1965 uname -r | grep '^5' >/dev/null; then | |
1966 X_LIBS="$X_LIBS -R $x_libraries" | |
1967 fi | |
1968 fi | |
1969 | |
1970 if test -d "$x_libraries" && test ! -d "$x_includes"; then | |
1971 x_includes=`echo "$x_libraries" | sed s/lib/include/` | |
1972 AC_MSG_RESULT(Corrected X includes to $x_includes) | |
1973 X_CFLAGS="$X_CFLAGS -I$x_includes" | |
1974 fi | |
1975 | |
1976 dnl Remove "-I/usr/include " from X_CFLAGS, should not be needed. | |
1977 X_CFLAGS="`echo $X_CFLAGS\ | sed 's%-I/usr/include %%'`" | |
1978 dnl Remove "-L/usr/lib " from X_LIBS, should not be needed. | |
1979 X_LIBS="`echo $X_LIBS\ | sed 's%-L/usr/lib %%'`" | |
1980 dnl Same for "-R/usr/lib ". | |
1981 X_LIBS="`echo $X_LIBS\ | sed -e 's%-R/usr/lib %%' -e 's%-R /usr/lib %%'`" | |
1982 | |
1983 | |
1984 dnl Check if the X11 header files are correctly installed. On some systems | |
1649 | 1985 dnl Xlib.h includes files that don't exist. On some systems X11/Intrinsic.h |
1986 dnl is missing. | |
7 | 1987 AC_MSG_CHECKING(if X11 header files can be found) |
1988 cflags_save=$CFLAGS | |
1989 CFLAGS="$CFLAGS $X_CFLAGS" | |
1649 | 1990 AC_TRY_COMPILE([#include <X11/Xlib.h> |
1991 #include <X11/Intrinsic.h>], , | |
7 | 1992 AC_MSG_RESULT(yes), |
1993 AC_MSG_RESULT(no); no_x=yes) | |
1994 CFLAGS=$cflags_save | |
1995 | |
1996 if test "${no_x-no}" = yes; then | |
1997 with_x=no | |
1998 else | |
1999 AC_DEFINE(HAVE_X11) | |
2000 X_LIB="-lXt -lX11"; | |
2001 AC_SUBST(X_LIB) | |
2002 | |
2003 ac_save_LDFLAGS="$LDFLAGS" | |
2004 LDFLAGS="-L$x_libraries $LDFLAGS" | |
2005 | |
2006 dnl Check for -lXdmcp (needed on SunOS 4.1.4) | |
2007 dnl For HP-UX 10.20 it must be before -lSM -lICE | |
2008 AC_CHECK_LIB(Xdmcp, _XdmcpAuthDoIt, [X_EXTRA_LIBS="$X_EXTRA_LIBS -lXdmcp"],, | |
2009 [-lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS -lXdmcp]) | |
2010 | |
2011 dnl Some systems need -lnsl -lsocket when testing for ICE. | |
2012 dnl The check above doesn't do this, try here (again). Also needed to get | |
2013 dnl them after Xdmcp. link.sh will remove them when not needed. | |
2014 dnl Check for other function than above to avoid the cached value | |
2015 AC_CHECK_LIB(ICE, IceOpenConnection, | |
2016 [X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE"],, [$X_EXTRA_LIBS]) | |
2017 | |
2018 dnl Check for -lXpm (needed for some versions of Motif) | |
2019 LDFLAGS="$X_LIBS $ac_save_LDFLAGS" | |
2020 AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData, [X_PRE_LIBS="$X_PRE_LIBS -lXpm"],, | |
2021 [-lXt $X_PRE_LIBS -lXpm -lX11 $X_EXTRA_LIBS]) | |
2022 | |
2023 dnl Check that the X11 header files don't use implicit declarations | |
2024 AC_MSG_CHECKING(if X11 header files implicitly declare return values) | |
2025 cflags_save=$CFLAGS | |
4348 | 2026 dnl -Werror is GCC only, others like Solaris Studio might not like it |
2027 if test "$GCC" = yes; then | |
2028 CFLAGS="$CFLAGS $X_CFLAGS -Werror" | |
2029 else | |
2030 CFLAGS="$CFLAGS $X_CFLAGS" | |
2031 fi | |
7 | 2032 AC_TRY_COMPILE([#include <X11/Xlib.h>], , |
2033 AC_MSG_RESULT(no), | |
2034 CFLAGS="$CFLAGS -Wno-implicit-int" | |
2035 AC_TRY_COMPILE([#include <X11/Xlib.h>], , | |
2036 AC_MSG_RESULT(yes); cflags_save="$cflags_save -Wno-implicit-int", | |
2037 AC_MSG_RESULT(test failed) | |
2038 ) | |
2039 ) | |
2040 CFLAGS=$cflags_save | |
2041 | |
2042 LDFLAGS="$ac_save_LDFLAGS" | |
2043 | |
1887 | 2044 AC_MSG_CHECKING(size of wchar_t is 2 bytes) |
2045 AC_CACHE_VAL(ac_cv_small_wchar_t, | |
2046 [AC_TRY_RUN([ | |
2047 #include <X11/Xlib.h> | |
2048 #if STDC_HEADERS | |
2049 # include <stdlib.h> | |
2050 # include <stddef.h> | |
2051 #endif | |
2052 main() | |
2053 { | |
2054 if (sizeof(wchar_t) <= 2) | |
2055 exit(1); | |
2056 exit(0); | |
2057 }], | |
2058 ac_cv_small_wchar_t="no", | |
2059 ac_cv_small_wchar_t="yes", | |
2060 AC_MSG_ERROR(failed to compile test program))]) | |
2061 AC_MSG_RESULT($ac_cv_small_wchar_t) | |
2062 if test "x$ac_cv_small_wchar_t" = "xyes" ; then | |
2063 AC_DEFINE(SMALL_WCHAR_T) | |
2064 fi | |
2065 | |
7 | 2066 fi |
2067 fi | |
2068 | |
270 | 2069 test "x$with_x" = xno -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && enable_gui=no |
7 | 2070 |
2071 AC_MSG_CHECKING(--enable-gui argument) | |
2072 AC_ARG_ENABLE(gui, | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2073 [ --enable-gui[=OPTS] X11 GUI [default=auto] [OPTS=auto/no/gtk2/gnome2/motif/athena/neXtaw/photon/carbon]], , enable_gui="auto") |
7 | 2074 |
2075 dnl Canonicalize the --enable-gui= argument so that it can be easily compared. | |
2076 dnl Do not use character classes for portability with old tools. | |
2077 enable_gui_canon=`echo "_$enable_gui" | \ | |
2078 sed 's/[[ _+-]]//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` | |
2079 | |
2080 dnl Skip everything by default. | |
2081 SKIP_GTK2=YES | |
2082 SKIP_GNOME=YES | |
2083 SKIP_MOTIF=YES | |
2084 SKIP_ATHENA=YES | |
2085 SKIP_NEXTAW=YES | |
2086 SKIP_PHOTON=YES | |
2087 SKIP_CARBON=YES | |
2088 GUITYPE=NONE | |
2089 | |
67 | 2090 if test "x$QNX" = "xyes" -a "x$with_x" = "xno" ; then |
7 | 2091 SKIP_PHOTON= |
2092 case "$enable_gui_canon" in | |
2093 no) AC_MSG_RESULT(no GUI support) | |
2094 SKIP_PHOTON=YES ;; | |
2095 yes|"") AC_MSG_RESULT(yes - automatic GUI support) ;; | |
2096 auto) AC_MSG_RESULT(auto - automatic GUI support) ;; | |
2097 photon) AC_MSG_RESULT(Photon GUI support) ;; | |
2098 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported]) | |
2099 SKIP_PHOTON=YES ;; | |
2100 esac | |
2101 | |
2102 elif test "x$MACOSX" = "xyes" -a "x$with_x" = "xno" ; then | |
2103 SKIP_CARBON= | |
2104 case "$enable_gui_canon" in | |
2105 no) AC_MSG_RESULT(no GUI support) | |
2106 SKIP_CARBON=YES ;; | |
2107 yes|"") AC_MSG_RESULT(yes - automatic GUI support) ;; | |
2309
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2108 auto) AC_MSG_RESULT(auto - Carbon GUI is outdated - disable GUI support) |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2109 SKIP_CARBON=YES ;; |
7 | 2110 carbon) AC_MSG_RESULT(Carbon GUI support) ;; |
2111 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported]) | |
2112 SKIP_CARBON=YES ;; | |
2113 esac | |
2114 | |
2115 else | |
2116 | |
2117 case "$enable_gui_canon" in | |
2118 no|none) AC_MSG_RESULT(no GUI support) ;; | |
2119 yes|""|auto) AC_MSG_RESULT(yes/auto - automatic GUI support) | |
2120 SKIP_GTK2= | |
2121 SKIP_GNOME= | |
2122 SKIP_MOTIF= | |
2123 SKIP_ATHENA= | |
2124 SKIP_NEXTAW= | |
2125 SKIP_CARBON=;; | |
2126 gtk2) AC_MSG_RESULT(GTK+ 2.x GUI support) | |
2127 SKIP_GTK2=;; | |
2128 gnome2) AC_MSG_RESULT(GNOME 2.x GUI support) | |
2129 SKIP_GNOME= | |
2130 SKIP_GTK2=;; | |
2131 motif) AC_MSG_RESULT(Motif GUI support) | |
2132 SKIP_MOTIF=;; | |
2133 athena) AC_MSG_RESULT(Athena GUI support) | |
2134 SKIP_ATHENA=;; | |
2135 nextaw) AC_MSG_RESULT(neXtaw GUI support) | |
2136 SKIP_NEXTAW=;; | |
2137 *) AC_MSG_RESULT([Sorry, $enable_gui GUI is not supported]) ;; | |
2138 esac | |
2139 | |
2140 fi | |
2141 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2142 if test "x$SKIP_GTK2" != "xYES" -a "$enable_gui_canon" != "gtk2" \ |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2143 -a "$enable_gui_canon" != "gnome2"; then |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2144 AC_MSG_CHECKING(whether or not to look for GTK+ 2) |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2145 AC_ARG_ENABLE(gtk2-check, |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2146 [ --enable-gtk2-check If auto-select GUI, check for GTK+ 2 [default=yes]], |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2147 , enable_gtk2_check="yes") |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2148 AC_MSG_RESULT($enable_gtk2_check) |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2149 if test "x$enable_gtk2_check" = "xno"; then |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2150 SKIP_GTK2=YES |
7 | 2151 SKIP_GNOME=YES |
2152 fi | |
2153 fi | |
2154 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2155 if test "x$SKIP_GNOME" != "xYES" -a "$enable_gui_canon" != "gnome2"; then |
7 | 2156 AC_MSG_CHECKING(whether or not to look for GNOME) |
2157 AC_ARG_ENABLE(gnome-check, | |
2158 [ --enable-gnome-check If GTK GUI, check for GNOME [default=no]], | |
2159 , enable_gnome_check="no") | |
2160 AC_MSG_RESULT($enable_gnome_check) | |
2161 if test "x$enable_gnome_check" = "xno"; then | |
2162 SKIP_GNOME=YES | |
2163 fi | |
2164 fi | |
2165 | |
2166 if test "x$SKIP_MOTIF" != "xYES" -a "$enable_gui_canon" != "motif"; then | |
2167 AC_MSG_CHECKING(whether or not to look for Motif) | |
2168 AC_ARG_ENABLE(motif-check, | |
2169 [ --enable-motif-check If auto-select GUI, check for Motif [default=yes]], | |
2170 , enable_motif_check="yes") | |
2171 AC_MSG_RESULT($enable_motif_check) | |
2172 if test "x$enable_motif_check" = "xno"; then | |
2173 SKIP_MOTIF=YES | |
2174 fi | |
2175 fi | |
2176 | |
2177 if test "x$SKIP_ATHENA" != "xYES" -a "$enable_gui_canon" != "athena"; then | |
2178 AC_MSG_CHECKING(whether or not to look for Athena) | |
2179 AC_ARG_ENABLE(athena-check, | |
2180 [ --enable-athena-check If auto-select GUI, check for Athena [default=yes]], | |
2181 , enable_athena_check="yes") | |
2182 AC_MSG_RESULT($enable_athena_check) | |
2183 if test "x$enable_athena_check" = "xno"; then | |
2184 SKIP_ATHENA=YES | |
2185 fi | |
2186 fi | |
2187 | |
2188 if test "x$SKIP_NEXTAW" != "xYES" -a "$enable_gui_canon" != "nextaw"; then | |
2189 AC_MSG_CHECKING(whether or not to look for neXtaw) | |
2190 AC_ARG_ENABLE(nextaw-check, | |
2191 [ --enable-nextaw-check If auto-select GUI, check for neXtaw [default=yes]], | |
2192 , enable_nextaw_check="yes") | |
2193 AC_MSG_RESULT($enable_nextaw_check); | |
2194 if test "x$enable_nextaw_check" = "xno"; then | |
2195 SKIP_NEXTAW=YES | |
2196 fi | |
2197 fi | |
2198 | |
2199 if test "x$SKIP_CARBON" != "xYES" -a "$enable_gui_canon" != "carbon"; then | |
2200 AC_MSG_CHECKING(whether or not to look for Carbon) | |
2201 AC_ARG_ENABLE(carbon-check, | |
2202 [ --enable-carbon-check If auto-select GUI, check for Carbon [default=yes]], | |
2203 , enable_carbon_check="yes") | |
2204 AC_MSG_RESULT($enable_carbon_check); | |
2205 if test "x$enable_carbon_check" = "xno"; then | |
2206 SKIP_CARBON=YES | |
2207 fi | |
2208 fi | |
2209 | |
11 | 2210 |
7 | 2211 if test "x$MACOSX" = "xyes" -a -z "$SKIP_CARBON" -a "x$CARBON" = "xyes"; then |
2212 AC_MSG_CHECKING(for Carbon GUI) | |
864 | 2213 dnl already did the check, just give the message |
7 | 2214 AC_MSG_RESULT(yes); |
2215 GUITYPE=CARBONGUI | |
502 | 2216 if test "$VIMNAME" = "vim"; then |
2217 VIMNAME=Vim | |
2218 fi | |
864 | 2219 |
2309
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2220 if test "x$MACARCH" = "xboth"; then |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2221 CPPFLAGS="$CPPFLAGS -I$DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk/Developer/Headers/FlatCarbon" |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2222 else |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2223 CPPFLAGS="$CPPFLAGS -I$DEVELOPER_DIR/Headers/FlatCarbon" |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2224 fi |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
2225 |
864 | 2226 dnl Default install directory is not /usr/local |
2227 if test x$prefix = xNONE; then | |
2228 prefix=/Applications | |
2229 fi | |
2230 | |
2231 dnl Sorry for the hard coded default | |
2232 datadir='${prefix}/Vim.app/Contents/Resources' | |
2233 | |
7 | 2234 dnl skip everything else |
2235 SKIP_GTK2=YES; | |
2236 SKIP_GNOME=YES; | |
2237 SKIP_MOTIF=YES; | |
2238 SKIP_ATHENA=YES; | |
2239 SKIP_NEXTAW=YES; | |
2240 SKIP_PHOTON=YES; | |
2241 SKIP_CARBON=YES | |
2242 fi | |
2243 | |
2244 dnl define an autoconf function to check for a specified version of GTK, and | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2245 dnl try to compile/link a GTK program. |
7 | 2246 dnl |
2247 dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) | |
29 | 2248 dnl Test for GTK, and define GTK_CFLAGS, GTK_LIBDIR and GTK_LIBS |
7 | 2249 dnl |
2250 AC_DEFUN(AM_PATH_GTK, | |
2251 [ | |
2252 if test "X$GTK_CONFIG" != "Xno" -o "X$PKG_CONFIG" != "Xno"; then | |
2253 { | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2254 min_gtk_version=ifelse([$1], ,2.2.0,$1) |
7 | 2255 AC_MSG_CHECKING(for GTK - version >= $min_gtk_version) |
2256 no_gtk="" | |
2257 if (test "X$SKIP_GTK2" != "XYES" -a "X$PKG_CONFIG" != "Xno") \ | |
2258 && $PKG_CONFIG --exists gtk+-2.0; then | |
2259 { | |
2260 dnl We should be using PKG_CHECK_MODULES() instead of this hack. | |
2261 dnl But I guess the dependency on pkgconfig.m4 is not wanted or | |
2262 dnl something like that. | |
2263 GTK_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0` | |
29 | 2264 GTK_LIBDIR=`$PKG_CONFIG --libs-only-L gtk+-2.0` |
7 | 2265 GTK_LIBS=`$PKG_CONFIG --libs gtk+-2.0` |
2266 gtk_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ | |
2267 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'` | |
2268 gtk_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ | |
2269 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'` | |
2270 gtk_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ | |
2271 sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'` | |
2272 } | |
2273 else | |
2274 no_gtk=yes | |
2275 fi | |
2276 | |
2277 if test "x$enable_gtktest" = "xyes" -a "x$no_gtk" = "x"; then | |
2278 { | |
2279 ac_save_CFLAGS="$CFLAGS" | |
2280 ac_save_LIBS="$LIBS" | |
2281 CFLAGS="$CFLAGS $GTK_CFLAGS" | |
2282 LIBS="$LIBS $GTK_LIBS" | |
2283 | |
2284 dnl | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2285 dnl Now check if the installed GTK is sufficiently new. |
7 | 2286 dnl |
2287 rm -f conf.gtktest | |
2288 AC_TRY_RUN([ | |
2289 #include <gtk/gtk.h> | |
2290 #include <stdio.h> | |
1621 | 2291 #if STDC_HEADERS |
2292 # include <stdlib.h> | |
2293 # include <stddef.h> | |
2294 #endif | |
7 | 2295 |
2296 int | |
2297 main () | |
2298 { | |
2299 int major, minor, micro; | |
2300 char *tmp_version; | |
2301 | |
2302 system ("touch conf.gtktest"); | |
2303 | |
2304 /* HP/UX 9 (%@#!) writes to sscanf strings */ | |
2305 tmp_version = g_strdup("$min_gtk_version"); | |
2306 if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { | |
2307 printf("%s, bad version string\n", "$min_gtk_version"); | |
2308 exit(1); | |
2309 } | |
2310 | |
2311 if ((gtk_major_version > major) || | |
2312 ((gtk_major_version == major) && (gtk_minor_version > minor)) || | |
2313 ((gtk_major_version == major) && (gtk_minor_version == minor) && | |
2314 (gtk_micro_version >= micro))) | |
2315 { | |
2316 return 0; | |
2317 } | |
2318 return 1; | |
2319 } | |
2320 ],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) | |
2321 CFLAGS="$ac_save_CFLAGS" | |
2322 LIBS="$ac_save_LIBS" | |
2323 } | |
2324 fi | |
2325 if test "x$no_gtk" = x ; then | |
2326 if test "x$enable_gtktest" = "xyes"; then | |
2327 AC_MSG_RESULT(yes; found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version) | |
2328 else | |
2329 AC_MSG_RESULT(found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version) | |
2330 fi | |
2331 ifelse([$2], , :, [$2]) | |
2332 else | |
2333 { | |
2334 AC_MSG_RESULT(no) | |
2335 GTK_CFLAGS="" | |
2336 GTK_LIBS="" | |
2337 ifelse([$3], , :, [$3]) | |
2338 } | |
2339 fi | |
2340 } | |
2341 else | |
2342 GTK_CFLAGS="" | |
2343 GTK_LIBS="" | |
2344 ifelse([$3], , :, [$3]) | |
2345 fi | |
2346 AC_SUBST(GTK_CFLAGS) | |
2347 AC_SUBST(GTK_LIBS) | |
2348 rm -f conf.gtktest | |
2349 ]) | |
2350 | |
2351 dnl --------------------------------------------------------------------------- | |
2352 dnl gnome | |
2353 dnl --------------------------------------------------------------------------- | |
2354 AC_DEFUN([GNOME_INIT_HOOK], | |
2355 [ | |
2356 AC_SUBST(GNOME_LIBS) | |
2357 AC_SUBST(GNOME_LIBDIR) | |
2358 AC_SUBST(GNOME_INCLUDEDIR) | |
2359 | |
2360 AC_ARG_WITH(gnome-includes, | |
2361 [ --with-gnome-includes=DIR Specify location of GNOME headers], | |
2362 [CFLAGS="$CFLAGS -I$withval"] | |
2363 ) | |
2364 | |
2365 AC_ARG_WITH(gnome-libs, | |
2366 [ --with-gnome-libs=DIR Specify location of GNOME libs], | |
2367 [LDFLAGS="$LDFLAGS -L$withval" gnome_prefix=$withval] | |
2368 ) | |
2369 | |
2370 AC_ARG_WITH(gnome, | |
2371 [ --with-gnome Specify prefix for GNOME files], | |
2372 if test x$withval = xyes; then | |
2373 want_gnome=yes | |
2374 ifelse([$1], [], :, [$1]) | |
2375 else | |
2376 if test "x$withval" = xno; then | |
2377 want_gnome=no | |
2378 else | |
2379 want_gnome=yes | |
2380 LDFLAGS="$LDFLAGS -L$withval/lib" | |
2381 CFLAGS="$CFLAGS -I$withval/include" | |
2382 gnome_prefix=$withval/lib | |
2383 fi | |
2384 fi, | |
2385 want_gnome=yes) | |
2386 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2387 if test "x$want_gnome" = xyes; then |
7 | 2388 { |
2389 AC_MSG_CHECKING(for libgnomeui-2.0) | |
2390 if $PKG_CONFIG --exists libgnomeui-2.0; then | |
2391 AC_MSG_RESULT(yes) | |
2392 GNOME_LIBS=`$PKG_CONFIG --libs-only-l libgnomeui-2.0` | |
2393 GNOME_LIBDIR=`$PKG_CONFIG --libs-only-L libgnomeui-2.0` | |
2394 GNOME_INCLUDEDIR=`$PKG_CONFIG --cflags libgnomeui-2.0` | |
856 | 2395 |
782 | 2396 dnl On FreeBSD we need -pthread but pkg-config doesn't include it. |
2397 dnl This might not be the right way but it works for me... | |
2398 AC_MSG_CHECKING(for FreeBSD) | |
2399 if test "`(uname) 2>/dev/null`" = FreeBSD; then | |
2400 AC_MSG_RESULT(yes, adding -pthread) | |
856 | 2401 GNOME_INCLUDEDIR="$GNOME_INCLUDEDIR -D_THREAD_SAFE" |
782 | 2402 GNOME_LIBS="$GNOME_LIBS -pthread" |
2403 else | |
2404 AC_MSG_RESULT(no) | |
2405 fi | |
7 | 2406 $1 |
2407 else | |
2408 AC_MSG_RESULT(not found) | |
2409 if test "x$2" = xfail; then | |
2410 AC_MSG_ERROR(Could not find libgnomeui-2.0 via pkg-config) | |
2411 fi | |
2412 fi | |
2413 } | |
2414 fi | |
2415 ]) | |
2416 | |
2417 AC_DEFUN([GNOME_INIT],[ | |
2418 GNOME_INIT_HOOK([],fail) | |
2419 ]) | |
2420 | |
2421 | |
2422 dnl --------------------------------------------------------------------------- | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2423 dnl Check for GTK2. If it fails, then continue on for Motif as before... |
7 | 2424 dnl --------------------------------------------------------------------------- |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2425 if test -z "$SKIP_GTK2"; then |
7 | 2426 |
2427 AC_MSG_CHECKING(--disable-gtktest argument) | |
2428 AC_ARG_ENABLE(gtktest, [ --disable-gtktest Do not try to compile and run a test GTK program], | |
2429 , enable_gtktest=yes) | |
2430 if test "x$enable_gtktest" = "xyes" ; then | |
2431 AC_MSG_RESULT(gtk test enabled) | |
2432 else | |
2433 AC_MSG_RESULT(gtk test disabled) | |
2434 fi | |
2435 | |
2436 if test "X$PKG_CONFIG" = "X"; then | |
2437 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) | |
2438 fi | |
2439 | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2440 if test "x$PKG_CONFIG" != "xno"; then |
7 | 2441 dnl First try finding version 2.2.0 or later. The 2.0.x series has |
2442 dnl problems (bold fonts, --remote doesn't work). | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2443 AM_PATH_GTK(2.2.0, |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2444 [GUI_LIB_LOC="$GTK_LIBDIR" |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2445 GTK_LIBNAME="$GTK_LIBS" |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2446 GUI_INC_LOC="$GTK_CFLAGS"], ) |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2447 if test "x$GTK_CFLAGS" != "x"; then |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2448 SKIP_ATHENA=YES |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2449 SKIP_NEXTAW=YES |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2450 SKIP_MOTIF=YES |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2451 GUITYPE=GTK |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2452 AC_SUBST(GTK_LIBNAME) |
7 | 2453 fi |
2454 fi | |
2455 if test "x$GUITYPE" = "xGTK"; then | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2456 if test "$gtk_minor_version" = 1 -a "0$gtk_micro_version" -ge 1 \ |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2457 || test "0$gtk_minor_version" -ge 2; then |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2458 AC_DEFINE(HAVE_GTK_MULTIHEAD) |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2459 fi |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2460 dnl |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2461 dnl if GTK exists, then check for GNOME. |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2462 dnl |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2463 if test -z "$SKIP_GNOME"; then |
7 | 2464 { |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2465 GNOME_INIT_HOOK([have_gnome=yes]) |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2466 if test "x$have_gnome" = xyes ; then |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2467 AC_DEFINE(FEAT_GUI_GNOME) |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2468 GUI_INC_LOC="$GUI_INC_LOC $GNOME_INCLUDEDIR" |
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2469 GTK_LIBNAME="$GTK_LIBNAME $GNOME_LIBDIR $GNOME_LIBS" |
7 | 2470 fi |
2471 } | |
2472 fi | |
2473 fi | |
2474 fi | |
2475 | |
2476 dnl Check for Motif include files location. | |
2477 dnl The LAST one found is used, this makes the highest version to be used, | |
2478 dnl e.g. when Motif1.2 and Motif2.0 are both present. | |
2479 | |
2480 if test -z "$SKIP_MOTIF"; then | |
2481 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" | |
2482 dnl Remove "-I" from before $GUI_INC_LOC if it's there | |
2483 GUI_INC_LOC="`echo $GUI_INC_LOC|sed 's%-I%%g'`" | |
2484 | |
2485 AC_MSG_CHECKING(for location of Motif GUI includes) | |
2486 gui_includes="`echo $x_includes|sed 's%/[^/][^/]*$%%'` `echo "$gui_XXX" | sed s/XXX/include/g` $GUI_INC_LOC" | |
2487 GUI_INC_LOC= | |
2488 for try in $gui_includes; do | |
2489 if test -f "$try/Xm/Xm.h"; then | |
2490 GUI_INC_LOC=$try | |
2491 fi | |
2492 done | |
2493 if test -n "$GUI_INC_LOC"; then | |
2494 if test "$GUI_INC_LOC" = /usr/include; then | |
2495 GUI_INC_LOC= | |
2496 AC_MSG_RESULT(in default path) | |
2497 else | |
2498 AC_MSG_RESULT($GUI_INC_LOC) | |
2499 fi | |
2500 else | |
2501 AC_MSG_RESULT(<not found>) | |
2502 SKIP_MOTIF=YES | |
2503 fi | |
2504 fi | |
2505 | |
2506 dnl Check for Motif library files location. In the same order as the include | |
2507 dnl files, to avoid a mixup if several versions are present | |
2508 | |
2509 if test -z "$SKIP_MOTIF"; then | |
2510 AC_MSG_CHECKING(--with-motif-lib argument) | |
2511 AC_ARG_WITH(motif-lib, | |
2512 [ --with-motif-lib=STRING Library for Motif ], | |
2513 [ MOTIF_LIBNAME="${withval}" ] ) | |
2514 | |
2515 if test -n "$MOTIF_LIBNAME"; then | |
2516 AC_MSG_RESULT($MOTIF_LIBNAME) | |
2517 GUI_LIB_LOC= | |
2518 else | |
2519 AC_MSG_RESULT(no) | |
2520 | |
2521 dnl Remove "-L" from before $GUI_LIB_LOC if it's there | |
2522 GUI_LIB_LOC="`echo $GUI_LIB_LOC|sed 's%-L%%g'`" | |
2523 | |
4942
b89aa3374b7f
updated for version 7.3.1216
Bram Moolenaar <bram@vim.org>
parents:
4895
diff
changeset
|
2524 dnl Ubuntu has libXm.so in /usr/lib/i386-linux-gnu and elsewhere. The |
b89aa3374b7f
updated for version 7.3.1216
Bram Moolenaar <bram@vim.org>
parents:
4895
diff
changeset
|
2525 dnl linker will figure out which one to use, we only check if one exists. |
7 | 2526 AC_MSG_CHECKING(for location of Motif GUI libs) |
4942
b89aa3374b7f
updated for version 7.3.1216
Bram Moolenaar <bram@vim.org>
parents:
4895
diff
changeset
|
2527 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" |
7 | 2528 GUI_LIB_LOC= |
2529 for try in $gui_libs; do | |
14 | 2530 for libtry in "$try"/libXm.a "$try"/libXm.so* "$try"/libXm.sl "$try"/libXm.dylib; do |
7 | 2531 if test -f "$libtry"; then |
2532 GUI_LIB_LOC=$try | |
2533 fi | |
2534 done | |
2535 done | |
2536 if test -n "$GUI_LIB_LOC"; then | |
2537 dnl Remove /usr/lib, it causes trouble on some systems | |
4942
b89aa3374b7f
updated for version 7.3.1216
Bram Moolenaar <bram@vim.org>
parents:
4895
diff
changeset
|
2538 if test "$GUI_LIB_LOC" = /usr/lib \ |
b89aa3374b7f
updated for version 7.3.1216
Bram Moolenaar <bram@vim.org>
parents:
4895
diff
changeset
|
2539 -o "$GUI_LIB_LOC" = /usr/lib/i386-linux-gnu \ |
b89aa3374b7f
updated for version 7.3.1216
Bram Moolenaar <bram@vim.org>
parents:
4895
diff
changeset
|
2540 -o "$GUI_LIB_LOC" = /usr/lib/x86_64-linux-gnu; then |
7 | 2541 GUI_LIB_LOC= |
2542 AC_MSG_RESULT(in default path) | |
2543 else | |
2544 if test -n "$GUI_LIB_LOC"; then | |
2545 AC_MSG_RESULT($GUI_LIB_LOC) | |
2546 if test "`(uname) 2>/dev/null`" = SunOS && | |
2547 uname -r | grep '^5' >/dev/null; then | |
2548 GUI_LIB_LOC="$GUI_LIB_LOC -R $GUI_LIB_LOC" | |
2549 fi | |
2550 fi | |
2551 fi | |
2552 MOTIF_LIBNAME=-lXm | |
2553 else | |
2554 AC_MSG_RESULT(<not found>) | |
2555 SKIP_MOTIF=YES | |
2556 fi | |
2557 fi | |
2558 fi | |
2559 | |
2560 if test -z "$SKIP_MOTIF"; then | |
2561 SKIP_ATHENA=YES | |
2562 SKIP_NEXTAW=YES | |
2563 GUITYPE=MOTIF | |
2564 AC_SUBST(MOTIF_LIBNAME) | |
2565 fi | |
2566 | |
2567 dnl Check if the Athena files can be found | |
2568 | |
2569 GUI_X_LIBS= | |
2570 | |
2571 if test -z "$SKIP_ATHENA"; then | |
2572 AC_MSG_CHECKING(if Athena header files can be found) | |
2573 cflags_save=$CFLAGS | |
2574 CFLAGS="$CFLAGS $X_CFLAGS" | |
2575 AC_TRY_COMPILE([ | |
2576 #include <X11/Intrinsic.h> | |
2577 #include <X11/Xaw/Paned.h>], , | |
2578 AC_MSG_RESULT(yes), | |
2579 AC_MSG_RESULT(no); SKIP_ATHENA=YES ) | |
2580 CFLAGS=$cflags_save | |
2581 fi | |
2582 | |
2583 if test -z "$SKIP_ATHENA"; then | |
2584 GUITYPE=ATHENA | |
2585 fi | |
2586 | |
2587 if test -z "$SKIP_NEXTAW"; then | |
2588 AC_MSG_CHECKING(if neXtaw header files can be found) | |
2589 cflags_save=$CFLAGS | |
2590 CFLAGS="$CFLAGS $X_CFLAGS" | |
2591 AC_TRY_COMPILE([ | |
2592 #include <X11/Intrinsic.h> | |
2593 #include <X11/neXtaw/Paned.h>], , | |
2594 AC_MSG_RESULT(yes), | |
2595 AC_MSG_RESULT(no); SKIP_NEXTAW=YES ) | |
2596 CFLAGS=$cflags_save | |
2597 fi | |
2598 | |
2599 if test -z "$SKIP_NEXTAW"; then | |
2600 GUITYPE=NEXTAW | |
2601 fi | |
2602 | |
2603 if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF"; then | |
2604 dnl Prepend -I and -L to $GUI_INC_LOC and $GUI_LIB_LOC if not empty | |
2605 dnl Avoid adding it when it twice | |
2606 if test -n "$GUI_INC_LOC"; then | |
2607 GUI_INC_LOC=-I"`echo $GUI_INC_LOC|sed 's%-I%%'`" | |
2608 fi | |
2609 if test -n "$GUI_LIB_LOC"; then | |
2610 GUI_LIB_LOC=-L"`echo $GUI_LIB_LOC|sed 's%-L%%'`" | |
2611 fi | |
2612 | |
2613 dnl Check for -lXext and then for -lXmu | |
2614 ldflags_save=$LDFLAGS | |
2615 LDFLAGS="$X_LIBS $LDFLAGS" | |
2616 AC_CHECK_LIB(Xext, XShapeQueryExtension, [GUI_X_LIBS="-lXext"],, | |
2617 [-lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS]) | |
2618 dnl For Solaris we need -lw and -ldl before linking with -lXmu works. | |
2619 AC_CHECK_LIB(w, wslen, [X_EXTRA_LIBS="$X_EXTRA_LIBS -lw"],, | |
2620 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS]) | |
2621 AC_CHECK_LIB(dl, dlsym, [X_EXTRA_LIBS="$X_EXTRA_LIBS -ldl"],, | |
2622 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS]) | |
2623 AC_CHECK_LIB(Xmu, XmuCreateStippledPixmap, [GUI_X_LIBS="-lXmu $GUI_X_LIBS"],, | |
2624 [$GUI_X_LIBS -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS]) | |
2625 if test -z "$SKIP_MOTIF"; then | |
2626 AC_CHECK_LIB(Xp, XpEndJob, [GUI_X_LIBS="-lXp $GUI_X_LIBS"],, | |
2627 [$GUI_X_LIBS -lXm -lXt $X_PRE_LIBS -lX11 $X_EXTRA_LIBS]) | |
2628 fi | |
2629 LDFLAGS=$ldflags_save | |
2630 | |
2631 dnl Execute xmkmf to figure out if -DNARROWPROTO is needed. | |
2632 AC_MSG_CHECKING(for extra X11 defines) | |
2633 NARROW_PROTO= | |
2634 rm -fr conftestdir | |
2635 if mkdir conftestdir; then | |
2636 cd conftestdir | |
2637 cat > Imakefile <<'EOF' | |
2638 acfindx: | |
2639 @echo 'NARROW_PROTO="${PROTO_DEFINES}"' | |
2640 EOF | |
2641 if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then | |
2642 eval `${MAKE-make} acfindx 2>/dev/null | grep -v make` | |
2643 fi | |
2644 cd .. | |
2645 rm -fr conftestdir | |
2646 fi | |
2647 if test -z "$NARROW_PROTO"; then | |
2648 AC_MSG_RESULT(no) | |
2649 else | |
2650 AC_MSG_RESULT($NARROW_PROTO) | |
2651 fi | |
2652 AC_SUBST(NARROW_PROTO) | |
2653 fi | |
2654 | |
2655 dnl Look for XSMP support - but don't necessarily restrict it to X11 GUIs | |
2656 dnl use the X11 include path | |
2657 if test "$enable_xsmp" = "yes"; then | |
2658 cppflags_save=$CPPFLAGS | |
2659 CPPFLAGS="$CPPFLAGS $X_CFLAGS" | |
2660 AC_CHECK_HEADERS(X11/SM/SMlib.h) | |
2661 CPPFLAGS=$cppflags_save | |
2662 fi | |
2663 | |
2664 | |
2285
69064995302a
Change SKIP_GTK to SKIP_GTK2 in configure.
Bram Moolenaar <bram@vim.org>
parents:
2277
diff
changeset
|
2665 if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF" -o -z "$SKIP_GTK2"; then |
7 | 2666 dnl Check for X11/xpm.h and X11/Sunkeysym.h with the GUI include path |
2667 cppflags_save=$CPPFLAGS | |
2668 CPPFLAGS="$CPPFLAGS $X_CFLAGS" | |
2669 AC_CHECK_HEADERS(X11/xpm.h X11/Sunkeysym.h) | |
2670 | |
2671 dnl automatically disable XIM when XIMtext isn't in X11/Xlib.h | |
2672 if test ! "$enable_xim" = "no"; then | |
2673 AC_MSG_CHECKING(for XIMText in X11/Xlib.h) | |
2674 AC_EGREP_CPP(XIMText, [#include <X11/Xlib.h>], | |
2675 AC_MSG_RESULT(yes), | |
5824 | 2676 AC_MSG_RESULT(no; xim has been disabled); enable_xim="no") |
7 | 2677 fi |
2678 CPPFLAGS=$cppflags_save | |
2679 | |
2680 dnl automatically enable XIM when hangul input isn't enabled | |
2681 if test "$enable_xim" = "auto" -a "$enable_hangulinput" != "yes" \ | |
2682 -a "x$GUITYPE" != "xNONE" ; then | |
2683 AC_MSG_RESULT(X GUI selected; xim has been enabled) | |
2684 enable_xim="yes" | |
2685 fi | |
2686 fi | |
2687 | |
2688 if test -z "$SKIP_ATHENA" -o -z "$SKIP_NEXTAW" -o -z "$SKIP_MOTIF"; then | |
2689 cppflags_save=$CPPFLAGS | |
2690 CPPFLAGS="$CPPFLAGS $X_CFLAGS" | |
148 | 2691 dnl Xmu/Editres.h may exist but can only be used after including Intrinsic.h |
2692 AC_MSG_CHECKING([for X11/Xmu/Editres.h]) | |
2693 AC_TRY_COMPILE([ | |
2694 #include <X11/Intrinsic.h> | |
2695 #include <X11/Xmu/Editres.h>], | |
2696 [int i; i = 0;], | |
2697 AC_MSG_RESULT(yes) | |
2698 AC_DEFINE(HAVE_X11_XMU_EDITRES_H), | |
2699 AC_MSG_RESULT(no)) | |
7 | 2700 CPPFLAGS=$cppflags_save |
2701 fi | |
2702 | |
2703 dnl Only use the Xm directory when compiling Motif, don't use it for Athena | |
2704 if test -z "$SKIP_MOTIF"; then | |
2705 cppflags_save=$CPPFLAGS | |
2706 CPPFLAGS="$CPPFLAGS $X_CFLAGS" | |
3590 | 2707 if test "$zOSUnix" = "yes"; then |
2708 xmheader="Xm/Xm.h" | |
2709 else | |
2710 xmheader="Xm/Xm.h Xm/XpmP.h Xm/JoinSideT.h Xm/TraitP.h Xm/Manager.h | |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
2711 Xm/UnhighlightT.h Xm/Notebook.h" |
3590 | 2712 fi |
2713 AC_CHECK_HEADERS($xmheader) | |
2714 | |
2715 if test "x$ac_cv_header_Xm_XpmP_h" = "xyes"; then | |
819 | 2716 dnl Solaris uses XpmAttributes_21, very annoying. |
2717 AC_MSG_CHECKING([for XpmAttributes_21 in Xm/XpmP.h]) | |
2718 AC_TRY_COMPILE([#include <Xm/XpmP.h>], [XpmAttributes_21 attr;], | |
2719 AC_MSG_RESULT(yes); AC_DEFINE(XPMATTRIBUTES_TYPE, XpmAttributes_21), | |
2720 AC_MSG_RESULT(no); AC_DEFINE(XPMATTRIBUTES_TYPE, XpmAttributes) | |
2721 ) | |
2722 else | |
839 | 2723 AC_DEFINE(XPMATTRIBUTES_TYPE, XpmAttributes) |
819 | 2724 fi |
7 | 2725 CPPFLAGS=$cppflags_save |
2726 fi | |
2727 | |
2728 if test "x$GUITYPE" = "xNONE" -a "$enable_xim" = "yes"; then | |
2729 AC_MSG_RESULT(no GUI selected; xim has been disabled) | |
2730 enable_xim="no" | |
2731 fi | |
2732 if test "x$GUITYPE" = "xNONE" -a "$enable_fontset" = "yes"; then | |
2733 AC_MSG_RESULT(no GUI selected; fontset has been disabled) | |
2734 enable_fontset="no" | |
2735 fi | |
2275
e4d849f4df03
Remove the old and not well supported GTK 1 code. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
2736 if test "x$GUITYPE:$enable_fontset" = "xGTK:yes"; then |
7 | 2737 AC_MSG_RESULT(GTK+ 2 GUI selected; fontset has been disabled) |
2738 enable_fontset="no" | |
2739 fi | |
2740 | |
2741 if test -z "$SKIP_PHOTON"; then | |
2742 GUITYPE=PHOTONGUI | |
2743 fi | |
2744 | |
2745 AC_SUBST(GUI_INC_LOC) | |
2746 AC_SUBST(GUI_LIB_LOC) | |
2747 AC_SUBST(GUITYPE) | |
2748 AC_SUBST(GUI_X_LIBS) | |
2749 | |
2750 if test "$enable_workshop" = "yes" -a -n "$SKIP_MOTIF"; then | |
2751 AC_MSG_ERROR([cannot use workshop without Motif]) | |
2752 fi | |
2753 | |
2754 dnl defining FEAT_XIM and FEAT_XFONTSET is delayed, so that they can be disabled | |
2755 if test "$enable_xim" = "yes"; then | |
2756 AC_DEFINE(FEAT_XIM) | |
2757 fi | |
2758 if test "$enable_fontset" = "yes"; then | |
2759 AC_DEFINE(FEAT_XFONTSET) | |
2760 fi | |
2761 | |
2762 | |
2763 dnl --------------------------------------------------------------------------- | |
2764 dnl end of GUI-checking | |
2765 dnl --------------------------------------------------------------------------- | |
2766 | |
4168 | 2767 dnl Check for Cygwin, which needs an extra source file if not using X11 |
2768 AC_MSG_CHECKING(for CYGWIN environment) | |
2769 case `uname` in | |
2770 CYGWIN*) CYGWIN=yes; AC_MSG_RESULT(yes) | |
2771 AC_MSG_CHECKING(for CYGWIN clipboard support) | |
2772 if test "x$with_x" = "xno" ; then | |
2773 OS_EXTRA_SRC=winclip.c; OS_EXTRA_OBJ=objects/winclip.o | |
2774 AC_MSG_RESULT(yes) | |
2775 AC_DEFINE(FEAT_CYGWIN_WIN32_CLIPBOARD) | |
2776 else | |
2777 AC_MSG_RESULT(no - using X11) | |
2778 fi ;; | |
2779 | |
2780 *) CYGWIN=no; AC_MSG_RESULT(no);; | |
2781 esac | |
7 | 2782 |
2783 dnl Only really enable hangul input when GUI and XFONTSET are available | |
2784 if test "$enable_hangulinput" = "yes"; then | |
2785 if test "x$GUITYPE" = "xNONE"; then | |
2786 AC_MSG_RESULT(no GUI selected; hangul input has been disabled) | |
2787 enable_hangulinput=no | |
2788 else | |
2789 AC_DEFINE(FEAT_HANGULIN) | |
2790 HANGULIN_SRC=hangulin.c | |
2791 AC_SUBST(HANGULIN_SRC) | |
2792 HANGULIN_OBJ=objects/hangulin.o | |
2793 AC_SUBST(HANGULIN_OBJ) | |
2794 fi | |
2795 fi | |
2796 | |
2797 dnl Checks for libraries and include files. | |
2798 | |
1621 | 2799 AC_CACHE_CHECK([whether toupper is broken], [vim_cv_toupper_broken], |
2800 [ | |
5757 | 2801 AC_RUN_IFELSE([AC_LANG_SOURCE([[ |
1621 | 2802 #include "confdefs.h" |
2803 #include <ctype.h> | |
2804 #if STDC_HEADERS | |
2805 # include <stdlib.h> | |
2806 # include <stddef.h> | |
2807 #endif | |
2808 main() { exit(toupper('A') == 'A' && tolower('z') == 'z'); } | |
5757 | 2809 ]])],[ |
1621 | 2810 vim_cv_toupper_broken=yes |
2811 ],[ | |
2812 vim_cv_toupper_broken=no | |
2813 ],[ | |
2814 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_toupper_broken') | |
2815 ])]) | |
2816 | |
2817 if test "x$vim_cv_toupper_broken" = "xyes" ; then | |
2818 AC_DEFINE(BROKEN_TOUPPER) | |
2819 fi | |
7 | 2820 |
2821 AC_MSG_CHECKING(whether __DATE__ and __TIME__ work) | |
1621 | 2822 AC_TRY_COMPILE([#include <stdio.h>], [printf("(" __DATE__ " " __TIME__ ")");], |
7 | 2823 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_DATE_TIME), |
2824 AC_MSG_RESULT(no)) | |
2825 | |
1876 | 2826 AC_MSG_CHECKING(whether __attribute__((unused)) is allowed) |
2827 AC_TRY_COMPILE([#include <stdio.h>], [int x __attribute__((unused));], | |
2828 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ATTRIBUTE_UNUSED), | |
2829 AC_MSG_RESULT(no)) | |
2830 | |
7 | 2831 dnl Checks for header files. |
2832 AC_CHECK_HEADER(elf.h, HAS_ELF=1) | |
2833 dnl AC_CHECK_HEADER(dwarf.h, SVR4=1) | |
2834 if test "$HAS_ELF" = 1; then | |
2835 AC_CHECK_LIB(elf, main) | |
2836 fi | |
2837 | |
2838 AC_HEADER_DIRENT | |
2839 | |
2840 dnl If sys/wait.h is not found it might still exist but not be POSIX | |
2841 dnl compliant. In that case we define HAVE_UNION_WAIT (for NeXT) | |
2842 if test $ac_cv_header_sys_wait_h = no; then | |
2843 AC_MSG_CHECKING([for sys/wait.h that defines union wait]) | |
2844 AC_TRY_COMPILE([#include <sys/wait.h>], | |
2845 [union wait xx, yy; xx = yy], | |
2846 AC_MSG_RESULT(yes) | |
2847 AC_DEFINE(HAVE_SYS_WAIT_H) | |
2848 AC_DEFINE(HAVE_UNION_WAIT), | |
2849 AC_MSG_RESULT(no)) | |
2850 fi | |
2851 | |
2199
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2852 AC_CHECK_HEADERS(stdarg.h stdint.h stdlib.h string.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2853 sys/select.h sys/utsname.h termcap.h fcntl.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2854 sgtty.h sys/ioctl.h sys/time.h sys/types.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2855 termio.h iconv.h inttypes.h langinfo.h math.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2856 unistd.h stropts.h errno.h sys/resource.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2857 sys/systeminfo.h locale.h sys/stream.h termios.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2858 libc.h sys/statfs.h poll.h sys/poll.h pwd.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2859 utime.h sys/param.h libintl.h libgen.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2860 util/debug.h util/msg18n.h frame.h sys/acl.h \ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2861 sys/access.h sys/sysinfo.h wchar.h wctype.h) |
7 | 2862 |
1649 | 2863 dnl sys/ptem.h depends on sys/stream.h on Solaris |
2864 AC_CHECK_HEADERS(sys/ptem.h, [], [], | |
2865 [#if defined HAVE_SYS_STREAM_H | |
2866 # include <sys/stream.h> | |
2867 #endif]) | |
2868 | |
1886 | 2869 dnl sys/sysctl.h depends on sys/param.h on OpenBSD |
2870 AC_CHECK_HEADERS(sys/sysctl.h, [], [], | |
2871 [#if defined HAVE_SYS_PARAM_H | |
2872 # include <sys/param.h> | |
2873 #endif]) | |
2874 | |
1649 | 2875 |
132 | 2876 dnl pthread_np.h may exist but can only be used after including pthread.h |
2877 AC_MSG_CHECKING([for pthread_np.h]) | |
2878 AC_TRY_COMPILE([ | |
2879 #include <pthread.h> | |
2880 #include <pthread_np.h>], | |
2881 [int i; i = 0;], | |
2882 AC_MSG_RESULT(yes) | |
2883 AC_DEFINE(HAVE_PTHREAD_NP_H), | |
2884 AC_MSG_RESULT(no)) | |
2885 | |
502 | 2886 AC_CHECK_HEADERS(strings.h) |
574 | 2887 if test "x$MACOSX" = "xyes"; then |
2888 dnl The strings.h file on OS/X contains a warning and nothing useful. | |
2889 AC_DEFINE(NO_STRINGS_WITH_STRING_H) | |
2890 else | |
7 | 2891 |
2892 dnl Check if strings.h and string.h can both be included when defined. | |
2893 AC_MSG_CHECKING([if strings.h can be included after string.h]) | |
2894 cppflags_save=$CPPFLAGS | |
2895 CPPFLAGS="$CPPFLAGS $X_CFLAGS" | |
2896 AC_TRY_COMPILE([ | |
2897 #if defined(_AIX) && !defined(_AIX51) && !defined(_NO_PROTO) | |
2898 # define _NO_PROTO /* like in os_unix.h, causes conflict for AIX (Winn) */ | |
2899 /* but don't do it on AIX 5.1 (Uribarri) */ | |
2900 #endif | |
2901 #ifdef HAVE_XM_XM_H | |
2902 # include <Xm/Xm.h> /* This breaks it for HP-UX 11 (Squassabia) */ | |
2903 #endif | |
2904 #ifdef HAVE_STRING_H | |
2905 # include <string.h> | |
2906 #endif | |
2907 #if defined(HAVE_STRINGS_H) | |
2908 # include <strings.h> | |
2909 #endif | |
2910 ], [int i; i = 0;], | |
2911 AC_MSG_RESULT(yes), | |
2912 AC_DEFINE(NO_STRINGS_WITH_STRING_H) | |
2913 AC_MSG_RESULT(no)) | |
2914 CPPFLAGS=$cppflags_save | |
574 | 2915 fi |
7 | 2916 |
2917 dnl Checks for typedefs, structures, and compiler characteristics. | |
2918 AC_PROG_GCC_TRADITIONAL | |
2919 AC_C_CONST | |
1832 | 2920 AC_C_VOLATILE |
7 | 2921 AC_TYPE_MODE_T |
2922 AC_TYPE_OFF_T | |
2923 AC_TYPE_PID_T | |
2924 AC_TYPE_SIZE_T | |
2925 AC_TYPE_UID_T | |
2184
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
2926 AC_TYPE_UINT32_T |
2199
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
2927 |
7 | 2928 AC_HEADER_TIME |
2929 AC_CHECK_TYPE(ino_t, long) | |
2930 AC_CHECK_TYPE(dev_t, unsigned) | |
2184
5028c4d6d825
Fixed encryption big/little endian test.
Bram Moolenaar <bram@vim.org>
parents:
2131
diff
changeset
|
2931 AC_C_BIGENDIAN(,,,) |
7 | 2932 |
2933 AC_MSG_CHECKING(for rlim_t) | |
2934 if eval "test \"`echo '$''{'ac_cv_type_rlim_t'+set}'`\" = set"; then | |
2935 AC_MSG_RESULT([(cached) $ac_cv_type_rlim_t]) | |
2936 else | |
2937 AC_EGREP_CPP(dnl | |
2938 changequote(<<,>>)dnl | |
2939 <<(^|[^a-zA-Z_0-9])rlim_t[^a-zA-Z_0-9]>>dnl | |
2940 changequote([,]), | |
2941 [ | |
2942 #include <sys/types.h> | |
2943 #if STDC_HEADERS | |
1621 | 2944 # include <stdlib.h> |
2945 # include <stddef.h> | |
7 | 2946 #endif |
2947 #ifdef HAVE_SYS_RESOURCE_H | |
1621 | 2948 # include <sys/resource.h> |
7 | 2949 #endif |
2950 ], ac_cv_type_rlim_t=yes, ac_cv_type_rlim_t=no) | |
2951 AC_MSG_RESULT($ac_cv_type_rlim_t) | |
2952 fi | |
2953 if test $ac_cv_type_rlim_t = no; then | |
2954 cat >> confdefs.h <<\EOF | |
2955 #define rlim_t unsigned long | |
2956 EOF | |
2957 fi | |
2958 | |
2959 AC_MSG_CHECKING(for stack_t) | |
2960 if eval "test \"`echo '$''{'ac_cv_type_stack_t'+set}'`\" = set"; then | |
2961 AC_MSG_RESULT([(cached) $ac_cv_type_stack_t]) | |
2962 else | |
2963 AC_EGREP_CPP(stack_t, | |
2964 [ | |
2965 #include <sys/types.h> | |
2966 #if STDC_HEADERS | |
1621 | 2967 # include <stdlib.h> |
2968 # include <stddef.h> | |
7 | 2969 #endif |
2970 #include <signal.h> | |
2971 ], ac_cv_type_stack_t=yes, ac_cv_type_stack_t=no) | |
2972 AC_MSG_RESULT($ac_cv_type_stack_t) | |
2973 fi | |
2974 if test $ac_cv_type_stack_t = no; then | |
2975 cat >> confdefs.h <<\EOF | |
2976 #define stack_t struct sigaltstack | |
2977 EOF | |
2978 fi | |
2979 | |
2980 dnl BSDI uses ss_base while others use ss_sp for the stack pointer. | |
2981 AC_MSG_CHECKING(whether stack_t has an ss_base field) | |
2982 AC_TRY_COMPILE([ | |
2983 #include <sys/types.h> | |
2984 #if STDC_HEADERS | |
1621 | 2985 # include <stdlib.h> |
2986 # include <stddef.h> | |
7 | 2987 #endif |
2988 #include <signal.h> | |
2989 #include "confdefs.h" | |
2990 ], [stack_t sigstk; sigstk.ss_base = 0; ], | |
2991 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SS_BASE), | |
2992 AC_MSG_RESULT(no)) | |
2993 | |
2994 olibs="$LIBS" | |
2995 AC_MSG_CHECKING(--with-tlib argument) | |
2996 AC_ARG_WITH(tlib, [ --with-tlib=library terminal library to be used ],) | |
2997 if test -n "$with_tlib"; then | |
2998 AC_MSG_RESULT($with_tlib) | |
2999 LIBS="$LIBS -l$with_tlib" | |
39 | 3000 AC_MSG_CHECKING(for linking with $with_tlib library) |
3001 AC_TRY_LINK([], [], AC_MSG_RESULT(OK), AC_MSG_ERROR(FAILED)) | |
3002 dnl Need to check for tgetent() below. | |
3003 olibs="$LIBS" | |
7 | 3004 else |
39 | 3005 AC_MSG_RESULT([empty: automatic terminal library selection]) |
7 | 3006 dnl On HP-UX 10.10 termcap or termlib should be used instead of |
3007 dnl curses, because curses is much slower. | |
2700 | 3008 dnl Newer versions of ncurses are preferred over anything, except |
2797 | 3009 dnl when tinfo has been split off, it contains all we need. |
7 | 3010 dnl Older versions of ncurses have bugs, get a new one! |
3011 dnl Digital Unix (OSF1) should use curses (Ronald Schild). | |
997 | 3012 dnl On SCO Openserver should prefer termlib (Roger Cornelius). |
7 | 3013 case "`uname -s 2>/dev/null`" in |
2700 | 3014 OSF1|SCO_SV) tlibs="tinfo ncurses curses termlib termcap";; |
3015 *) tlibs="tinfo ncurses termlib termcap curses";; | |
7 | 3016 esac |
3017 for libname in $tlibs; do | |
3018 AC_CHECK_LIB(${libname}, tgetent,,) | |
3019 if test "x$olibs" != "x$LIBS"; then | |
3020 dnl It's possible that a library is found but it doesn't work | |
3021 dnl e.g., shared library that cannot be found | |
3022 dnl compile and run a test program to be sure | |
3023 AC_TRY_RUN([ | |
3024 #ifdef HAVE_TERMCAP_H | |
3025 # include <termcap.h> | |
3026 #endif | |
1621 | 3027 #if STDC_HEADERS |
3028 # include <stdlib.h> | |
3029 # include <stddef.h> | |
3030 #endif | |
7 | 3031 main() {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(0); }], |
3032 res="OK", res="FAIL", res="FAIL") | |
3033 if test "$res" = "OK"; then | |
3034 break | |
3035 fi | |
3036 AC_MSG_RESULT($libname library is not usable) | |
3037 LIBS="$olibs" | |
3038 fi | |
3039 done | |
39 | 3040 if test "x$olibs" = "x$LIBS"; then |
3041 AC_MSG_RESULT(no terminal library found) | |
3042 fi | |
7 | 3043 fi |
39 | 3044 |
3045 if test "x$olibs" = "x$LIBS"; then | |
3046 AC_MSG_CHECKING([for tgetent()]) | |
282 | 3047 AC_TRY_LINK([], |
39 | 3048 [char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist");], |
3049 AC_MSG_RESULT(yes), | |
3050 AC_MSG_ERROR([NOT FOUND! | |
3051 You need to install a terminal library; for example ncurses. | |
3052 Or specify the name of the library with --with-tlib.])) | |
3053 fi | |
3054 | |
1621 | 3055 AC_CACHE_CHECK([whether we talk terminfo], [vim_cv_terminfo], |
3056 [ | |
5757 | 3057 AC_RUN_IFELSE([AC_LANG_SOURCE([[ |
1621 | 3058 #include "confdefs.h" |
7 | 3059 #ifdef HAVE_TERMCAP_H |
3060 # include <termcap.h> | |
3061 #endif | |
1621 | 3062 #ifdef HAVE_STRING_H |
3063 # include <string.h> | |
3064 #endif | |
3065 #if STDC_HEADERS | |
3066 # include <stdlib.h> | |
3067 # include <stddef.h> | |
3068 #endif | |
7 | 3069 main() |
1621 | 3070 {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(!strcmp(s==0 ? "" : s, "1")); } |
5757 | 3071 ]])],[ |
1621 | 3072 vim_cv_terminfo=no |
3073 ],[ | |
3074 vim_cv_terminfo=yes | |
3075 ],[ | |
3076 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_terminfo') | |
3077 ]) | |
3078 ]) | |
3079 | |
3080 if test "x$vim_cv_terminfo" = "xyes" ; then | |
3081 AC_DEFINE(TERMINFO) | |
3082 fi | |
7 | 3083 |
3084 if test "x$olibs" != "x$LIBS"; then | |
1621 | 3085 AC_CACHE_CHECK([what tgetent() returns for an unknown terminal], [vim_cv_tgent], |
3086 [ | |
5757 | 3087 AC_RUN_IFELSE([AC_LANG_SOURCE([[ |
1621 | 3088 #include "confdefs.h" |
7 | 3089 #ifdef HAVE_TERMCAP_H |
3090 # include <termcap.h> | |
3091 #endif | |
1621 | 3092 #if STDC_HEADERS |
3093 # include <stdlib.h> | |
3094 # include <stddef.h> | |
3095 #endif | |
7 | 3096 main() |
1621 | 3097 {char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist"); exit(res != 0); } |
5757 | 3098 ]])],[ |
1621 | 3099 vim_cv_tgent=zero |
3100 ],[ | |
3101 vim_cv_tgent=non-zero | |
3102 ],[ | |
3103 AC_MSG_ERROR(failed to compile test program.) | |
3104 ]) | |
3105 ]) | |
3106 | |
3107 if test "x$vim_cv_tgent" = "xzero" ; then | |
3108 AC_DEFINE(TGETENT_ZERO_ERR, 0) | |
3109 fi | |
7 | 3110 fi |
3111 | |
3112 AC_MSG_CHECKING(whether termcap.h contains ospeed) | |
3113 AC_TRY_LINK([ | |
3114 #ifdef HAVE_TERMCAP_H | |
3115 # include <termcap.h> | |
3116 #endif | |
3117 ], [ospeed = 20000], | |
3118 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_OSPEED), | |
3119 [AC_MSG_RESULT(no) | |
3120 AC_MSG_CHECKING(whether ospeed can be extern) | |
3121 AC_TRY_LINK([ | |
3122 #ifdef HAVE_TERMCAP_H | |
3123 # include <termcap.h> | |
3124 #endif | |
3125 extern short ospeed; | |
3126 ], [ospeed = 20000], | |
3127 AC_MSG_RESULT(yes); AC_DEFINE(OSPEED_EXTERN), | |
3128 AC_MSG_RESULT(no))] | |
3129 ) | |
3130 | |
3131 AC_MSG_CHECKING([whether termcap.h contains UP, BC and PC]) | |
3132 AC_TRY_LINK([ | |
3133 #ifdef HAVE_TERMCAP_H | |
3134 # include <termcap.h> | |
3135 #endif | |
3136 ], [if (UP == 0 && BC == 0) PC = 1], | |
3137 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_UP_BC_PC), | |
3138 [AC_MSG_RESULT(no) | |
3139 AC_MSG_CHECKING([whether UP, BC and PC can be extern]) | |
3140 AC_TRY_LINK([ | |
3141 #ifdef HAVE_TERMCAP_H | |
3142 # include <termcap.h> | |
3143 #endif | |
3144 extern char *UP, *BC, PC; | |
3145 ], [if (UP == 0 && BC == 0) PC = 1], | |
3146 AC_MSG_RESULT(yes); AC_DEFINE(UP_BC_PC_EXTERN), | |
3147 AC_MSG_RESULT(no))] | |
3148 ) | |
3149 | |
3150 AC_MSG_CHECKING(whether tputs() uses outfuntype) | |
3151 AC_TRY_COMPILE([ | |
3152 #ifdef HAVE_TERMCAP_H | |
3153 # include <termcap.h> | |
3154 #endif | |
3155 ], [extern int xx(); tputs("test", 1, (outfuntype)xx)], | |
3156 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_OUTFUNTYPE), | |
3157 AC_MSG_RESULT(no)) | |
3158 | |
3159 dnl On some SCO machines sys/select redefines struct timeval | |
3160 AC_MSG_CHECKING([whether sys/select.h and sys/time.h may both be included]) | |
3161 AC_TRY_COMPILE([ | |
3162 #include <sys/types.h> | |
3163 #include <sys/time.h> | |
3164 #include <sys/select.h>], , | |
3165 AC_MSG_RESULT(yes) | |
3166 AC_DEFINE(SYS_SELECT_WITH_SYS_TIME), | |
3167 AC_MSG_RESULT(no)) | |
3168 | |
3169 dnl AC_DECL_SYS_SIGLIST | |
3170 | |
3171 dnl Checks for pty.c (copied from screen) ========================== | |
3172 AC_MSG_CHECKING(for /dev/ptc) | |
3173 if test -r /dev/ptc; then | |
3174 AC_DEFINE(HAVE_DEV_PTC) | |
3175 AC_MSG_RESULT(yes) | |
3176 else | |
3177 AC_MSG_RESULT(no) | |
3178 fi | |
3179 | |
3180 AC_MSG_CHECKING(for SVR4 ptys) | |
3181 if test -c /dev/ptmx ; then | |
3182 AC_TRY_LINK([], [ptsname(0);grantpt(0);unlockpt(0);], | |
3183 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SVR4_PTYS), | |
3184 AC_MSG_RESULT(no)) | |
3185 else | |
3186 AC_MSG_RESULT(no) | |
3187 fi | |
3188 | |
3189 AC_MSG_CHECKING(for ptyranges) | |
3190 if test -d /dev/ptym ; then | |
3191 pdir='/dev/ptym' | |
3192 else | |
3193 pdir='/dev' | |
3194 fi | |
3195 dnl SCO uses ptyp%d | |
3196 AC_EGREP_CPP(yes, | |
3197 [#ifdef M_UNIX | |
3198 yes; | |
3199 #endif | |
3200 ], ptys=`echo /dev/ptyp??`, ptys=`echo $pdir/pty??`) | |
3201 dnl if test -c /dev/ptyp19; then | |
3202 dnl ptys=`echo /dev/ptyp??` | |
3203 dnl else | |
3204 dnl ptys=`echo $pdir/pty??` | |
3205 dnl fi | |
3206 if test "$ptys" != "$pdir/pty??" ; then | |
3207 p0=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\).$/\1/g' | sort -u | tr -d '\012'` | |
3208 p1=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\)$/\1/g' | sort -u | tr -d '\012'` | |
3209 AC_DEFINE_UNQUOTED(PTYRANGE0,"$p0") | |
3210 AC_DEFINE_UNQUOTED(PTYRANGE1,"$p1") | |
3211 AC_MSG_RESULT([$p0 / $p1]) | |
3212 else | |
3213 AC_MSG_RESULT([don't know]) | |
3214 fi | |
3215 | |
3216 dnl **** pty mode/group handling **** | |
3217 dnl | |
3218 dnl support provided by Luke Mewburn <lm@rmit.edu.au>, 931222 | |
3219 rm -f conftest_grp | |
1621 | 3220 AC_CACHE_CHECK([default tty permissions/group], [vim_cv_tty_group], |
3221 [ | |
5757 | 3222 AC_RUN_IFELSE([AC_LANG_SOURCE([[ |
1621 | 3223 #include "confdefs.h" |
7 | 3224 #include <sys/types.h> |
1621 | 3225 #if STDC_HEADERS |
3226 # include <stdlib.h> | |
3227 # include <stddef.h> | |
3228 #endif | |
3229 #ifdef HAVE_UNISTD_H | |
3230 #include <unistd.h> | |
3231 #endif | |
7 | 3232 #include <sys/stat.h> |
3233 #include <stdio.h> | |
3234 main() | |
3235 { | |
3236 struct stat sb; | |
3237 char *x,*ttyname(); | |
3238 int om, m; | |
3239 FILE *fp; | |
3240 | |
3241 if (!(x = ttyname(0))) exit(1); | |
3242 if (stat(x, &sb)) exit(1); | |
3243 om = sb.st_mode; | |
3244 if (om & 002) exit(0); | |
3245 m = system("mesg y"); | |
3246 if (m == -1 || m == 127) exit(1); | |
3247 if (stat(x, &sb)) exit(1); | |
3248 m = sb.st_mode; | |
3249 if (chmod(x, om)) exit(1); | |
3250 if (m & 002) exit(0); | |
3251 if (sb.st_gid == getgid()) exit(1); | |
3252 if (!(fp=fopen("conftest_grp", "w"))) | |
3253 exit(1); | |
3254 fprintf(fp, "%d\n", sb.st_gid); | |
3255 fclose(fp); | |
3256 exit(0); | |
3257 } | |
5757 | 3258 ]])],[ |
1621 | 3259 if test -f conftest_grp; then |
3260 vim_cv_tty_group=`cat conftest_grp` | |
3261 if test "x$vim_cv_tty_mode" = "x" ; then | |
3262 vim_cv_tty_mode=0620 | |
3263 fi | |
3264 AC_MSG_RESULT([pty mode: $vim_cv_tty_mode, group: $vim_cv_tty_group]) | |
3265 else | |
3266 vim_cv_tty_group=world | |
2018 | 3267 AC_MSG_RESULT([ptys are world accessible]) |
1621 | 3268 fi |
3269 ],[ | |
3270 vim_cv_tty_group=world | |
2018 | 3271 AC_MSG_RESULT([can't determine - assume ptys are world accessible]) |
1621 | 3272 ],[ |
3273 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_tty_group' and 'vim_cv_tty_mode') | |
3274 ]) | |
3275 ]) | |
7 | 3276 rm -f conftest_grp |
3277 | |
1621 | 3278 if test "x$vim_cv_tty_group" != "xworld" ; then |
3279 AC_DEFINE_UNQUOTED(PTYGROUP,$vim_cv_tty_group) | |
3280 if test "x$vim_cv_tty_mode" = "x" ; then | |
4352 | 3281 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)]) |
1621 | 3282 else |
3283 AC_DEFINE(PTYMODE, 0620) | |
3284 fi | |
3285 fi | |
3286 | |
7 | 3287 dnl Checks for library functions. =================================== |
3288 | |
3289 AC_TYPE_SIGNAL | |
3290 | |
3291 dnl find out what to use at the end of a signal function | |
3292 if test $ac_cv_type_signal = void; then | |
3293 AC_DEFINE(SIGRETURN, [return]) | |
3294 else | |
3295 AC_DEFINE(SIGRETURN, [return 0]) | |
3296 fi | |
3297 | |
3298 dnl check if struct sigcontext is defined (used for SGI only) | |
3299 AC_MSG_CHECKING(for struct sigcontext) | |
3300 AC_TRY_COMPILE([ | |
3301 #include <signal.h> | |
3302 test_sig() | |
3303 { | |
3304 struct sigcontext *scont; | |
3305 scont = (struct sigcontext *)0; | |
3306 return 1; | |
3307 } ], , | |
3308 AC_MSG_RESULT(yes) | |
3309 AC_DEFINE(HAVE_SIGCONTEXT), | |
3310 AC_MSG_RESULT(no)) | |
3311 | |
3312 dnl tricky stuff: try to find out if getcwd() is implemented with | |
3313 dnl system("sh -c pwd") | |
1621 | 3314 AC_CACHE_CHECK([getcwd implementation is broken], [vim_cv_getcwd_broken], |
3315 [ | |
5757 | 3316 AC_RUN_IFELSE([AC_LANG_SOURCE([[ |
1621 | 3317 #include "confdefs.h" |
3318 #ifdef HAVE_UNISTD_H | |
3319 #include <unistd.h> | |
3320 #endif | |
7 | 3321 char *dagger[] = { "IFS=pwd", 0 }; |
3322 main() | |
3323 { | |
3324 char buffer[500]; | |
3325 extern char **environ; | |
3326 environ = dagger; | |
3327 return getcwd(buffer, 500) ? 0 : 1; | |
1621 | 3328 } |
5757 | 3329 ]])],[ |
1621 | 3330 vim_cv_getcwd_broken=no |
3331 ],[ | |
3332 vim_cv_getcwd_broken=yes | |
3333 ],[ | |
3334 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_getcwd_broken') | |
3335 ]) | |
3336 ]) | |
3337 | |
3338 if test "x$vim_cv_getcwd_broken" = "xyes" ; then | |
3339 AC_DEFINE(BAD_GETCWD) | |
3340 fi | |
7 | 3341 |
2087
3112fcc89238
updated for version 7.2.371
Bram Moolenaar <bram@zimbu.org>
parents:
2077
diff
changeset
|
3342 dnl Check for functions in one big call, to reduce the size of configure. |
3112fcc89238
updated for version 7.2.371
Bram Moolenaar <bram@zimbu.org>
parents:
2077
diff
changeset
|
3343 dnl Can only be used for functions that do not require any include. |
3112fcc89238
updated for version 7.2.371
Bram Moolenaar <bram@zimbu.org>
parents:
2077
diff
changeset
|
3344 AC_CHECK_FUNCS(bcmp fchdir fchown fsync getcwd getpseudotty \ |
3744 | 3345 getpwent getpwnam getpwuid getrlimit gettimeofday getwd lstat memcmp \ |
1997 | 3346 memset mkdtemp nanosleep opendir putenv qsort readlink select setenv \ |
7 | 3347 setpgid setsid sigaltstack sigstack sigset sigsetjmp sigaction \ |
273 | 3348 sigvec strcasecmp strerror strftime stricmp strncasecmp \ |
258 | 3349 strnicmp strpbrk strtol tgetent towlower towupper iswupper \ |
3350 usleep utime utimes) | |
2087
3112fcc89238
updated for version 7.2.371
Bram Moolenaar <bram@zimbu.org>
parents:
2077
diff
changeset
|
3351 AC_FUNC_FSEEKO |
7 | 3352 |
2131
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2110
diff
changeset
|
3353 dnl define _LARGE_FILES, _FILE_OFFSET_BITS and _LARGEFILE_SOURCE when |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2110
diff
changeset
|
3354 dnl appropriate, so that off_t is 64 bits when needed. |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2110
diff
changeset
|
3355 AC_SYS_LARGEFILE |
8ef9da918a98
updated for version 7.2.413
Bram Moolenaar <bram@zimbu.org>
parents:
2110
diff
changeset
|
3356 |
7 | 3357 dnl fstatfs() can take 2 to 4 arguments, try to use st_blksize if possible |
3358 AC_MSG_CHECKING(for st_blksize) | |
3359 AC_TRY_COMPILE( | |
3360 [#include <sys/types.h> | |
3361 #include <sys/stat.h>], | |
3362 [ struct stat st; | |
3363 int n; | |
3364 | |
3365 stat("/", &st); | |
3366 n = (int)st.st_blksize;], | |
3367 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ST_BLKSIZE), | |
3368 AC_MSG_RESULT(no)) | |
3369 | |
1621 | 3370 AC_CACHE_CHECK([whether stat() ignores a trailing slash], [vim_cv_stat_ignores_slash], |
3371 [ | |
5757 | 3372 AC_RUN_IFELSE([AC_LANG_SOURCE([[ |
1621 | 3373 #include "confdefs.h" |
3374 #if STDC_HEADERS | |
3375 # include <stdlib.h> | |
3376 # include <stddef.h> | |
3377 #endif | |
3378 #include <sys/types.h> | |
7 | 3379 #include <sys/stat.h> |
1621 | 3380 main() {struct stat st; exit(stat("configure/", &st) != 0); } |
5757 | 3381 ]])],[ |
1621 | 3382 vim_cv_stat_ignores_slash=yes |
3383 ],[ | |
3384 vim_cv_stat_ignores_slash=no | |
3385 ],[ | |
3386 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_stat_ignores_slash') | |
3387 ]) | |
3388 ]) | |
7 | 3389 |
1621 | 3390 if test "x$vim_cv_stat_ignores_slash" = "xyes" ; then |
3391 AC_DEFINE(STAT_IGNORES_SLASH) | |
3392 fi | |
3393 | |
7 | 3394 dnl Link with iconv for charset translation, if not found without library. |
3395 dnl check for iconv() requires including iconv.h | |
3396 dnl Add "-liconv" when possible; Solaris has iconv but use GNU iconv when it | |
3397 dnl has been installed. | |
3398 AC_MSG_CHECKING(for iconv_open()) | |
3399 save_LIBS="$LIBS" | |
3400 LIBS="$LIBS -liconv" | |
3401 AC_TRY_LINK([ | |
3402 #ifdef HAVE_ICONV_H | |
3403 # include <iconv.h> | |
3404 #endif | |
3405 ], [iconv_open("fr", "to");], | |
3406 AC_MSG_RESULT(yes; with -liconv); AC_DEFINE(HAVE_ICONV), | |
3407 LIBS="$save_LIBS" | |
3408 AC_TRY_LINK([ | |
3409 #ifdef HAVE_ICONV_H | |
3410 # include <iconv.h> | |
3411 #endif | |
3412 ], [iconv_open("fr", "to");], | |
3413 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ICONV), | |
3414 AC_MSG_RESULT(no))) | |
3415 | |
3416 | |
3417 AC_MSG_CHECKING(for nl_langinfo(CODESET)) | |
3418 AC_TRY_LINK([ | |
3419 #ifdef HAVE_LANGINFO_H | |
3420 # include <langinfo.h> | |
3421 #endif | |
3422 ], [char *cs = nl_langinfo(CODESET);], | |
3423 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_NL_LANGINFO_CODESET), | |
3424 AC_MSG_RESULT(no)) | |
3425 | |
1621 | 3426 dnl Need various functions for floating point support. Only enable |
3427 dnl floating point when they are all present. | |
3428 AC_CHECK_LIB(m, strtod) | |
3429 AC_MSG_CHECKING([for strtod() and other floating point functions]) | |
3430 AC_TRY_LINK([ | |
3431 #ifdef HAVE_MATH_H | |
3432 # include <math.h> | |
3433 #endif | |
3434 #if STDC_HEADERS | |
3435 # include <stdlib.h> | |
3436 # include <stddef.h> | |
3437 #endif | |
3438 ], [char *s; double d; | |
3439 d = strtod("1.1", &s); | |
3440 d = fabs(1.11); | |
3441 d = ceil(1.11); | |
3442 d = floor(1.11); | |
3443 d = log10(1.11); | |
3444 d = pow(1.11, 2.22); | |
3445 d = sqrt(1.11); | |
3446 d = sin(1.11); | |
3447 d = cos(1.11); | |
3448 d = atan(1.11); | |
3449 ], | |
3450 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_FLOAT_FUNCS), | |
3451 AC_MSG_RESULT(no)) | |
3452 | |
7 | 3453 dnl Link with -lposix1e for ACL stuff; if not found, try -lacl for SGI |
3454 dnl when -lacl works, also try to use -lattr (required for Debian). | |
3330 | 3455 dnl On Solaris, use the acl_get/set functions in libsec, if present. |
7 | 3456 AC_MSG_CHECKING(--disable-acl argument) |
3457 AC_ARG_ENABLE(acl, | |
3458 [ --disable-acl Don't check for ACL support.], | |
3459 , [enable_acl="yes"]) | |
3460 if test "$enable_acl" = "yes"; then | |
3461 AC_MSG_RESULT(no) | |
3462 AC_CHECK_LIB(posix1e, acl_get_file, [LIBS="$LIBS -lposix1e"], | |
3463 AC_CHECK_LIB(acl, acl_get_file, [LIBS="$LIBS -lacl" | |
3464 AC_CHECK_LIB(attr, fgetxattr, LIBS="$LIBS -lattr",,)],,),) | |
3465 | |
3466 AC_MSG_CHECKING(for POSIX ACL support) | |
3467 AC_TRY_LINK([ | |
3468 #include <sys/types.h> | |
3469 #ifdef HAVE_SYS_ACL_H | |
3470 # include <sys/acl.h> | |
3471 #endif | |
3472 acl_t acl;], [acl = acl_get_file("foo", ACL_TYPE_ACCESS); | |
3473 acl_set_file("foo", ACL_TYPE_ACCESS, acl); | |
3474 acl_free(acl);], | |
3475 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_POSIX_ACL), | |
3476 AC_MSG_RESULT(no)) | |
3477 | |
3330 | 3478 AC_CHECK_LIB(sec, acl_get, [LIBS="$LIBS -lsec"; AC_DEFINE(HAVE_SOLARIS_ZFS_ACL)], |
7 | 3479 AC_MSG_CHECKING(for Solaris ACL support) |
3480 AC_TRY_LINK([ | |
3481 #ifdef HAVE_SYS_ACL_H | |
3482 # include <sys/acl.h> | |
3483 #endif], [acl("foo", GETACLCNT, 0, NULL); | |
3484 ], | |
3485 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SOLARIS_ACL), | |
3330 | 3486 AC_MSG_RESULT(no))) |
7 | 3487 |
3488 AC_MSG_CHECKING(for AIX ACL support) | |
3489 AC_TRY_LINK([ | |
1621 | 3490 #if STDC_HEADERS |
3491 # include <stdlib.h> | |
3492 # include <stddef.h> | |
3493 #endif | |
7 | 3494 #ifdef HAVE_SYS_ACL_H |
3495 # include <sys/acl.h> | |
3496 #endif | |
3497 #ifdef HAVE_SYS_ACCESS_H | |
3498 # include <sys/access.h> | |
3499 #endif | |
3500 #define _ALL_SOURCE | |
3501 | |
3502 #include <sys/stat.h> | |
3503 | |
3504 int aclsize; | |
3505 struct acl *aclent;], [aclsize = sizeof(struct acl); | |
3506 aclent = (void *)malloc(aclsize); | |
3507 statacl("foo", STX_NORMAL, aclent, aclsize); | |
3508 ], | |
3509 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_AIX_ACL), | |
3510 AC_MSG_RESULT(no)) | |
3511 else | |
3512 AC_MSG_RESULT(yes) | |
3513 fi | |
3514 | |
3515 AC_MSG_CHECKING(--disable-gpm argument) | |
3516 AC_ARG_ENABLE(gpm, | |
3517 [ --disable-gpm Don't use gpm (Linux mouse daemon).], , | |
3518 [enable_gpm="yes"]) | |
3519 | |
3520 if test "$enable_gpm" = "yes"; then | |
3521 AC_MSG_RESULT(no) | |
3522 dnl Checking if gpm support can be compiled | |
3523 AC_CACHE_CHECK([for gpm], vi_cv_have_gpm, | |
3524 [olibs="$LIBS" ; LIBS="-lgpm"] | |
3525 AC_TRY_LINK( | |
3526 [#include <gpm.h> | |
3527 #include <linux/keyboard.h>], | |
3528 [Gpm_GetLibVersion(NULL);], | |
3529 dnl Configure defines HAVE_GPM, if it is defined feature.h defines | |
3530 dnl FEAT_MOUSE_GPM if mouse support is included | |
3531 [vi_cv_have_gpm=yes], | |
3532 [vi_cv_have_gpm=no]) | |
3533 [LIBS="$olibs"] | |
3534 ) | |
3535 if test $vi_cv_have_gpm = yes; then | |
3536 LIBS="$LIBS -lgpm" | |
3537 AC_DEFINE(HAVE_GPM) | |
3538 fi | |
3539 else | |
3540 AC_MSG_RESULT(yes) | |
3541 fi | |
3542 | |
1621 | 3543 AC_MSG_CHECKING(--disable-sysmouse argument) |
3544 AC_ARG_ENABLE(sysmouse, | |
3545 [ --disable-sysmouse Don't use sysmouse (mouse in *BSD console).], , | |
3546 [enable_sysmouse="yes"]) | |
3547 | |
3548 if test "$enable_sysmouse" = "yes"; then | |
3549 AC_MSG_RESULT(no) | |
3550 dnl Checking if sysmouse support can be compiled | |
3551 dnl Configure defines HAVE_SYSMOUSE, if it is defined feature.h | |
3552 dnl defines FEAT_SYSMOUSE if mouse support is included | |
3553 AC_CACHE_CHECK([for sysmouse], vi_cv_have_sysmouse, | |
3554 AC_TRY_LINK( | |
3555 [#include <sys/consio.h> | |
3556 #include <signal.h> | |
3557 #include <sys/fbio.h>], | |
3558 [struct mouse_info mouse; | |
3559 mouse.operation = MOUSE_MODE; | |
3560 mouse.operation = MOUSE_SHOW; | |
3561 mouse.u.mode.mode = 0; | |
3562 mouse.u.mode.signal = SIGUSR2;], | |
3563 [vi_cv_have_sysmouse=yes], | |
3564 [vi_cv_have_sysmouse=no]) | |
3565 ) | |
3566 if test $vi_cv_have_sysmouse = yes; then | |
3567 AC_DEFINE(HAVE_SYSMOUSE) | |
3568 fi | |
3569 else | |
3570 AC_MSG_RESULT(yes) | |
3571 fi | |
3572 | |
2003 | 3573 dnl make sure the FD_CLOEXEC flag for fcntl()'s F_SETFD command is known |
3574 AC_MSG_CHECKING(for FD_CLOEXEC) | |
3575 AC_TRY_COMPILE( | |
3576 [#if HAVE_FCNTL_H | |
3577 # include <fcntl.h> | |
3578 #endif], | |
3579 [ int flag = FD_CLOEXEC;], | |
3580 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_FD_CLOEXEC), | |
3581 AC_MSG_RESULT(not usable)) | |
3582 | |
7 | 3583 dnl rename needs to be checked separately to work on Nextstep with cc |
3584 AC_MSG_CHECKING(for rename) | |
3585 AC_TRY_LINK([#include <stdio.h>], [rename("this", "that")], | |
3586 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_RENAME), | |
3587 AC_MSG_RESULT(no)) | |
3588 | |
3589 dnl sysctl() may exist but not the arguments we use | |
3590 AC_MSG_CHECKING(for sysctl) | |
3591 AC_TRY_COMPILE( | |
3592 [#include <sys/types.h> | |
3593 #include <sys/sysctl.h>], | |
3594 [ int mib[2], r; | |
3595 size_t len; | |
3596 | |
3597 mib[0] = CTL_HW; | |
3598 mib[1] = HW_USERMEM; | |
3599 len = sizeof(r); | |
3600 (void)sysctl(mib, 2, &r, &len, (void *)0, (size_t)0); | |
3601 ], | |
3602 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSCTL), | |
3603 AC_MSG_RESULT(not usable)) | |
3604 | |
3605 dnl sysinfo() may exist but not be Linux compatible | |
3606 AC_MSG_CHECKING(for sysinfo) | |
3607 AC_TRY_COMPILE( | |
3608 [#include <sys/types.h> | |
3609 #include <sys/sysinfo.h>], | |
3610 [ struct sysinfo sinfo; | |
3611 int t; | |
3612 | |
3613 (void)sysinfo(&sinfo); | |
3614 t = sinfo.totalram; | |
3615 ], | |
3616 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSINFO), | |
3617 AC_MSG_RESULT(not usable)) | |
3618 | |
1110 | 3619 dnl struct sysinfo may have the mem_unit field or not |
3620 AC_MSG_CHECKING(for sysinfo.mem_unit) | |
3621 AC_TRY_COMPILE( | |
3622 [#include <sys/types.h> | |
3623 #include <sys/sysinfo.h>], | |
3624 [ struct sysinfo sinfo; | |
4841
81dedcd64821
updated for version 7.3.1167
Bram Moolenaar <bram@vim.org>
parents:
4833
diff
changeset
|
3625 sinfo.mem_unit = 1; |
1110 | 3626 ], |
3627 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSINFO_MEM_UNIT), | |
3628 AC_MSG_RESULT(no)) | |
3629 | |
7 | 3630 dnl sysconf() may exist but not support what we want to use |
3631 AC_MSG_CHECKING(for sysconf) | |
3632 AC_TRY_COMPILE( | |
3633 [#include <unistd.h>], | |
3634 [ (void)sysconf(_SC_PAGESIZE); | |
3635 (void)sysconf(_SC_PHYS_PAGES); | |
3636 ], | |
3637 AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYSCONF), | |
3638 AC_MSG_RESULT(not usable)) | |
3639 | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
3640 AC_CHECK_SIZEOF([int]) |
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
3641 AC_CHECK_SIZEOF([long]) |
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
3642 AC_CHECK_SIZEOF([time_t]) |
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
3643 AC_CHECK_SIZEOF([off_t]) |
2232
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
3644 |
5684 | 3645 dnl Use different names to avoid clashing with other header files. |
3646 AC_DEFINE_UNQUOTED(VIM_SIZEOF_INT, [$ac_cv_sizeof_int]) | |
3647 AC_DEFINE_UNQUOTED(VIM_SIZEOF_LONG, [$ac_cv_sizeof_long]) | |
3648 | |
2199
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3649 dnl Make sure that uint32_t is really 32 bits unsigned. |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3650 AC_MSG_CHECKING([uint32_t is 32 bits]) |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3651 AC_TRY_RUN([ |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3652 #ifdef HAVE_STDINT_H |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3653 # include <stdint.h> |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3654 #endif |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3655 #ifdef HAVE_INTTYPES_H |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3656 # include <inttypes.h> |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3657 #endif |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3658 main() { |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3659 uint32_t nr1 = (uint32_t)-1; |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3660 uint32_t nr2 = (uint32_t)0xffffffffUL; |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3661 if (sizeof(uint32_t) != 4 || nr1 != 0xffffffffUL || nr2 + 1 != 0) exit(1); |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3662 exit(0); |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3663 }], |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3664 AC_MSG_RESULT(ok), |
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3665 AC_MSG_ERROR([WRONG! uint32_t not defined correctly.]), |
3216 | 3666 AC_MSG_WARN([cannot check uint32_t when cross-compiling.])) |
2199
014a996ac896
Use UINT32_T in the code, define it to uint32_t or unsigned int.
Bram Moolenaar <bram@vim.org>
parents:
2184
diff
changeset
|
3667 |
1621 | 3668 dnl Check for memmove() before bcopy(), makes memmove() be used when both are |
3669 dnl present, fixes problem with incompatibility between Solaris 2.4 and 2.5. | |
3670 | |
7 | 3671 [bcopy_test_prog=' |
1621 | 3672 #include "confdefs.h" |
3673 #ifdef HAVE_STRING_H | |
3674 # include <string.h> | |
3675 #endif | |
3676 #if STDC_HEADERS | |
3677 # include <stdlib.h> | |
3678 # include <stddef.h> | |
3679 #endif | |
7 | 3680 main() { |
3681 char buf[10]; | |
3682 strcpy(buf, "abcdefghi"); | |
3683 mch_memmove(buf, buf + 2, 3); | |
3684 if (strncmp(buf, "ababcf", 6)) | |
3685 exit(1); | |
3686 strcpy(buf, "abcdefghi"); | |
3687 mch_memmove(buf + 2, buf, 3); | |
3688 if (strncmp(buf, "cdedef", 6)) | |
3689 exit(1); | |
3690 exit(0); /* libc version works properly. */ | |
3691 }'] | |
3692 | |
1621 | 3693 AC_CACHE_CHECK([whether memmove handles overlaps],[vim_cv_memmove_handles_overlap], |
3694 [ | |
5757 | 3695 AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_memmove(s,d,l) memmove(d,s,l) $bcopy_test_prog]])], |
1621 | 3696 [ |
3697 vim_cv_memmove_handles_overlap=yes | |
3698 ],[ | |
3699 vim_cv_memmove_handles_overlap=no | |
3700 ],[ | |
3701 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_memmove_handles_overlap') | |
3702 ]) | |
3703 ]) | |
7 | 3704 |
1621 | 3705 if test "x$vim_cv_memmove_handles_overlap" = "xyes" ; then |
3706 AC_DEFINE(USEMEMMOVE) | |
3707 else | |
3708 AC_CACHE_CHECK([whether bcopy handles overlaps],[vim_cv_bcopy_handles_overlap], | |
3709 [ | |
5757 | 3710 AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_bcopy(s,d,l) bcopy(d,s,l) $bcopy_test_prog]])], |
1621 | 3711 [ |
3712 vim_cv_bcopy_handles_overlap=yes | |
3713 ],[ | |
3714 vim_cv_bcopy_handles_overlap=no | |
3715 ],[ | |
3716 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_bcopy_handles_overlap') | |
3717 ]) | |
3718 ]) | |
3719 | |
3720 if test "x$vim_cv_bcopy_handles_overlap" = "xyes" ; then | |
3721 AC_DEFINE(USEBCOPY) | |
3722 else | |
3723 AC_CACHE_CHECK([whether memcpy handles overlaps],[vim_cv_memcpy_handles_overlap], | |
3724 [ | |
5757 | 3725 AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_memcpy(s,d,l) memcpy(d,s,l) $bcopy_test_prog]])], |
1621 | 3726 [ |
3727 vim_cv_memcpy_handles_overlap=yes | |
3728 ],[ | |
3729 vim_cv_memcpy_handles_overlap=no | |
3730 ],[ | |
3731 AC_MSG_ERROR(cross-compiling: please set 'vim_cv_memcpy_handles_overlap') | |
3732 ]) | |
3733 ]) | |
3734 | |
3735 if test "x$vim_cv_memcpy_handles_overlap" = "xyes" ; then | |
3736 AC_DEFINE(USEMEMCPY) | |
3737 fi | |
3738 fi | |
3739 fi | |
3740 | |
7 | 3741 |
3742 dnl Check for multibyte locale functions | |
3743 dnl Find out if _Xsetlocale() is supported by libX11. | |
3744 dnl Check if X_LOCALE should be defined. | |
6282 | 3745 if test "x$with_x" = "xyes"; then |
7 | 3746 cflags_save=$CFLAGS |
6282 | 3747 libs_save=$LIBS |
3748 LIBS="$LIBS $X_LIBS $GUI_LIB_LOC $GUI_X_LIBS $X_PRE_LIBS $X_LIB $X_EXTRA_LIBS" | |
3749 CFLAGS="$CFLAGS $X_CFLAGS" | |
3750 | |
3751 AC_MSG_CHECKING(whether X_LOCALE needed) | |
3752 AC_TRY_COMPILE([#include <X11/Xlocale.h>],, | |
3753 AC_TRY_LINK_FUNC([_Xsetlocale], [AC_MSG_RESULT(yes) | |
3754 AC_DEFINE(X_LOCALE)], AC_MSG_RESULT(no)), | |
3755 AC_MSG_RESULT(no)) | |
3756 | |
3757 AC_MSG_CHECKING(whether Xutf8SetWMProperties() can be used) | |
3758 AC_TRY_LINK_FUNC([Xutf8SetWMProperties], [AC_MSG_RESULT(yes) | |
3759 AC_DEFINE(HAVE_XUTF8SETWMPROPERTIES)], AC_MSG_RESULT(no)) | |
3760 | |
7 | 3761 CFLAGS=$cflags_save |
6282 | 3762 LIBS=$libs_save |
7 | 3763 fi |
3764 | |
3765 dnl Link with xpg4, it is said to make Korean locale working | |
3766 AC_CHECK_LIB(xpg4, _xpg4_setrunelocale, [LIBS="$LIBS -lxpg4"],,) | |
3767 | |
1871 | 3768 dnl Check how we can run ctags. Default to "ctags" when nothing works. |
2797 | 3769 dnl Use --version to detect Exuberant ctags (preferred) |
834 | 3770 dnl Add --fields=+S to get function signatures for omni completion. |
7 | 3771 dnl -t for typedefs (many ctags have this) |
3772 dnl -s for static functions (Elvis ctags only?) | |
3773 dnl -v for variables. Dangerous, most ctags take this for 'vgrind style'. | |
3774 dnl -i+m to test for older Exuberant ctags | |
3775 AC_MSG_CHECKING(how to create tags) | |
3776 test -f tags && mv tags tags.save | |
2815 | 3777 if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then |
3778 TAGPRG="ctags -I INIT+ --fields=+S" | |
3779 elif (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then | |
2797 | 3780 TAGPRG="exctags -I INIT+ --fields=+S" |
2815 | 3781 elif (eval exuberant-ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then |
3782 TAGPRG="exuberant-ctags -I INIT+ --fields=+S" | |
7 | 3783 else |
1871 | 3784 TAGPRG="ctags" |
7 | 3785 (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags" |
3786 (eval etags -c /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags -c" | |
3787 (eval ctags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags" | |
3788 (eval ctags -t /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -t" | |
3789 (eval ctags -ts /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -ts" | |
3790 (eval ctags -tvs /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -tvs" | |
3791 (eval ctags -i+m /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="ctags -i+m" | |
3792 fi | |
3793 test -f tags.save && mv tags.save tags | |
3794 AC_MSG_RESULT($TAGPRG) AC_SUBST(TAGPRG) | |
3795 | |
3796 dnl Check how we can run man with a section number | |
3797 AC_MSG_CHECKING(how to run man with a section nr) | |
3798 MANDEF="man" | |
1531 | 3799 (eval MANPAGER=cat PAGER=cat man -s 2 read) < /dev/null > /dev/null 2>&AC_FD_CC && MANDEF="man -s" |
7 | 3800 AC_MSG_RESULT($MANDEF) |
3801 if test "$MANDEF" = "man -s"; then | |
3802 AC_DEFINE(USEMAN_S) | |
3803 fi | |
3804 | |
3805 dnl Check if gettext() is working and if it needs -lintl | |
5490 | 3806 dnl We take care to base this on an empty LIBS: on some systems libelf would be |
3807 dnl in LIBS and implicitly take along libintl. The final LIBS would then not | |
3808 dnl contain libintl, and the link step would fail due to -Wl,--as-needed. | |
7 | 3809 AC_MSG_CHECKING(--disable-nls argument) |
3810 AC_ARG_ENABLE(nls, | |
3811 [ --disable-nls Don't support NLS (gettext()).], , | |
3812 [enable_nls="yes"]) | |
3813 | |
3814 if test "$enable_nls" = "yes"; then | |
3815 AC_MSG_RESULT(no) | |
282 | 3816 |
3817 INSTALL_LANGS=install-languages | |
3818 AC_SUBST(INSTALL_LANGS) | |
3819 INSTALL_TOOL_LANGS=install-tool-languages | |
3820 AC_SUBST(INSTALL_TOOL_LANGS) | |
3821 | |
7 | 3822 AC_CHECK_PROG(MSGFMT, msgfmt, msgfmt, ) |
3823 AC_MSG_CHECKING([for NLS]) | |
3824 if test -f po/Makefile; then | |
3825 have_gettext="no" | |
3826 if test -n "$MSGFMT"; then | |
5490 | 3827 olibs=$LIBS |
3828 LIBS="" | |
7 | 3829 AC_TRY_LINK( |
3830 [#include <libintl.h>], | |
3831 [gettext("Test");], | |
5490 | 3832 AC_MSG_RESULT([gettext() works]); have_gettext="yes"; LIBS=$olibs, |
3833 LIBS="-lintl" | |
7 | 3834 AC_TRY_LINK( |
3835 [#include <libintl.h>], | |
3836 [gettext("Test");], | |
5490 | 3837 AC_MSG_RESULT([gettext() works with -lintl]); have_gettext="yes"; |
3838 LIBS="$olibs -lintl", | |
7 | 3839 AC_MSG_RESULT([gettext() doesn't work]); |
3840 LIBS=$olibs)) | |
3841 else | |
3842 AC_MSG_RESULT([msgfmt not found - disabled]); | |
3843 fi | |
6094 | 3844 if test $have_gettext = "yes" -a "x$features" != "xtiny" -a "x$features" != "xsmall"; then |
7 | 3845 AC_DEFINE(HAVE_GETTEXT) |
3846 MAKEMO=yes | |
3847 AC_SUBST(MAKEMO) | |
3848 dnl this was added in GNU gettext 0.10.36 | |
3849 AC_CHECK_FUNCS(bind_textdomain_codeset) | |
3850 dnl _nl_msg_cat_cntr is required for GNU gettext | |
3851 AC_MSG_CHECKING([for _nl_msg_cat_cntr]) | |
3852 AC_TRY_LINK( | |
3853 [#include <libintl.h> | |
3854 extern int _nl_msg_cat_cntr;], | |
3855 [++_nl_msg_cat_cntr;], | |
3856 AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_NL_MSG_CAT_CNTR), | |
3857 AC_MSG_RESULT([no])) | |
3858 fi | |
3859 else | |
3860 AC_MSG_RESULT([no "po/Makefile" - disabled]); | |
3861 fi | |
3862 else | |
3863 AC_MSG_RESULT(yes) | |
3864 fi | |
3865 | |
3866 dnl Check for dynamic linking loader | |
3867 AC_CHECK_HEADER(dlfcn.h, DLL=dlfcn.h, [AC_CHECK_HEADER(dl.h, DLL=dl.h)]) | |
3868 if test x${DLL} = xdlfcn.h; then | |
3869 AC_DEFINE(HAVE_DLFCN_H, 1, [ Define if we have dlfcn.h. ]) | |
3870 AC_MSG_CHECKING([for dlopen()]) | |
3871 AC_TRY_LINK(,[ | |
3872 extern void* dlopen(); | |
3873 dlopen(); | |
3874 ], | |
3875 AC_MSG_RESULT(yes); | |
3876 AC_DEFINE(HAVE_DLOPEN, 1, [ Define if we have dlopen() ]), | |
3877 AC_MSG_RESULT(no); | |
3878 AC_MSG_CHECKING([for dlopen() in -ldl]) | |
3879 olibs=$LIBS | |
3880 LIBS="$LIBS -ldl" | |
3881 AC_TRY_LINK(,[ | |
3882 extern void* dlopen(); | |
3883 dlopen(); | |
3884 ], | |
3885 AC_MSG_RESULT(yes); | |
3886 AC_DEFINE(HAVE_DLOPEN, 1, [ Define if we have dlopen() ]), | |
3887 AC_MSG_RESULT(no); | |
3888 LIBS=$olibs)) | |
3889 dnl ReliantUNIX has dlopen() in libc but everything else in libdl | |
3890 dnl ick :-) | |
3891 AC_MSG_CHECKING([for dlsym()]) | |
3892 AC_TRY_LINK(,[ | |
3893 extern void* dlsym(); | |
3894 dlsym(); | |
3895 ], | |
3896 AC_MSG_RESULT(yes); | |
3897 AC_DEFINE(HAVE_DLSYM, 1, [ Define if we have dlsym() ]), | |
3898 AC_MSG_RESULT(no); | |
3899 AC_MSG_CHECKING([for dlsym() in -ldl]) | |
3900 olibs=$LIBS | |
3901 LIBS="$LIBS -ldl" | |
3902 AC_TRY_LINK(,[ | |
3903 extern void* dlsym(); | |
3904 dlsym(); | |
3905 ], | |
3906 AC_MSG_RESULT(yes); | |
3907 AC_DEFINE(HAVE_DLSYM, 1, [ Define if we have dlsym() ]), | |
3908 AC_MSG_RESULT(no); | |
3909 LIBS=$olibs)) | |
3910 elif test x${DLL} = xdl.h; then | |
3911 AC_DEFINE(HAVE_DL_H, 1, [ Define if we have dl.h. ]) | |
3912 AC_MSG_CHECKING([for shl_load()]) | |
3913 AC_TRY_LINK(,[ | |
3914 extern void* shl_load(); | |
3915 shl_load(); | |
3916 ], | |
3917 AC_MSG_RESULT(yes); | |
3918 AC_DEFINE(HAVE_SHL_LOAD, 1, [ Define if we have shl_load() ]), | |
3919 AC_MSG_RESULT(no); | |
3920 AC_MSG_CHECKING([for shl_load() in -ldld]) | |
3921 olibs=$LIBS | |
3922 LIBS="$LIBS -ldld" | |
3923 AC_TRY_LINK(,[ | |
3924 extern void* shl_load(); | |
3925 shl_load(); | |
3926 ], | |
3927 AC_MSG_RESULT(yes); | |
3928 AC_DEFINE(HAVE_SHL_LOAD, 1, [ Define if we have shl_load() ]), | |
3929 AC_MSG_RESULT(no); | |
3930 LIBS=$olibs)) | |
3931 fi | |
3932 AC_CHECK_HEADERS(setjmp.h) | |
3933 | |
3934 if test "x$MACOSX" = "xyes" -a -n "$PERL"; then | |
3935 dnl -ldl must come after DynaLoader.a | |
3936 if echo $LIBS | grep -e '-ldl' >/dev/null; then | |
3937 LIBS=`echo $LIBS | sed s/-ldl//` | |
3938 PERL_LIBS="$PERL_LIBS -ldl" | |
3939 fi | |
3940 fi | |
3941 | |
2309
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
3942 if test "x$MACOSX" = "xyes"; then |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
3943 AC_MSG_CHECKING(whether we need -framework Cocoa) |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
3944 dnl Cocoa is needed with FEAT_CLIPBOARD or FEAT_MBYTE (the former is |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
3945 dnl disabled during tiny build) |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
3946 if test "x$features" != "xtiny" || test "x$enable_multibyte" = "xyes"; then |
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
3947 LIBS=$"$LIBS -framework Cocoa" |
7 | 3948 AC_MSG_RESULT(yes) |
3949 else | |
3950 AC_MSG_RESULT(no) | |
3951 fi | |
5114
56bc3698f8c6
updated for version 7.3.1300
Bram Moolenaar <bram@vim.org>
parents:
4952
diff
changeset
|
3952 dnl As mentioned above, tiny build implies os_macosx.m isn't needed. |
56bc3698f8c6
updated for version 7.3.1300
Bram Moolenaar <bram@vim.org>
parents:
4952
diff
changeset
|
3953 dnl Exclude it from OS_EXTRA_SRC so that linker won't complain about |
56bc3698f8c6
updated for version 7.3.1300
Bram Moolenaar <bram@vim.org>
parents:
4952
diff
changeset
|
3954 dnl missing Objective-C symbols. |
56bc3698f8c6
updated for version 7.3.1300
Bram Moolenaar <bram@vim.org>
parents:
4952
diff
changeset
|
3955 if test "x$features" = "xtiny"; then |
56bc3698f8c6
updated for version 7.3.1300
Bram Moolenaar <bram@vim.org>
parents:
4952
diff
changeset
|
3956 OS_EXTRA_SRC=`echo "$OS_EXTRA_SRC" | sed -e 's+os_macosx.m++'` |
56bc3698f8c6
updated for version 7.3.1300
Bram Moolenaar <bram@vim.org>
parents:
4952
diff
changeset
|
3957 OS_EXTRA_OBJ=`echo "$OS_EXTRA_OBJ" | sed -e 's+objects/os_macosx.o++'` |
56bc3698f8c6
updated for version 7.3.1300
Bram Moolenaar <bram@vim.org>
parents:
4952
diff
changeset
|
3958 fi |
7 | 3959 fi |
2309
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
3960 if test "x$MACARCH" = "xboth" && test "x$GUITYPE" = "xCARBONGUI"; then |
2110
0f552ca271c2
updated for version 7.2.393
Bram Moolenaar <bram@zimbu.org>
parents:
2087
diff
changeset
|
3961 LDFLAGS="$LDFLAGS -isysroot $DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" |
697 | 3962 fi |
7 | 3963 |
548 | 3964 dnl gcc 3.1 changed the meaning of -MM. The only solution appears to be to |
3965 dnl use "-isystem" instead of "-I" for all non-Vim include dirs. | |
3966 dnl But only when making dependencies, cproto and lint don't take "-isystem". | |
685 | 3967 dnl Mac gcc returns "powerpc-apple-darwin8-gcc-4.0.1 (GCC)...", need to allow |
3968 dnl the number before the version number. | |
548 | 3969 DEPEND_CFLAGS_FILTER= |
3970 if test "$GCC" = yes; then | |
1747 | 3971 AC_MSG_CHECKING(for GCC 3 or later) |
804 | 3972 gccmajor=`echo "$gccversion" | sed -e 's/^\([[1-9]]\)\..*$/\1/g'` |
671 | 3973 if test "$gccmajor" -gt "2"; then |
548 | 3974 DEPEND_CFLAGS_FILTER="| sed 's+-I */+-isystem /+g'" |
1747 | 3975 AC_MSG_RESULT(yes) |
3976 else | |
3977 AC_MSG_RESULT(no) | |
548 | 3978 fi |
1747 | 3979 dnl -D_FORTIFY_SOURCE=2 crashes Vim on strcpy(buf, "000") when buf is |
3980 dnl declared as char x[1] but actually longer. Introduced in gcc 4.0. | |
2019 | 3981 dnl Also remove duplicate _FORTIFY_SOURCE arguments. |
3196 | 3982 dnl And undefine it first to avoid a warning. |
1747 | 3983 AC_MSG_CHECKING(whether we need -D_FORTIFY_SOURCE=1) |
3984 if test "$gccmajor" -gt "3"; then | |
4952
9f7b92f232d3
updated for version 7.3.1221
Bram Moolenaar <bram@vim.org>
parents:
4942
diff
changeset
|
3985 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/'` |
1747 | 3986 AC_MSG_RESULT(yes) |
3987 else | |
3988 AC_MSG_RESULT(no) | |
3989 fi | |
557 | 3990 fi |
548 | 3991 AC_SUBST(DEPEND_CFLAGS_FILTER) |
7 | 3992 |
2629 | 3993 dnl link.sh tries to avoid overlinking in a hackish way. |
3994 dnl At least GNU ld supports --as-needed which provides the same functionality | |
3995 dnl at linker level. Let's use it. | |
3996 AC_MSG_CHECKING(linker --as-needed support) | |
3997 LINK_AS_NEEDED= | |
3998 # Check if linker supports --as-needed and --no-as-needed options | |
3999 if $CC -Wl,--help 2>/dev/null | grep as-needed > /dev/null; then | |
4952
9f7b92f232d3
updated for version 7.3.1221
Bram Moolenaar <bram@vim.org>
parents:
4942
diff
changeset
|
4000 LDFLAGS=`echo "$LDFLAGS" | sed -e 's/ *-Wl,--as-needed//g' | sed -e 's/$/ -Wl,--as-needed/'` |
2629 | 4001 LINK_AS_NEEDED=yes |
4002 fi | |
4003 if test "$LINK_AS_NEEDED" = yes; then | |
4004 AC_MSG_RESULT(yes) | |
4005 else | |
4006 AC_MSG_RESULT(no) | |
4007 fi | |
4008 AC_SUBST(LINK_AS_NEEDED) | |
4009 | |
3590 | 4010 # IBM z/OS reset CFLAGS for config.mk |
4011 if test "$zOSUnix" = "yes"; then | |
4012 CFLAGS="-D_ALL_SOURCE -Wc,float\(ieee\),dll" | |
4013 fi | |
4014 | |
7 | 4015 dnl write output files |
4016 AC_OUTPUT(auto/config.mk:config.mk.in) | |
4017 | |
4018 dnl vim: set sw=2 tw=78 fo+=l: |