File: configure.in

package info (click to toggle)
wwwcount 2.4-4
  • links: PTS
  • area: non-free
  • in suites: hamm
  • size: 1,348 kB
  • ctags: 693
  • sloc: ansic: 9,271; sh: 1,372; makefile: 168
file content (50 lines) | stat: -rw-r--r-- 1,394 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
dnl Process this file with autoconf to produce a configure script.
AC_INIT(config.h)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB
dnl AC_MSG_CHECKING(checking if datafile creation is allowed)
dnl if test -f "./.alfcf"; then
dnl    AC_DEFINE(ALLOW_FILE_CREATION)
dnl    AC_MSG_RESULT(yes)
dnl else
dnl    AC_MSG_RESULT(no)
dnl fi
dnl AC_MSG_CHECKING(checking if strict mode is decided)
dnl if test -f "./.strict"; then
dnl     AC_DEFINE(STRICT_MODE)
dnl     AC_MSG_RESULT(yes)
dnl else
dnl     AC_MSG_RESULT(no)
dnl fi
AC_PROG_MAKE_SET

dnl Checks for libraries.

dnl Checks for header files.
dnl AC_HEADER_STDC
AC_STDC_HEADERS
AC_HEADER_SYS_WAIT
AC_HEADER_TIME
AC_CHECK_HEADERS(string.h fcntl.h memory.h malloc.h unistd.h ctype.h)
AC_CHECK_HEADERS(strings.h)

AC_CHECK_HEADERS(sys/stat.h sys/param.h sys/file.h stdlib.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_STRUCT_TM
AC_CHECK_FUNC(flock,AC_DEFINE(HAVE_FLOCK))
AC_CHECK_FUNC(strcasecmp,AC_DEFINE(HAVE_STRCASECMP))
AC_CHECK_FUNC(mktime,AC_DEFINE(HAVE_MKTIME))
dnl from vile configure.in, I love vile, a great editor
AC_MSG_CHECKING([for SCO])
AC_PROGRAM_CHECK(COULD_BE_SCO, [scosh], maybe, maybenot)
if test "$COULD_BE_SCO" = "maybe"
then
    AC_DEFINE(SYSTEM_LOOKS_LIKE_SCO)
fi

dnl Checks for library functions.

AC_OUTPUT(libs/bigplus/Makefile libs/combine/Makefile Makefile utils/Makefile)