1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(patchutils, 0.3.3)
AC_CONFIG_SRCDIR(patchutils.spec.in)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE([dist-xz dist-bzip2 subdir-objects 1.6])
dnl Checks for programs.
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
dnl Checks for perl, for the scripts
AC_PATH_PROGS(PERL, perl perl5)
dnl Find a default editor
AC_CHECK_PROGS(DEFAULT_EDITOR, sensible-editor editor vim vi, vi)
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
if test x"$GCC" = xyes; then
CFLAGS="$CFLAGS -Wall"
fi
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(sys/types.h unistd.h error.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_PID_T
AC_TYPE_SIZE_T
dnl Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_FNMATCH
AC_CHECK_FUNCS(strcspn strspn strtoul getline error)
AC_CONFIG_LIBOBJ_DIR([src])
dnl Check for long getopt
AC_CHECK_FUNCS(getopt_long , , [
AC_LIBOBJ([getopt])
AC_LIBOBJ([getopt1])
])
AC_MSG_CHECKING(for diff program)
DIFF=diff
AC_ARG_WITH(diff, [ --with-diff=DIFF name of the diff program],
DIFF=$withval)
AC_MSG_RESULT($DIFF)
PATCH=patch
AC_MSG_CHECKING(for patch program)
AC_ARG_WITH(patch, [ --with-patch=PATCH name of the patch program],
PATCH=$withval)
AC_MSG_RESULT($PATCH)
AC_MSG_CHECKING(whether patch works)
pver=`$PATCH -v 2>&1`
if echo "$pver" | grep -q "version 2.0" > /dev/null 2>&1; then
AC_MSG_ERROR([no
Sorry, you have version 2.0 of the patch program, which
is not supported by interdiff. Please upgrade.
])
fi
AC_MSG_RESULT(yes)
AC_DEFINE_UNQUOTED(PATCH, "$PATCH", How patch(1) is called)
AC_DEFINE_UNQUOTED(DIFF, "$DIFF", How diff(1) is called)
AC_OUTPUT([
Makefile splitdiff editdiff fixcvsdiff recountdiff
unwrapdiff dehtmldiff espdiff patchutils.spec
])
|