view glob/configure.in @ 5018:1c65a8e44ef9 ss-2-1-59

[project @ 2004-09-22 03:33:29 by jwe]
author jwe
date Wed, 22 Sep 2004 03:33:29 +0000
parents 8496ae60db8a
children
line wrap: on
line source

dnl Process this file with autoconf to produce a configure script.
AC_INIT
AC_CONFIG_SRCDIR([fnmatch.c])		dnl A distinctive file to look for in srcdir.
AC_PREREQ(2.52)			dnl Minimum Autoconf version required.
AC_CONFIG_HEADER(config.h)
AC_PROG_CC
AC_CHECK_PROG(AR, ar, ar, ar)
AC_PROG_RANLIB
AC_PROG_CPP			dnl Later checks need this.
dnl These two want to come early.
AC_AIX
AC_MINIX
AC_ISC_POSIX
AC_C_CONST([])
AC_HEADER_STDC
AC_CHECK_HEADERS(memory.h unistd.h string.h)
AC_HEADER_DIRENT
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_ALLOCA
AC_FUNC_STRCOLL
AH_BOTTOM([
#if defined (__WIN32__) && ! defined (_POSIX_VERSION)
#define WINDOWS32
#endif
])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT