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.
11 test -z "$PROGEXT" && PROGEXT="" AC_SUBST(PROGEXT)
13 dnl **** Command-line arguments ****
19 TRACE_MSGS=yes # the TRACE() macro
20 DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
22 AC_ARG_ENABLE(emulator,
23 [ --disable-emulator build only the Wine library, not the emulator],
24 [if test "$enableval" = "no"; then MAIN_TARGET="lib"; fi])
27 [ --enable-dll build the Wine library as a DLL],
28 [if test "$enableval" = "no"; then : ; else LIB_TARGET="libwine.so.1.0"; fi])
31 [ --disable-lib build the Wine without building libwine.a],
32 [if test "$enableval" = "no"; then ALT_LINK="\$(LIBOBJS)"; LIB_TARGET=""; fi])
35 dnl [ --enable-ipc use inter-process communication for DDE],
36 dnl [if test "$enableval" = "no"; then : ; else OPTIONS="-DCONFIG_IPC"; fi])
39 [ --disable-debug compile out all debugging messages],
40 [if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
43 [ --disable-trace compile out TRACE messages],
44 [if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
46 AC_ARG_WITH(reentrant-x,
47 [ --without-reentrant-x Compile for use with non-reentrant X libraries])
54 if test "$DEBUG_MSGS" = "no"
56 AC_DEFINE(NO_DEBUG_MSGS)
57 AC_DEFINE(NO_TRACE_MSGS)
59 if test "$TRACE_MSGS" = "no"
61 AC_DEFINE(NO_TRACE_MSGS)
65 dnl **** Check for some programs ****
76 AC_CHECK_PROG(C2MAN,c2man,c2man,true)
78 dnl **** Check for some libraries ****
80 dnl Check for -li386 for NetBSD and OpenBSD
81 AC_CHECK_LIB(i386,i386_set_ldt)
82 dnl Check for -lw for Solaris
83 AC_CHECK_LIB(w,iswalnum)
84 dnl Check for -lxpg4 for FreeBSD
85 AC_CHECK_LIB(xpg4,setrunelocale)
87 AC_CHECK_LIB(dl,dlopen)
88 dnl Check for XFree86 DGA extension
89 AC_CHECK_LIB(Xxf86dga,XF86DGAQueryExtension,AC_DEFINE(HAVE_LIBXXF86DGA) X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga",,$X_LIBS -lXext -lX11)
91 dnl **** Check for Open Sound System ****
92 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h)
94 AC_CACHE_CHECK("for Open Sound System",
95 ac_cv_c_opensoundsystem,
97 #ifdef HAVE_SYS_SOUNDCARD_H
98 #include <sys/soundcard.h>
100 #ifdef HAVE_MACHINE_SOUNDCARD_H
101 #include <machine/soundcard.h>
105 /* check for one of the Open Sound System specific SNDCTL_ defines */
106 #if !defined(SNDCTL_DSP_STEREO)
107 #error No open sound system
109 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
111 if test "$ac_cv_c_opensoundsystem" = "yes"
116 dnl **** Check for union semun ****
118 AC_CACHE_CHECK("for union semun", ac_cv_c_union_semun,
119 AC_TRY_COMPILE([#include <sys/types.h>
120 #include <sys/sem.h>],[union semun foo],
121 ac_cv_c_union_semun="yes", ac_cv_c_union_semun="no"))
122 if test "$ac_cv_c_union_semun" = "yes"
124 AC_DEFINE(HAVE_UNION_SEMUN)
127 dnl **** If ln -s doesn't work, use cp instead ****
128 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
130 dnl **** Check for gcc strength-reduce bug ****
132 if test "x${GCC}" = "xyes"
134 CFLAGS="$CFLAGS -Wall"
135 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
138 static int Array[[3]];
141 for(i=0; i<B; i++) Array[[i]] = i - 3;
142 exit( Array[[1]] != -2 );
144 ac_cv_c_gcc_strength_bug="no",
145 ac_cv_c_gcc_strength_bug="yes",
146 ac_cv_c_gcc_strength_bug="yes") )
147 if test "$ac_cv_c_gcc_strength_bug" = "yes"
149 CFLAGS="$CFLAGS -fno-strength-reduce"
153 dnl **** Check for underscore on external symbols ****
155 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
156 ac_cv_c_extern_prefix,
158 LIBS="conftest_asm.s $LIBS"
159 cat > conftest_asm.s <<EOF
164 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
165 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
167 if test "$ac_cv_c_extern_prefix" = "yes"
169 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
172 dnl **** Check for .string in assembler ****
174 AC_CACHE_CHECK("whether assembler accepts .string",
177 LIBS="conftest_asm.s $LIBS"
178 cat > conftest_asm.s <<EOF
181 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
183 if test "$ac_cv_c_asm_string" = "yes"
185 AC_DEFINE(HAVE_ASM_STRING)
188 dnl **** Check for working dll ****
191 if test "$LIB_TARGET" = "libwine.so.1.0"
193 AC_CACHE_CHECK("whether we can build a dll",
195 [saved_cflags=$CFLAGS
196 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0"
197 AC_TRY_LINK(,[return 1],ac_cv_c_dll="yes",ac_cv_c_dll="no")
200 if test "$ac_cv_c_dll" = "yes"
204 LIB_TARGET="libwine.a"
209 dnl **** Check for reentrant libc ****
211 dnl For cross-compiling we blindly assume that libc is reentrant. This is
212 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
214 AC_CACHE_CHECK("for reentrant libc", wine_cv_libc_reentrant,
215 [AC_TRY_RUN([int myerrno = 0;
217 int *__errno_location(){return &myerrno;}
218 main(){connect(0,buf,255); exit(!myerrno);}],
219 wine_cv_libc_reentrant=yes, wine_cv_libc_reentrant=no,
220 wine_cv_libc_reentrant=yes ) ] )
221 if test "$wine_cv_libc_reentrant" = "no"
223 AC_DEFINE(NO_REENTRANT_LIBC)
226 dnl **** Check for reentrant X libraries ****
228 dnl This may fail to determine whether X libraries are reentrant if
229 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
230 dnl is possible with the --without-reentrant-x option.
232 AC_CACHE_CHECK( "for reentrant X libraries", wine_cv_x_reentrant,
233 [ if test "x$with_reentrant_x" = "xno"
235 wine_cv_x_reentrant=no
238 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
239 if test -r $dir/libX11.so; then
240 libX11_check="-D $dir/libX11.so"
243 if test -r $dir/libX11.a; then
244 libX11_check="$dir/libX11.a"
248 if test "$libX11_check" != "none"; then
249 if nm $libX11_check | grep __errno_location >/dev/null 2>&1
251 wine_cv_x_reentrant=yes
253 wine_cv_x_reentrant=no
256 wine_cv_x_reentrant=unknown
259 if test "$wine_cv_x_reentrant" = "no"
261 AC_DEFINE(NO_REENTRANT_X11)
264 dnl **** Check for functions and header files ****
266 AC_CHECK_FUNCS(clone getpagesize memmove sendmsg sigaltstack strerror stricmp tcgetattr timegm usleep wait4 waitpid vfscanf)
267 AC_CHECK_HEADERS(wctype.h sys/syscall.h syscall.h sys/param.h sys/vfs.h sys/mount.h sys/statfs.h float.h linux/cdrom.h linux/ucdrom.h sys/cdio.h sys/filio.h sys/modem.h strings.h sys/strtio.h dlfcn.h)
271 AC_CHECK_SIZEOF(long long,0)
273 dnl **** Check for sendmsg in -lsocket if not found above ****
275 if test $ac_cv_func_sendmsg = no; then
276 AC_CHECK_LIB(socket,sendmsg)
279 dnl **** statfs checks ****
281 if test "$ac_cv_header_sys_vfs_h" = "yes"
283 AC_CACHE_CHECK( "whether sys/vfs.h defines statfs",
284 wine_cv_sys_vfs_has_statfs,
286 #include <sys/types.h>
287 #ifdef HAVE_SYS_PARAM_H
288 # include <sys/param.h>
294 memset(&stfs,0,sizeof(stfs));
295 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
298 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
300 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS)
304 if test "$ac_cv_header_sys_statfs_h" = "yes"
306 AC_CACHE_CHECK( "whether sys/statfs.h defines statfs",
307 wine_cv_sys_statfs_has_statfs,
309 #include <sys/types.h>
310 #ifdef HAVE_SYS_PARAM_H
311 # include <sys/param.h>
313 #include <sys/statfs.h>
316 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
319 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
321 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS)
325 if test "$ac_cv_header_sys_mount_h" = "yes"
327 AC_CACHE_CHECK( "whether sys/mount.h defines statfs",
328 wine_cv_sys_mount_has_statfs,
330 #include <sys/types.h>
331 #ifdef HAVE_SYS_PARAM_H
332 # include <sys/param.h>
334 #include <sys/mount.h>
337 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
340 if test "$wine_cv_sys_mount_has_statfs" = "yes"
342 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT)
346 dnl **** FIXME: what about mixed cases, where we need two of them? ***
348 AC_CACHE_CHECK( "for statfs.f_bfree", wine_cv_statfs_bfree,
349 [ if test "x$statfs_bfree" = "xno"
351 wine_cv_statfs_bfree=no
354 #include <sys/types.h>
355 #ifdef HAVE_SYS_PARAM_H
356 # include <sys/param.h>
358 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
359 # include <sys/mount.h>
361 # ifdef STATFS_DEFINED_BY_SYS_VFS
362 # include <sys/vfs.h>
364 # ifdef STATFS_DEFINED_BY_SYS_STATFS
365 # include <sys/statfs.h>
373 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
376 if test "$wine_cv_statfs_bfree" = "yes"
378 AC_DEFINE(STATFS_HAS_BFREE)
381 AC_CACHE_CHECK( "for statfs.f_bavail", wine_cv_statfs_bavail,
382 [ if test "x$statfs_bavail" = "xno"
384 wine_cv_statfs_bavail=no
387 #include <sys/types.h>
388 #ifdef HAVE_SYS_PARAM_H
389 # include <sys/param.h>
391 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
392 # include <sys/mount.h>
394 # ifdef STATFS_DEFINED_BY_SYS_VFS
395 # include <sys/vfs.h>
397 # ifdef STATFS_DEFINED_BY_SYS_STATFS
398 # include <sys/statfs.h>
406 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
409 if test "$wine_cv_statfs_bavail" = "yes"
411 AC_DEFINE(STATFS_HAS_BAVAIL)
414 dnl *** check for working sigaltstack
415 dnl glibc 2.0x defines it, but it always fails... so it is useless for us.
417 AC_CACHE_CHECK("for working sigaltstack",
418 ac_cv_c_working_sigaltstack,
421 #include <time.h> /* <sys/time.h> ? bad magic without end */
422 #include <sys/types.h>
423 #include <sys/signal.h>
424 #ifdef HAVE_SYS_PARAM_H
425 # include <sys/param.h>
427 #ifdef HAVE_SYSCALL_H
428 # include <syscall.h>
430 # ifdef HAVE_SYS_SYSCALL_H
431 # include <sys/syscall.h>
435 unsigned char *xaltstack;
438 main(int argc,char **argv) {
439 struct sigaltstack ss;
441 xaltstack = malloc(16384);
442 ss.ss_sp = xaltstack;
445 if (sigaltstack(&ss, NULL) < 0) {
446 /* this catches the glibc case */
447 perror("sigaltstack");
448 return (1); /* aka exit(1) aka fail */
450 /* assume it works. */
454 ac_cv_c_working_sigaltstack="yes",
455 ac_cv_c_working_sigaltstack="no",
456 ac_cv_c_working_sigaltstack="no"
459 if test "$ac_cv_c_working_sigaltstack" = "yes"
461 AC_DEFINE(HAVE_WORKING_SIGALTSTACK)
465 dnl *** check for file descriptor passing with msg_accrights
467 AC_CACHE_CHECK("for msg_accrights in struct msghdr", ac_cv_c_msg_accrights,
468 AC_TRY_COMPILE([#include <sys/types.h>
469 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
470 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
471 if test "$ac_cv_c_msg_accrights" = "yes"
473 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
476 dnl **** Generate output files ****
478 MAKE_RULES=Make.rules
479 AC_SUBST_FILE(MAKE_RULES)
487 dlls/comctl32/Makefile
488 dlls/imagehlp/Makefile
490 dlls/msacm32/Makefile
492 dlls/shell32/Makefile
493 dlls/winaspi/Makefile
494 dlls/wnaspi32/Makefile
495 documentation/Makefile
498 graphics/metafiledrv/Makefile
499 graphics/psdrv/Makefile
500 graphics/win16drv/Makefile
501 graphics/x11drv/Makefile
517 programs/clock/Makefile
518 programs/control/Makefile
519 programs/notepad/Makefile
520 programs/progman/Makefile
521 programs/regtest/Makefile
522 programs/view/Makefile
523 programs/winhelp/Makefile
524 programs/winver/Makefile
536 if test "$wine_cv_libc_reentrant" = "no"
539 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
540 echo "*** thread support. Consider upgrading libc to a more recent"
541 echo "*** reentrant version of libc."
546 echo "Configure finished. Do 'make depend; make' to compile Wine."
550 dnl comment-start: "dnl "
552 dnl comment-start-skip: "\\bdnl\\b\\s *"
553 dnl compile-command: "autoconf"