mirror of
https://https.git.savannah.gnu.org/git/patch.git
synced 2026-01-30 11:25:36 +00:00
25 lines
450 B
Plaintext
25 lines
450 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(patch.c)
|
|
AC_CONFIG_HEADER(config.h)
|
|
AC_PROG_CC
|
|
AC_PROG_CPP
|
|
AC_AIX
|
|
AC_MINIX
|
|
AC_ISC_POSIX
|
|
AC_CONST
|
|
AC_PROG_INSTALL
|
|
AC_DIR_HEADER
|
|
if test -z "$dirheader"; then
|
|
AC_DEFINE(NODIR)
|
|
fi
|
|
AC_RETSIGTYPE
|
|
AC_STDC_HEADERS
|
|
AC_UNISTD_H
|
|
AC_HAVE_HEADERS(string.h fcntl.h)
|
|
AC_REPLACE_FUNCS(rename)
|
|
AC_HAVE_FUNCS(pathconf strerror)
|
|
AC_ALLOCA
|
|
AC_LONG_FILE_NAMES
|
|
AC_XENIX_DIR
|
|
AC_OUTPUT(Makefile)
|