-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathconfigure.ac
More file actions
228 lines (185 loc) · 7.88 KB
/
configure.ac
File metadata and controls
228 lines (185 loc) · 7.88 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
AC_PREREQ([2.69])
AC_INIT([Merecat httpd], [3.00-rc1], [https://github.com/troglobit/merecat/issues], [merecat])
AC_CONFIG_AUX_DIR(aux)
AM_INIT_AUTOMAKE([1.11 foreign dist-xz])
AM_SILENT_RULES([yes])
AC_CANONICAL_HOST
case "$host_os" in
darwin*|macos*)
CFLAGS="$CFLAGS -D_DARWIN_C_SOURCE"
AC_DEFINE([_DARWIN_C_SOURCE], [1],
[Define to enable Darwin-specific extensions (e.g. utimensat)])
;;
esac
AC_CONFIG_SRCDIR([src/libhttpd.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile
merecat.service
src/Makefile
man/Makefile
tests/Makefile
www/Makefile
www/cgi-bin/Makefile
www/icons/Makefile
www/img/Makefile
www/onboard/Makefile])
# Use pkg-config to check for some deps; libConfuse, libssl
PKG_PROG_PKG_CONFIG
# Checks for programs.
AC_PROG_CC
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_RANLIB
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
# Checks for libraries.
AC_CHECK_LIB(crypt, crypt)
AC_CHECK_LIB(resolv, hstrerror)
# Checks for header files.
AC_CHECK_HEADERS([grp.h osreldate.h poll.h sys/devpoll.h sys/epoll.h sys/event.h sys/poll.h sys/sendfile.h sys/time.h])
AC_HEADER_DIRENT
# Check for missing/broken API's, which we can replace, e.g. lib/lstat.c
AC_REPLACE_FUNCS([strlcpy strlcat tempfile])
AC_CONFIG_LIBOBJ_DIR([lib])
# Checks for library functions actually conditioned on in the source.
AC_CHECK_FUNCS([accept4 atoll backtrace clock_gettime daemon epoll_create1 hstrerror kqueue poll select sendfile setlogin setsid waitpid])
# Check for command line options
AC_ARG_ENABLE(builtin-icons,
AS_HELP_STRING([--enable-builtin-icons], [Enable built-in icons for dir listings]))
AC_ARG_ENABLE(public-html,
AS_HELP_STRING([--enable-public-html], [Enable ~user/public_html in non-chrooted setups]))
AC_ARG_ENABLE(htaccess,
AS_HELP_STRING([--enable-htaccess], [Enable .htaccess files for access control]))
AC_ARG_ENABLE(htpasswd,
AS_HELP_STRING([--enable-htpasswd], [Enable .htpasswd files for authentication]))
AC_ARG_ENABLE(msie-padding,
AS_HELP_STRING([--enable-msie-padding], [Add padding to error messages for Internet Explorer]))
AC_ARG_ENABLE(dirlisting,
AS_HELP_STRING([--disable-dirlisting], [Disable directory listings when no index file is found]),,[
enable_dirlisting=yes])
AC_ARG_WITH([systemd],
[AS_HELP_STRING([--with-systemd=DIR], [Directory for systemd service files, default: auto])],,
[with_systemd=auto])
AC_ARG_WITH([config],
AS_HELP_STRING([--without-config], [Disable /etc/merecat.conf support using libConfuse]),,
[with_config=yes])
AC_ARG_WITH(ssl,
AS_HELP_STRING([--without-ssl], [Disable HTTPS support, default: enabled]),,
[with_ssl=yes])
AC_ARG_WITH([symlinks],
AS_HELP_STRING([--without-symlinks], [Disable httpd and in.httpd symlinks to merecat]),,
[with_symlinks=yes])
AC_ARG_WITH([zlib],
AS_HELP_STRING([--without-zlib], [Disable mod_deflate (gzip) using zlib]),,
[with_zlib=auto])
AS_IF([test "x$enable_builtin_icons" = "xyes"], [
AC_DEFINE(BUILTIN_ICONS, [1], [Enables built-in icons for dir listings])])
AM_CONDITIONAL([HAVE_ICONS], [test "x$enable_builtin_icons" != "xyes"])
AS_IF([test "x$enable_public_html" = "xyes"], [
AC_DEFINE_UNQUOTED(TILDE_MAP_2, "public_html", [Enables ~user/public_html])])
AS_IF([test "x$enable_htaccess" = "xyes"], [
AC_DEFINE_UNQUOTED(ACCESS_FILE, ".htaccess", [Enables .htaccess access control files])])
AS_IF([test "x$enable_htpasswd" = "xyes"], [
AC_DEFINE_UNQUOTED(AUTH_FILE, ".htpasswd", [Enables .htpasswd auth. files])])
AM_CONDITIONAL([ENABLE_HTPASSWD], [test "x$enable_htpasswd" = "xyes"])
AS_IF([test "x$enable_msie_padding" = "xyes"], [
AC_DEFINE(MSIE_PADDING, [1], [Enable padding of error messages for IE])])
AS_IF([test "x$enable_dirlisting" != "xno"], [
AC_DEFINE(GENERATE_INDEXES, [1], [Automatically generate directory index when index file is missing])])
AC_ARG_VAR(WEBDIR, [Document root of your web server [LOCALSTATEDIR/www]])
AS_IF([test "x${WEBDIR}" = "x"], [
WEBDIR=$localstatedir/www])
AS_IF([test "x$with_config" != "xno"], [
AC_DEFINE([HAVE_LIBCONFUSE], [1], [Build with support for /etc/merecat.conf])
PKG_CHECK_MODULES([confuse], [libconfuse >= 2.7])])
AM_CONDITIONAL([HAVE_CONFUSE], [test "x$with_config" != "xno"])
AM_CONDITIONAL([CREATE_SYMLINKS], [test "x$with_symlinks" != "xno"])
AS_IF([test "x$with_ssl" != "xno"], [
PKG_CHECK_MODULES([OpenSSL], [openssl >= 3.0.0])
LDFLAGS="$LDFLAGS $OpenSSL_LIBS"
CPPFLAGS="$CPPFLAGS $OpenSSL_CFLAGS"
AC_CHECK_LIB([crypto], [EVP_EncryptInit], [],
AC_MSG_ERROR([*** Crypto library (OpenSSL) not found!]))
AC_CHECK_LIB([ssl], [SSL_library_init], [],
AC_CHECK_LIB([ssl], [OPENSSL_init_ssl], [],
AC_MSG_ERROR([*** SSL library (OpenSSL) not found!])))
AC_CHECK_HEADERS([openssl/crypto.h openssl/x509.h openssl/pem.h openssl/ssl.h openssl/tls1.h openssl/err.h], [],
AC_MSG_ERROR([*** Cannot find required header files!]), [
#include <openssl/conf.h>
])
AC_CHECK_DECLS([SSL_COMP_free_compression_methods,SSL_CTX_set_ecdh_auto], [], [], [
#ifdef HAVE_OPENSSL_ERR_H
#include <openssl/err.h>
#endif
#ifdef HAVE_OPENSSL_RAND_H
#include <openssl/rand.h>
#endif
#ifdef HAVE_OPENSSL_CONF_H
#include <openssl/conf.h>
#endif
#ifdef HAVE_OPENSSL_ENGINE_H
#include <openssl/engine.h>
#endif
#include <openssl/ssl.h>
#include <openssl/evp.h>
])
AC_DEFINE([ENABLE_SSL], [1], [Enable HTTPS support])
])
AM_CONDITIONAL([ENABLE_SSL], test "x$with_ssl" = "xyes")
AS_IF([test "x$with_zlib" != "xno"], [
AC_CHECK_HEADERS([zlib.h])
AS_IF([test "x$ac_cv_header_zlib_h" = "xyes" -o "x$with_zlib" = "xyes"], [
PKG_CHECK_MODULES([zlib], [zlib >= 1.2.3.4])])
])
# Check where to install the systemd .service file
AS_IF([test "x$with_systemd" = "xyes" -o "x$with_systemd" = "xauto"], [
def_systemd=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
AS_IF([test "x$def_systemd" = "x"],
[AS_IF([test "x$with_systemd" = "xyes"],
[AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])])
with_systemd=no], [with_systemd="$def_systemd"])]
)
AS_IF([test "x$with_systemd" != "xno"],
[AC_SUBST([systemddir], [$with_systemd])])
AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemd" != "xno"])
# Expand $sbindir early, into $SBINDIR, for systemd unit file
# NOTE: This does *not* take prefix/exec_prefix override at "make
# install" into account, unfortunately.
test "x$prefix" = xNONE && prefix=
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
DOCDIR=`eval echo $docdir`
DOCDIR=`eval echo $DOCDIR`
AC_SUBST(DOCDIR)
SBINDIR=`eval echo $sbindir`
SBINDIR=`eval echo $SBINDIR`
AC_SUBST(SBINDIR)
WWWDIR=`eval echo $WEBDIR`
AC_SUBST(WWWDIR)
AC_OUTPUT
cat <<EOF
------------------ Summary ------------------
$PACKAGE_NAME version $PACKAGE_VERSION
Prefix................: $(eval echo $prefix)
Sysconfdir............: $(eval echo $sysconfdir)
Web root..............: $WWWDIR
C Compiler............: $CC $CFLAGS $CPPFLAGS $LDFLAGS $LIBS
Optional features:
HTTPS (OpenSSL).......: $with_ssl
Config file...........: $with_config
Gzip deflate (zlib)...: $with_zlib
Systemd...............: $with_systemd
Directory listings....: ${enable_dirlisting:-no}
Built-in icons........: ${enable_builtin_icons:-no}
Public html...........: ${enable_public_html:-no}
.htaccess.............: ${enable_htaccess:-no}
.htpasswd.............: ${enable_htpasswd:-no}
MSIE padding..........: ${enable_msie_padding:-no}
Symlinks..............: $with_symlinks
epoll.................: ${ac_cv_func_epoll_create1:-no}
sendfile..............: ${ac_cv_func_sendfile:-no}
------------- Compiler version --------------
$($CC --version || true)
---------------------------------------------
Check the above options and compile with:
${MAKE-make}
EOF