-
Notifications
You must be signed in to change notification settings - Fork 42
/
configure.ac
180 lines (159 loc) · 6.92 KB
/
configure.ac
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
##############################################
# autoconf really does not work with 2.59 or older
AC_PREREQ([2.60])
AC_INIT([mod_gearman], [5.1.4], [[email protected]])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
AC_CONFIG_SRCDIR([neb_module_naemon/mod_gearman.c],[worker/worker.c],[tools/send_gearman.c],[tools/check_gearman.c],[tools/gearman_top.c])
AC_CONFIG_HEADER([config.h])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
CFLAGS="${CFLAGS} -Wall -W -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -O -fPIC -D_GNU_SOURCE -D_REENTRANT -D_FILE_OFFSET_BITS=64"
##############################################
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_RANLIB
AM_PROG_AR
##############################################
# gearman wants this
AC_C_INLINE
AC_FUNC_MALLOC
AC_FUNC_FORK
AC_HEADER_STDBOOL
##############################################
# Checks for libraries.
AC_CHECK_LIB([pthread], [pthread_create])
##############################################
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h string.h unistd.h pthread.h arpa/inet.h fcntl.h limits.h netdb.h netinet/in.h stddef.h sys/socket.h sys/time.h sys/timeb.h syslog.h],,AC_MSG_ERROR([Compiling Mod-Gearman requires standard unix headers files]))
AC_CHECK_HEADERS([ltdl.h],,AC_MSG_ERROR([Compiling Mod-Gearman requires ltdl.h]))
AC_CHECK_HEADERS([curses.h],,AC_MSG_ERROR([Compiling Mod-Gearman requires curses.h]))
##############################################
# check for gearmand
AC_ARG_WITH(gearman,
[ --with-gearman=DIR Specify the path to your gearman library],
[
found=0
for d in libgearman/.libs lib lib64 .; do
test -e "$withval/$d/libgearman.so" && LDFLAGS="${LDFLAGS} -L$withval/$d" && found=1 && break;
done
test $found -eq 1 || { echo 'did not find libgearman.so under your specified path!' && exit 1; }
echo "found libgearman.so in $withval/$d/"
found=0
for d in libgearman-1.0 include .; do
test -e "$withval/$d/libgearman-1.0/gearman.h" && CFLAGS="${CFLAGS} -I$withval/$d" && found=1 && break;
done
test $found -eq 1 || { echo 'did not find libgearman-1.0/gearman.h under your specified path!' && exit 1; }
echo "found gearman.h in $withval/$d/"
GEARMAN_LIBS="-lgearman"
],
[
PKG_CHECK_MODULES([gearmand], [gearmand >= 1.1.12])
CFLAGS="${CFLAGS} `pkg-config --cflags gearmand`"
GEARMAN_LIBS="`pkg-config --libs gearmand`"
]
)
AC_CHECK_LIB([gearman], [gearman_client_create],,AC_MSG_ERROR([Compiling Mod-Gearman requires libgearman. (hint: install libgearman-dev pkg or specify --with-gearman=...)]))
AC_SUBST(GEARMAN_LIBS)
##############################################
# check for naemon
AC_ARG_WITH(naemon,
[ --with-naemon=DIR Specify the path to libnaemon],
[
found=0
for d in .; do
test -e "$withval/$d/libnaemon.la" && LDFLAGS="${LDFLAGS} -L$withval/$d" && found=1 && break;
done
test $found -eq 1 || { echo 'did not find libnaemon.la under your specified path!' && exit 1; }
echo "found libnaemon.la in $withval/$d/"
found=0
for d in .; do
test -e "$withval/$d/src/naemon/naemon.h" && CFLAGS="${CFLAGS} -I$withval/$d -I$withval/$d/src" && found=1 && break;
done
echo "found naemon.h in $withval/$d/"
test $found -eq 1 || { echo 'did not find naemon/naemon.h under your specified path!' && exit 1; }
CFLAGS="${CFLAGS} `PKG_CONFIG_PATH="$withval/$d/" pkg-config --cflags naemon`"
NAEMON_LIBS="-lnaemon -ldl -lm -lglib-2.0"
],
[
PKG_CHECK_MODULES([naemon], [naemon >= 1.2])
CFLAGS="${CFLAGS} `pkg-config --cflags naemon`"
NAEMON_LIBS="`pkg-config --libs naemon`"
]
)
CPPFLAGS="${CPPFLAGS} ${CFLAGS}"
AC_CHECK_HEADERS([naemon/naemon.h],,AC_MSG_ERROR([Compiling Mod-Gearman requires naemon.h (hint: install naemon-dev pkg or specify --with-naemon=...)]))
AC_SUBST(NAEMON_LIBS)
##############################################
# check for openssl
PKG_CHECK_MODULES([openssl], [openssl >= 1])
CFLAGS="${CFLAGS} `pkg-config --cflags openssl`"
LDFLAGS="${LDFLAGS} `pkg-config --libs openssl`"
AC_CHECK_HEADERS([openssl/evp.h],,AC_MSG_ERROR([Compiling Mod-Gearman requires openssl.h (hint: install libssl-dev pkg)]))
##############################################
# Determine the system init.d directory
AC_ARG_WITH([init-dir],
[AS_HELP_STRING([--with-init-dir],
[specify the system init script directory @<:@default="${sysconfdir}/init.d"@:>@])],
[], [with_init_dir="${sysconfdir}/init.d"])
initrddir="$with_init_dir"
AC_SUBST(initrddir)
##############################################
# Determine the user
AC_ARG_WITH([user],
[AS_HELP_STRING([--with-user],
[specify the user @<:@default="naemon"@:>@])],
[], [with_user="naemon"])
user="$with_user"
AC_SUBST(user)
##############################################
USEPERL=no;
AC_ARG_ENABLE(embedded-perl,--enable-embedded-perl will enable embedded Perl interpreter,[
USEPERL=$enableval
]
,USEPERL=no)
dnl Is embedded Perl being compiled in?
AM_CONDITIONAL(USEPERL, test "$USEPERL" = "yes")
if test "$USEPERL" = "yes"; then
tmp=$LIBS
AC_CHECK_LIB([perl],[perl_alloc],,AC_MSG_ERROR([Compiling Mod-Gearman with embedded Perl requires libperl.]),[`perl -MExtUtils::Embed -e ccopts -e ldopts`])
# save libs, as we do not want to add -lperl to all LIBS
LIBS=$tmp
AC_DEFINE_UNQUOTED(EMBEDDEDPERL,,[Is embedded Perl being compiled in?])
echo "creating common/perlxsi.c"
perl -MExtUtils::Embed -e xsinit -- -o common/perlxsi.c
echo "Embedded Perl interpreter will be compiled in..."
PERLLIBS="`perl -MExtUtils::Embed -e ccopts -e ldopts | tr -d '\n'`"
AC_SUBST(PERLLIBS)
fi
##############################################
AC_DEFINE_UNQUOTED([GIT_HASH], "`git describe --always 2>/dev/null`", ["git version information"])
##############################################
AM_CONDITIONAL(USEBSD, test "$(uname)" = "FreeBSD")
##############################################
# Check some functions
AC_CHECK_FUNCS([gettimeofday strsep strtok strdup strchr strstr strtoul alarm gethostname memset strcspn strerror atexit gethostbyname socket dup2 localtime_r memmove strpbrk])
AC_PROG_LN_S
##############################################
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
AC_TYPE_PID_T
##############################################
# add a "make install" target
AC_PROG_INSTALL
##############################################
# enable -Werror after locating all libs, otherwise we could not find libs that generate warnings
AC_ARG_ENABLE(debug,--enable-debug will enable debugging symbols,[
CFLAGS="${CFLAGS} -pedantic -Wfatal-errors -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -gdwarf-4 -g3"
if test "$USEPERL" != "yes"; then
CFLAGS="${CFLAGS} -Werror"
fi
],
CFLAGS="${CFLAGS} -g3"
)
##############################################
# write out files
AC_CONFIG_FILES([Makefile])
AC_OUTPUT