JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
configure.in as generated by autoconf
authorJason Woofenden <jason@jasonwoof.com>
Thu, 18 Jun 2009 05:29:23 +0000 (01:29 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Thu, 18 Jun 2009 05:29:23 +0000 (01:29 -0400)
configure.in [new file with mode: 0644]

diff --git a/configure.in b/configure.in
new file mode 100644 (file)
index 0000000..42fa0b3
--- /dev/null
@@ -0,0 +1,38 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ([2.63])
+AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
+AC_CONFIG_SRCDIR([file.h])
+AC_CONFIG_HEADERS([config.h])
+
+# Checks for programs.
+AC_PROG_CC
+AC_PROG_INSTALL
+AC_PROG_MAKE_SET
+
+# Checks for libraries.
+# FIXME: Replace `main' with a function in `-lSDL_image':
+AC_CHECK_LIB([SDL_image], [main])
+# FIXME: Replace `main' with a function in `-lSDL_mixer':
+AC_CHECK_LIB([SDL_mixer], [main])
+
+# Checks for header files.
+AC_CHECK_HEADERS([inttypes.h stddef.h stdlib.h string.h unistd.h])
+
+# Checks for typedefs, structures, and compiler characteristics.
+AC_HEADER_STDBOOL
+AC_C_INLINE
+AC_TYPE_INT8_T
+AC_TYPE_SIZE_T
+AC_TYPE_UINT16_T
+AC_TYPE_UINT32_T
+AC_TYPE_UINT8_T
+
+# Checks for library functions.
+AC_FUNC_MALLOC
+AC_CHECK_FUNCS([atexit memset sqrt strdup])
+
+AC_CONFIG_FILES([Makefile
+                 windows_icon/Makefile])
+AC_OUTPUT