From: asmodai Date: Sun, 24 Jun 2007 10:56:36 +0000 (+0000) Subject: Add first version of autoscanned configure. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fa6ca7903b3a7cb9eaf24ec8b612693568fb55ce;p=OpenSRF.git Add first version of autoscanned configure. git-svn-id: svn://svn.open-ils.org/OpenSRF/branches/autotools@969 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/objson/configure.ac b/src/objson/configure.ac new file mode 100644 index 0000000..1463538 --- /dev/null +++ b/src/objson/configure.ac @@ -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