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