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