# Process this file with autoconf to produce a configure script. AC_INIT([jenkara], [0.1], address@hidden) AM_INIT_AUTOMAKE([jenkara], [0.1], address@hidden) AC_CONFIG_SRCDIR([jenkara.c]) AM_CONFIG_HEADER(config.h) # Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET # Checks for libraries. AC_CHECK_LIB([GL], [glBegin]) AC_CHECK_LIB([glut], [gluNewQuadric]) AC_CHECK_LIB([gtkgl], [gtk_gl_area_get_type]) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([stdlib.h string.h GL/glut.h GL/gl.h gtk/gtk.h gtkgl/gtkglarea.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_CHECK_FUNCS([memset sqrt strdup strerror strrchr]) AC_CONFIG_FILES([Makefile md3/Makefile mdl/Makefile]) AC_OUTPUT