diff --git a/configure.in b/configure.in deleted file mode 100644 index b3b1d6e1cc..0000000000 --- a/configure.in +++ /dev/null @@ -1,42 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ([2.62]) -AC_INIT([ccs2cib], [0.5.2], [lon@metamorphism.com]) -AC_CONFIG_SRCDIR([reslist.c]) -AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE - -# Checks for programs. -AC_PROG_CC -AC_PATH_PROGS(XML2CONFIG, xml2-config) - -# Checks for libraries. - pulled from Pacemaker 1.1 -AC_MSG_CHECKING(for special libxml2 includes) -if test "x$XML2CONFIG" = "x"; then - AC_MSG_ERROR(libxml2 config not found) -else - XML2HEAD="`$XML2CONFIG --cflags`" - AC_MSG_RESULT($XML2HEAD) - AC_CHECK_LIB(xml2, xmlParseFile) -fi - -CPPFLAGS="$CPPFLAGS $XML2HEAD" - -# Checks for header files. -AC_CHECK_HEADERS([stdint.h stdlib.h string.h unistd.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_C_INLINE -AC_TYPE_INT64_T -AC_TYPE_SIZE_T -AC_TYPE_SSIZE_T - -# Checks for library functions. -AC_FUNC_FORK -AC_FUNC_MALLOC -AC_FUNC_REALLOC -AC_CHECK_FUNCS([dup2 memset strcasecmp strchr strdup strncasecmp strrchr strstr]) - -AC_CONFIG_FILES([Makefile]) -AC_OUTPUT