summaryrefslogtreecommitdiff
path: root/Build/source/texk/devnag/configure.in
blob: 79e81dcb0989f99378813e76bc194f31dcd71dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/devnag.c)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(devnag, 2.01)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC

dnl Checks for typedefs, structures, and compiler characteristics.

dnl Checks for library functions.
AC_CHECK_FUNCS(strstr)

AC_OUTPUT([Makefile src/Makefile])