File: configure.in

package info (click to toggle)
acm 5.0-23.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,364 kB
  • ctags: 4,793
  • sloc: ansic: 42,444; makefile: 706; cpp: 293; perl: 280; sh: 198
file content (26 lines) | stat: -rwxr-xr-x 558 bytes parent folder | download | duplicates (9)
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
dnl Process this file with autoconf to produce a configure script.
AC_INIT(rpc_clntout.c)

dnl Checks for programs.
AC_PROG_CC

dnl Find exec path to cpp
AC_SUBST(CPPEXEC)
for i in /usr/ccs/lib/cpp /usr/local/bin/cpp /usr/lib/cpp /usr/bin/cpp /lib/cpp ; do
  if test -x $i ; then
    CPPEXEC=$i
  fi
done

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/file.h)
AC_CHECK_HEADERS(strings.h)

dnl Checks for typedefs, structures, and compiler characteristics.

dnl Checks for library functions.

AC_OUTPUT(Makefile)