File: configure.in

package info (click to toggle)
ted 2.6-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 7,928 kB
  • ctags: 8,734
  • sloc: ansic: 71,878; makefile: 2,363; sh: 159
file content (35 lines) | stat: -rw-r--r-- 621 bytes parent folder | download
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
dnl Process this file with autoconf to produce a configure script.
AC_INIT(tedMain.c)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB

dnl Checks for libraries.

dnl Checks for header files.
AC_PATH_XTRA
AC_PATH_XPM
AC_PATH_XM
AC_PATH_PNG
AC_PATH_ZLIB
AC_PATH_JPEG
AC_PATH_GIF
AC_PATH_TIFF
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h)

dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_BIGENDIAN

AC_LD_FLAGS_STATIC

dnl Checks for library functions.
AC_CHECK_FUNCS(socket strerror uname)

AC_SUBST(CC)
AC_SUBST(CFLAGS)

AC_CONFIG_HEADER(config.h)
AC_OUTPUT(makefile)