git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@135 7f0cb862-5218-0410-a997-914c9d46530a
43 lines
820 B
Plaintext
43 lines
820 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(Makefile.am)
|
|
|
|
AM_INIT_AUTOMAKE(freeglut,2.0.0)
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_CC
|
|
AC_C_CONST
|
|
AC_EXEEXT
|
|
AC_PROG_RANLIB
|
|
AC_LIBTOOL_DLOPEN
|
|
AM_PROG_LIBTOOL
|
|
AC_SUBST(LIBTOOL_DEPS)
|
|
|
|
dnl Checks for libraries.
|
|
AC_PATH_XTRA
|
|
|
|
dnl Checks for header files.
|
|
AC_STDC_HEADERS
|
|
AC_HAVE_HEADERS( GL/gl.h GL/glu.h GL/glx.h )
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
dnl Checks for library functions.
|
|
|
|
AC_CHECK_LIBM
|
|
AC_SUBST(LIBM)
|
|
|
|
AC_OUTPUT(\
|
|
Makefile \
|
|
doc/Makefile \
|
|
progs/Makefile \
|
|
progs/demos/Makefile \
|
|
progs/demos/Fractals/Makefile \
|
|
progs/demos/Fractals_random/Makefile \
|
|
progs/demos/Lorenz/Makefile \
|
|
progs/demos/One/Makefile \
|
|
src/Makefile \
|
|
include/Makefile \
|
|
include/GL/Makefile \
|
|
)
|