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
88
89
90
91
92
93
94
95
|
AC_PREREQ([2.59])
AC_INIT([rcscript-core], [0.1], [base-system@gentoo.org])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADER([config.h])
dnl Checks for programs.
AC_PROG_CC
AC_ISC_POSIX
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_AWK
AC_ENABLE_SHARED
AC_DISABLE_STATIC
dnl Next four lines is a hack to prevent libtool checking for CXX/F77
m4_undefine([AC_PROG_CXX])
m4_defun([AC_PROG_CXX],[])
m4_undefine([AC_PROG_F77])
m4_defun([AC_PROG_F77],[])
AC_PROG_LIBTOOL
AC_PREFIX_DEFAULT([])
dnl Checks for libraries.
dnl Checks for header files.
AC_FUNC_ALLOCA
AC_HEADER_STDC
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_UID_T
AC_TYPE_MODE_T
AC_TYPE_SIZE_T
dnl Checks for library functions.
AC_FUNC_FORK
AC_FUNC_LSTAT
AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_CHECK_FUNCS([remove])
dnl Check if gcc provides va_copy or __va_copy
AC_MSG_CHECKING([for va_copy])
AC_TRY_COMPILE([
#include <stdarg.h>
], [
va_list ap, aq;
va_copy(ap, aq);
],
[va_copy="va_copy"],
[AC_TRY_COMPILE([
#include <stdarg.h>
], [
va_list ap, aq;
__va_copy(ap, aq);
],
[va_copy="__va_copy"],
[AC_MSG_ERROR([Unable to determine name of va_copy macro])]
)]
)
AC_MSG_RESULT([$va_copy])
if test x"$va_copy" != xva_copy ; then
AC_DEFINE_UNQUOTED([va_copy], [$va_copy],
[va_copy macro proviced by gcc (undefined if its va_copy, else defined
to proper name)]
)
fi
dnl check if we have 32bit or 64bit output
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug],
[enable debugging - very verbose (default=disabled)]),
[enable_debug="$enableval"],
[enable_debug="no"]
)
if test x"$enable_debug" != xno ; then
CFLAGS="$CFLAGS -ggdb -DRC_DEBUG -Wshadow -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs"
fi
CFLAGS="$CFLAGS -Wall"
RCSCRIPTS_DEFINES='-DETCDIR="\"$(sysconfdir)\"" -DLIBDIR="\"$(libdir)\"" -DBINDIR="\"$(bindir)\"" -DSBINDIR="\"$(sbindir)\""'
AC_SUBST([RCSCRIPTS_DEFINES])
AC_OUTPUT([
Makefile
scripts/Makefile
data/Makefile
librcscripts/Makefile
src/Makefile
tests/Makefile
])
|