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"])
21 [ --with-ipc use inter-process communication for DDE],
22 [AC_DEFINE(CONFIG_IPC)])
24 AC_ARG_WITH(malloc-debug,
25 [ --with-malloc-debug enable malloc() debugging],
26 [AC_DEFINE(MALLOC_DEBUGGING)])
28 dnl **** Check for some programs and libraries ****
32 dnl Add some options for gcc
33 test "x${GCC}" = "xyes" && CFLAGS="$CFLAGS -Wall -fno-strength-reduce"
40 dnl Check for -li386 for NetBSD
41 AC_CHECK_LIB(i386,i386_set_ldt,LDLIBS="$LDLIBS -li386")
43 dnl **** Check for functions and header files ****
45 AC_CHECK_FUNCS(tcgetattr)
46 AC_CHECK_HEADERS(stdlib.h)
51 dnl **** Generate output files ****
54 AC_SUBST_FILE(MAKE_RULES)
61 debugger/readline/Makefile
79 echo "Configure finished. Do 'make depend; make' to compile Wine."
83 dnl comment-start: "dnl "
85 dnl comment-start-skip: "\\bdnl\\b\\s *"
86 dnl compile-command: "autoconf"