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