1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl   Copyright (C) 2009-2014 Peter Breitenlohner <tex-live@tug.org>
4dnl
5dnl   This file is free software; the copyright holder
6dnl   gives unlimited permission to copy and/or distribute it,
7dnl   with or without modifications, as long as this notice is preserved.
8dnl
9AC_INIT([devnag (TeX Live)], [2.15], [tex-k@tug.org])
10AC_PREREQ([2.65])
11AC_CONFIG_SRCDIR([src/devnag.c])
12AC_CONFIG_AUX_DIR([../../build-aux])
13AC_CONFIG_MACRO_DIR([../../m4])
14
15KPSE_BASIC([devnag])
16
17AC_CONFIG_HEADERS([config.h])[]dnl unused, to avoid zillions of -D's on command line
18
19dnl Checks for programs.
20AC_PROG_CC
21AC_PROG_INSTALL
22
23if test "x$enable_build" != xno || test -f config.force; then
24
25AC_CHECK_FUNC([strstr], ,
26              [AC_MSG_ERROR([Sorry, your system has no strstr function.])])
27
28echo timestamp >config.force
29fi
30
31AC_CONFIG_FILES([Makefile])
32
33AC_OUTPUT
34