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_AUX_DIR(tools)
8 # We want these before the checks, so the checks can modify their values.
9 test -z "$CFLAGS" && CFLAGS="-g -O2" AC_SUBST(CFLAGS)
10 test -z "$LDFLAGS" && LDFLAGS=-g AC_SUBST(LDFLAGS)
11 test -z "$LDLIBS" && LDLIBS=-lm AC_SUBST(LDLIBS)
13 dnl **** Command-line arguments ****
16 [ --with-library build Wine as a library instead of an emulator],
17 [AC_DEFINE(WINELIB) MAIN_TARGET="libwine.a"],[MAIN_TARGET="wine"])
20 [ --with-dll build Wine as a DLL instead of an emulator],
21 [AC_DEFINE(WINELIB) AC_DEFINE(WINELIBDLL)
22 MAIN_TARGET="libwine.so.1.0" CFLAGS="$CFLAGS -fPIC"])
26 [ --with-ipc use inter-process communication for DDE],
27 [AC_DEFINE(CONFIG_IPC)])
29 AC_ARG_WITH(malloc-debug,
30 [ --with-malloc-debug enable malloc() debugging],
31 [AC_DEFINE(MALLOC_DEBUGGING)])
33 dnl **** Check for some programs and libraries ****
43 dnl Check for -li386 for NetBSD
44 AC_CHECK_LIB(i386,i386_set_ldt,LDLIBS="$LDLIBS -li386")
46 dnl **** Check for gcc strength-reduce bug ****
48 if test "x${GCC}" = "xyes"
50 CFLAGS="$CFLAGS -Wall"
52 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
55 static int Array[[3]];
58 for(i=0; i<B; i++) Array[[i]] = i - 3;
59 exit( Array[[1]] != -2 );
61 ac_cv_c_gcc_strength_bug="no",
62 ac_cv_c_gcc_strength_bug="yes",
63 ac_cv_c_gcc_strength_bug="yes") )
64 if test "$ac_cv_c_gcc_strength_bug" = "yes"
66 CFLAGS="$CFLAGS -fno-strength-reduce"
70 dnl **** Check for functions and header files ****
72 AC_CHECK_FUNCS(tcgetattr usleep)
73 AC_CHECK_HEADERS(stdlib.h)
78 dnl **** Generate output files ****
81 AC_SUBST_FILE(MAKE_RULES)
88 debugger/readline/Makefile
101 programs/progman/Makefile
102 programs/winhelp/Makefile
110 echo "Configure finished. Do 'make depend; make' to compile Wine."
114 dnl comment-start: "dnl "
116 dnl comment-start-skip: "\\bdnl\\b\\s *"
117 dnl compile-command: "autoconf"