-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.in
87 lines (65 loc) · 1.29 KB
/
configure.in
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
dnl
dnl Configure script source for GEAM
dnl
dnl (Process this file with autoconf to produce a configure script.)
AC_REVISION($Revision$)dnl
AC_PREREQ(2.13)
AC_INIT(src/geamd.c)
AM_CONFIG_HEADER(config.h)
dnl
dnl The version number goes here
dnl
AM_INIT_AUTOMAKE(geam,0.8.4)
AM_MAINTAINER_MODE
dnl
dnl Checks for programs
dnl
AC_PROG_CC
AC_STDC_HEADERS
AC_ARG_PROGRAM
AC_PROG_RANLIB
GPH_PROG_DOCBOOK
dnl
dnl Checks for libraries
dnl
dnl These are needed by libutil:
AC_CHECK_FUNCS(memicmp stpcpy strlwr strtoul memmove stricmp)
AM_PATH_PTH(1.2.1,,
AC_MSG_ERROR([[
***
*** Portable Threads Library (pth) found. Please install it first.
*** Download it from ftp://ftp.gnu.org/gnu/pth/
*** On a Debian GNU/Linux system you might want to try
*** apt-get install libpth-dev
***
]]))
dnl
dnl Checks for header files
dnl
dnl
dnl Checks for typedefs and structures
dnl
GNUPG_CHECK_TYPEDEF(byte, HAVE_BYTE_TYPEDEF)
dnl
dnl Checks for compiler features
dnl
dnl
dnl Checks for library functions
dnl
dnl
dnl Checks for system services
dnl
if test "$GCC" = yes; then
CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes"
fi
AC_OUTPUT_COMMANDS([chmod +x db2html])
AC_OUTPUT([
Makefile
db2html
lib/Makefile
src/Makefile
doc/Makefile
doc/version.sgml
doc/localstyle.dsl
tests/Makefile
])