1 # Process this file with autoconf to produce a configure script.
3 AC_INIT([freeglut library], [2.6.0], [freeglut-bugs@lists.sourceforge.net], [freeglut])
6 AC_CONFIG_SRCDIR([AUTHORS])
7 AC_CONFIG_HEADERS([config.h])
9 # Compatibility hack for older autoconf versions
10 m4_ifdef([AS_HELP_STRING], [], [AC_DEFUN([AS_HELP_STRING], [AC_HELP_STRING($][@)])])
12 # Checks for programs.
19 AC_SUBST([LIBTOOL_DEPS])
21 # Checks for libraries.
24 if test "x$no_x" = xyes; then
25 GL_LIBS="-lopengl32 -lgdi32 -lwinmm"
29 EXPORT_FLAGS="-DFREEGLUT_EXPORTS"
31 GL_LIBS="-lGL -lXext -lX11"
32 AC_CHECK_LIB([Xxf86vm], [XF86VidModeSwitchToMode])
33 AC_CHECK_LIB([Xrandr], [XRRQueryExtension])
34 AC_CHECK_LIB([Xi], [XISelectEvents])
36 VERSION_INFO="-version-info 12:0:9"
40 AC_SUBST([LIBXXF86VM])
42 AC_SUBST([VERSION_INFO])
43 AC_SUBST([EXPORT_FLAGS])
45 AC_CHECK_LIB([usbhid], [hid_init],
46 [LIBUSBHID=-lusbhid], [LIBUSBHID=])
49 # Checks for header files.
51 save_CPPFLAGS="$CPPFLAGS"
52 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
53 AC_CHECK_HEADERS([usbhid.h libusbhid.h errno.h GL/gl.h GL/glu.h GL/glx.h fcntl.h limits.h sys/ioctl.h sys/param.h sys/time.h])
55 AC_CHECK_HEADERS([X11/extensions/xf86vmode.h], [], [], [#include <X11/Xlib.h>])
56 AC_CHECK_HEADERS([X11/extensions/Xrandr.h])
57 AC_CHECK_HEADERS([X11/extensions/XI.h X11/extensions/XInput.h])
58 AC_CHECK_HEADERS([X11/extensions/XInput2.h])
59 CPPFLAGS="$save_CPPFLAGS"
61 # Checks for library functions.
62 AC_PROG_GCC_TRADITIONAL
66 AC_CHECK_FUNCS([gettimeofday])
67 AC_CHECK_FUNCS([vfprintf])
69 # Build time configuration.
70 AC_ARG_ENABLE([replace-glut],
71 [AS_HELP_STRING([--enable-replace-glut],
72 [be a replacement for GLUT @<:@default=yes@:>@])])
73 if test "x$enable_replace_glut" != xno; then
83 AC_ARG_ENABLE([warnings],
84 [AS_HELP_STRING([--enable-warnings],
85 [use all gcc compiler warnings @<:@default=yes@:>@])])
86 if test "x$enable_warnings" != xno -a "x$GCC" = xyes; then
87 CFLAGS="$CFLAGS -Wall -pedantic"
90 AC_ARG_ENABLE([warnings-as-errors],
91 [AS_HELP_STRING([--enable-warnings-as-errors],
92 [make all warnings into errors @<:@default=no@:>@])])
93 if test "x$enable_warnings_as_errors" = xyes -a "x$GCC" = xyes; then
94 CFLAGS="$CFLAGS -Werror"
97 AC_ARG_ENABLE([debug],
98 [AS_HELP_STRING([--enable-debug],
99 [enable debugging code (for developers) @<:@default=no@:>@])])
100 if test "x$enable_debug" = xyes; then
101 AC_DEFINE([_DEBUG], [1], [Define to 1 if you want to include debugging code.])
111 progs/demos/CallbackMaker/Makefile
112 progs/demos/Fractals/Makefile
113 progs/demos/Fractals_random/Makefile
114 progs/demos/Lorenz/Makefile
116 progs/demos/One/Makefile
117 progs/demos/shapes/Makefile
118 progs/demos/smooth_opengl3/Makefile
119 progs/demos/spaceball/Makefile
120 progs/demos/subwin/Makefile