1 dnl Process this file with autoconf to produce a configure script.
2 dnl Author: Michael Patra <micky@marie.physik.tu-berlin.de>
3 dnl <patra@itp1.physik.tu-berlin.de>
4 AC_REVISION([configure.in 1.00])
5 AC_INIT(controls/edit.c)
6 AC_CONFIG_HEADER(include/config.h)
7 AC_CONFIG_AUX_DIR(tools)
9 # We want these before the checks, so the checks can modify their values.
10 test -z "$CFLAGS" && CFLAGS="-g -O2" AC_SUBST(CFLAGS)
11 test -z "$LDFLAGS" && LDFLAGS=-g AC_SUBST(LDFLAGS)
12 test -z "$LDLIBS" && LDLIBS=-lm AC_SUBST(LDLIBS)
14 dnl **** Command-line arguments ****
17 [ --with-library build Wine as a library instead of an emulator],
18 [OPTIONS="-DWINELIB" MAIN_TARGET="libwine.a"],
19 [OPTIONS="" MAIN_TARGET="wine"])
22 [ --with-dll build Wine as a DLL instead of an emulator],
23 [OPTIONS="-DWINELIB -DWINELIBDLL" MAIN_TARGET="libwine.so.1.0" CFLAGS="$CFLAGS -fPIC"])
26 [ --with-ipc use inter-process communication for DDE],
27 [OPTIONS="$OPTIONS -DCONFIG_IPC"])
32 dnl **** Check for some programs and libraries ****
42 dnl Check for -li386 for NetBSD
43 AC_CHECK_LIB(i386,i386_set_ldt,LDLIBS="$LDLIBS -li386")
45 dnl **** Check for gcc strength-reduce bug ****
47 if test "x${GCC}" = "xyes"
49 CFLAGS="$CFLAGS -Wall"
51 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
54 static int Array[[3]];
57 for(i=0; i<B; i++) Array[[i]] = i - 3;
58 exit( Array[[1]] != -2 );
60 ac_cv_c_gcc_strength_bug="no",
61 ac_cv_c_gcc_strength_bug="yes",
62 ac_cv_c_gcc_strength_bug="yes") )
63 if test "$ac_cv_c_gcc_strength_bug" = "yes"
65 CFLAGS="$CFLAGS -fno-strength-reduce"
69 dnl **** Check for underscore on external symbols ****
71 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
72 ac_cv_c_extern_prefix,
74 LIBS="conftest_asm.s $LIBS"
75 cat > conftest_asm.s <<EOF
80 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
81 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
83 if test "$ac_cv_c_extern_prefix" = "yes"
85 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
88 dnl **** Check for functions and header files ****
90 AC_CHECK_FUNCS(memmove tcgetattr usleep)
95 dnl **** Generate output files ****
98 AC_SUBST_FILE(MAKE_RULES)
117 programs/progman/Makefile
118 programs/winhelp/Makefile
126 echo "Configure finished. Do 'make depend; make' to compile Wine."
130 dnl comment-start: "dnl "
132 dnl comment-start-skip: "\\bdnl\\b\\s *"
133 dnl compile-command: "autoconf"