Add first version of autoscanned configure.
authorasmodai <asmodai@9efc2488-bf62-4759-914b-345cdb29e865>
Sun, 24 Jun 2007 10:56:36 +0000 (10:56 +0000)
committerasmodai <asmodai@9efc2488-bf62-4759-914b-345cdb29e865>
Sun, 24 Jun 2007 10:56:36 +0000 (10:56 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/branches/autotools@969 9efc2488-bf62-4759-914b-345cdb29e865

src/objson/configure.ac [new file with mode: 0644]

diff --git a/src/objson/configure.ac b/src/objson/configure.ac
new file mode 100644 (file)
index 0000000..1463538
--- /dev/null
@@ -0,0 +1,27 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ(2.59)
+AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
+AC_CONFIG_SRCDIR([json_parser.c])
+AC_CONFIG_HEADER([config.h])
+
+# Checks for programs.
+AC_PROG_CC
+
+# Checks for libraries.
+
+# Checks for header files.
+AC_CHECK_HEADERS([fcntl.h])
+
+# Checks for typedefs, structures, and compiler characteristics.
+AC_C_CONST
+AC_HEADER_STDBOOL
+
+# Checks for library functions.
+AC_HEADER_STDC
+AC_FUNC_STRTOD
+AC_CHECK_FUNCS([bzero memset strdup strncasecmp])
+
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT