| 1 | # Configure template for GNU Diffutils.
|
|---|
| 2 |
|
|---|
| 3 | # Copyright (C) 1994, 1995, 1998, 2001, 2002 Free Software Foundation, Inc.
|
|---|
| 4 |
|
|---|
| 5 | # This program is free software; you can redistribute it and/or modify
|
|---|
| 6 | # it under the terms of the GNU General Public License as published by
|
|---|
| 7 | # the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 8 | # any later version.
|
|---|
| 9 |
|
|---|
| 10 | # This program is distributed in the hope that it will be useful,
|
|---|
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 13 | # GNU General Public License for more details.
|
|---|
| 14 |
|
|---|
| 15 | # You should have received a copy of the GNU General Public License
|
|---|
| 16 | # along with this program; if not, write to the Free Software
|
|---|
| 17 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|---|
| 18 | # 02111-1307, USA.
|
|---|
| 19 |
|
|---|
| 20 | AC_PREREQ(2.53)
|
|---|
| 21 |
|
|---|
| 22 | AC_INIT(GNU diffutils, 2.8.1, [email protected])
|
|---|
| 23 | AC_CONFIG_SRCDIR(src/diff.c)
|
|---|
| 24 |
|
|---|
| 25 | AC_CONFIG_AUX_DIR(config)
|
|---|
| 26 | AM_CONFIG_HEADER([config.h:config.hin])
|
|---|
| 27 | AM_INIT_AUTOMAKE([gnits])
|
|---|
| 28 |
|
|---|
| 29 | AC_PROG_AWK
|
|---|
| 30 | AC_PROG_CC
|
|---|
| 31 | AC_ISC_POSIX
|
|---|
| 32 | AM_PROG_CC_STDC
|
|---|
| 33 | AC_PROG_CPP
|
|---|
| 34 | AM_MISSING_PROG(HELP2MAN, help2man)
|
|---|
| 35 | AC_PROG_INSTALL
|
|---|
| 36 | AC_PROG_RANLIB
|
|---|
| 37 |
|
|---|
| 38 | AC__GNU_SOURCE
|
|---|
| 39 | AC_DEFINE([__EXTENSIONS__], 1, [Enable Solaris extensions.])
|
|---|
| 40 | AC_SYS_LARGEFILE
|
|---|
| 41 |
|
|---|
| 42 | AC_C_CONST
|
|---|
| 43 | AC_C_INLINE
|
|---|
| 44 | AC_C_VARARRAYS
|
|---|
| 45 |
|
|---|
| 46 | AC_DEFINE(DEFAULT_DIFF_PROGRAM, "diff",
|
|---|
| 47 | [Name of "diff" program, unless overridden.])
|
|---|
| 48 |
|
|---|
| 49 | AC_DEFINE(DEFAULT_EDITOR_PROGRAM, "ed",
|
|---|
| 50 | [Name of editor program, unless overridden.])
|
|---|
| 51 |
|
|---|
| 52 | AC_PATH_PROG(PR_PROGRAM, pr, "")
|
|---|
| 53 | AC_DEFINE_UNQUOTED(PR_PROGRAM, "$PR_PROGRAM", [Name of "pr" program.])
|
|---|
| 54 |
|
|---|
| 55 | AC_HEADER_STDBOOL
|
|---|
| 56 | AC_HEADER_STDC
|
|---|
| 57 | AC_CHECK_HEADERS(fcntl.h libintl.h limits.h locale.h \
|
|---|
| 58 | stdlib.h string.h sys/file.h time.h unistd.h)
|
|---|
| 59 | AC_CHECK_MEMBERS([struct stat.st_blksize])
|
|---|
| 60 | AC_CHECK_MEMBERS([struct stat.st_rdev])
|
|---|
|
|---|