[Opensrf-commits] r969 - branches/autotools/src/objson

svn at svn.open-ils.org svn at svn.open-ils.org
Sun Jun 24 06:58:55 EDT 2007


Author: asmodai
Date: 2007-06-24 06:56:36 -0400 (Sun, 24 Jun 2007)
New Revision: 969

Added:
   branches/autotools/src/objson/configure.ac
Log:
Add first version of autoscanned configure.


Added: branches/autotools/src/objson/configure.ac
===================================================================
--- branches/autotools/src/objson/configure.ac	                        (rev 0)
+++ branches/autotools/src/objson/configure.ac	2007-06-24 10:56:36 UTC (rev 969)
@@ -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



More information about the opensrf-commits mailing list