File: configure.in

package info (click to toggle)
ed 0.2-16
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,548 kB
  • ctags: 704
  • sloc: ansic: 7,312; makefile: 199; sh: 179
file content (23 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dnl Process this file with autoconf to produce a configure script.
dnl
AC_INIT(ed.h)
AC_CONFIG_HEADER(config.h)

AC_PROG_LN_S
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_ISC_POSIX
AC_PROG_CC
AC_C_CONST
AC_HEADER_STDC
AC_CHECK_HEADERS(limits.h memory.h string.h unistd.h locale.h)
AC_CHECK_FUNCS(setbuffer sigsetjmp sigaction strerror)
AC_FUNC_VPRINTF
AC_FUNC_ALLOCA
if test "$ALLOCA" = alloca.o; then
  AC_SUBST(LIBOBJS)LIBOBJS="$LIBOBJS xmalloc.o error.o"
fi

AC_OUTPUT(Makefile)