-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.in
163 lines (147 loc) · 4.46 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
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
dnl ProFTPD - mod_amqp
dnl Copyright (c) 2017-2023 TJ Saunders <[email protected]>
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
dnl
dnl Process this file with autoconf to produce a configure script.
AC_INIT(./mod_amqp.c)
AC_CANONICAL_SYSTEM
ostype=`echo $build_os | sed 's/\..*$//g' | sed 's/-.*//g' | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
AC_PROG_CC
AC_PROG_CPP
AC_AIX
AC_ISC_POSIX
AC_MINIX
AC_PROG_MAKE_SET
dnl Need to support/handle the --with-includes and --with-libraries options
AC_ARG_WITH(includes,
[AC_HELP_STRING(
[--with-includes=LIST],
[add additional include paths to proftpd. LIST is a colon-separated list of include paths to add e.g. --with-includes=/some/mysql/include:/my/include])
],
[ ac_addl_includes=`echo "$withval" | sed -e 's/:/ /g'` ;
for ainclude in $ac_addl_includes; do
if test x"$ac_build_addl_includes" = x ; then
ac_build_addl_includes="-I$ainclude"
else
ac_build_addl_includes="-I$ainclude $ac_build_addl_includes"
fi
done
CPPFLAGS="$CPPFLAGS $ac_build_addl_includes"
])
AC_ARG_WITH(libraries,
[AC_HELP_STRING(
[--with-libraries=LIST],
[add additional library paths to proftpd. LIST is a colon-separated list of include paths to add e.g. --with-libraries=/some/mysql/libdir:/my/libs])
],
[ ac_addl_libdirs=`echo "$withval" | sed -e 's/:/ /g'` ;
for alibdir in $ac_addl_libdirs; do
if test x"$ac_build_addl_libdirs" = x ; then
ac_build_addl_libdirs="-L$alibdir"
else
ac_build_addl_libdirs="-L$alibdir $ac_build_addl_libdirs"
fi
done
LDFLAGS="$LDFLAGS $ac_build_addl_libdirs"
])
AC_HEADER_STDC
AC_CHECK_HEADERS(stdlib.h uuid/uuid.h unistd.h limits.h fcntl.h)
AC_CHECK_HEADERS(amqp.h amqp_tcp_socket.h amqp_ssl_socket.h)
AC_MSG_CHECKING([for librabbitmq AMQP_DELIVERY_PERSISTENT enum])
AC_TRY_COMPILE(
[
#include <sys/types.h>
#include <amqp.h>
], [
unsigned int delivery_mode = AMQP_DELIVERY_PERSISTENT;
], [
AC_DEFINE(HAVE_RABBITMQ_DELIVERY_MODE, 1, [Define if you have AMQP_DELIVERY_PERSISTENT])
AC_MSG_RESULT(yes)
], [
AC_MSG_RESULT(no)
]
)
dnl Splice out -lsupp, since that library hasn't been built yet
saved_libs="$LIBS"
LIBS=`echo "$LIBS" | sed -e 's/-lsupp//g'`;
LIBS="$LIBS -lcrypto -lssl -lrabbitmq"
AC_MSG_CHECKING([for librabbitmq amqp_ssl_socket_new])
AC_TRY_LINK(
[
#include <amqp.h>
#include <amqp_tcp_socket.h>
#include <amqp_ssl_socket.h>
],
[
amqp_connection_state_t conn;
(void) amqp_ssl_socket_new(conn);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_AMQP_SSL_SOCKET_NEW 1, [Define if you have librabbitmq amqp_ssl_socket_new])
],
[
AC_MSG_RESULT(no)
]
)
AC_MSG_CHECKING([for librabbitmq amqp_ssl_socket_set_verify_hostname])
AC_TRY_LINK(
[
#include <amqp.h>
#include <amqp_tcp_socket.h>
#include <amqp_ssl_socket.h>
],
[
amqp_socket_t *sock = NULL;
(void) amqp_ssl_socket_set_verify_hostname(sock, 1);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_AMQP_SSL_SOCKET_SET_VERIFY_HOSTNAME, 1, [Define if you have librabbitmq amqp_ssl_socket_set_verify_hostname])
],
[
AC_MSG_RESULT(no)
]
)
AC_MSG_CHECKING([for librabbitmq amqp_ssl_socket_set_verify_peer])
AC_TRY_LINK(
[
#include <amqp.h>
#include <amqp_tcp_socket.h>
#include <amqp_ssl_socket.h>
],
[
amqp_socket_t *sock = NULL;
(void) amqp_ssl_socket_set_verify_peer(sock, 1);
],
[
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_AMQP_SSL_SOCKET_SET_VERIFY_PEER, 1, [Define if you have librabbitmq amqp_ssl_socket_set_verify_peer])
],
[
AC_MSG_RESULT(no)
]
)
LIBS="$saved_libs"
INCLUDES="$ac_build_addl_includes"
LIBDIRS="$ac_build_addl_libdirs"
AC_SUBST(INCLUDES)
AC_SUBST(LIBDIRS)
AC_SUBST(MODULE_LIBS)
AC_CONFIG_HEADER(mod_amqp.h)
AC_OUTPUT(
t/Makefile
Makefile
)