]> code.citadel.org Git - citadel.git/blob - citadel/configure
Getting navigation in place for week view.
[citadel.git] / citadel / configure
1 #!/bin/sh
2
3 # CONFIGURE SCRIPT FOR CITADEL SERVER
4 # This file is part of "conf-IG-ure"
5 # Copyright (C) 2016-2022 by Art Cancro
6 #
7 # This program is open source software.  Use, duplication, and/or
8 # disclosure are subject to the GNU General Purpose License version 3.
9
10 echo 
11 echo Running the configure script to create config.mk
12 echo
13
14 ########################################################################
15 # Parse the command line arguments
16 ########################################################################
17 for x in $*
18 do
19         a=$1
20         k=`echo $a | awk -F= ' { print $1 } '`
21         v=`echo $a | awk -F= ' { print $2 } '`
22
23         case $k in
24                 --prefix)
25                         echo $0 : '--prefix is not supported.  you are probably looking for --ctdldir'
26                         exit 1
27                 ;;
28                 --ctdldir)
29                         CTDLDIR=$v
30                 ;;
31                 *)
32                         echo $0 : unknown option $k
33                         echo
34                         echo Valid options are:
35                         echo '  --ctdldir=DIR           Install Citadel server to DIR [/usr/local/citadel]'
36                         exit 1
37                 ;;
38         esac
39         shift
40 done
41
42
43 ########################################################################
44 # Set any missing values
45 ########################################################################
46
47 # GCC is the default C compiler
48 [ "${CC}" = "" ]        && export CC=gcc
49
50 # Accept PREFIX as a substitute for CTDLDIR, but only if CTDLDIR is not already set
51 [ "$CTDLDIR" = "" ] && [ "$PREFIX" != "" ] && CTDLDIR=$PREFIX
52
53 # Configure the directory into which Citadel Server will be installed.
54 [ "$CTDLDIR" = "" ]     && CTDLDIR=/usr/local/citadel
55
56
57 # Permit override of CFLAGS and LDFLAGS using environment variables
58 [ "$CFLAGS" = "" ]      && CFLAGS=''
59 [ "$CPPFLAGS" = "" ]    && CPPFLAGS=''
60 [ "$LDFLAGS" = "" ]     && LDFLAGS=''
61
62
63 ########################################################################
64 # Test for OpenSSL
65 ########################################################################
66 echo Testing for OpenSSL...
67 tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/configure.$$
68 tempcc=${tempfile}.c
69 cat >$tempcc <<!
70 #include <openssl/ssl.h>
71 int main(int argc, char **argv) {
72         SSL_load_error_strings();
73         exit(0);
74 }
75 !
76 $CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile $LDFLAGS -lssl -lcrypto && $tempfile >/dev/null 2>&1 && {
77         LDFLAGS=${LDFLAGS}' -lssl -lcrypto -lz'
78 } || {
79         echo Citadel Server requires OpenSSL which is not present.
80         rm -f $tempfile $tempcc 2>/dev/null
81         exit 2
82 }
83
84
85 ########################################################################
86 # Test for iconv
87 ########################################################################
88 echo Testing for iconv...
89 tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/configure.$$
90 tempcc=${tempfile}.c
91 cat >$tempcc <<!
92 #include <stdlib.h>
93 #include <unistd.h>
94 #include <stdio.h>
95 #include <iconv.h>
96 int main(int argc, char **argv) {
97         size_t wow = iconv(NULL, NULL, NULL, NULL, NULL);
98         return(0);
99 }
100 !
101
102 $CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile >/dev/null 2>&1 && {
103         ICONV='yes'
104         echo iconv.h is present and requires no additional libraries
105 } || {
106         echo Trying again with -liconv...
107         $CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile $LDFLAGS -liconv && {
108                 ICONV='yes'
109                 LDFLAGS=${LDFLAGS}' -liconv'
110         } || {
111                 echo Citadel Server requires iconv character set conversion.
112                 rm -f $tempfile $tempcc 2>/dev/null
113                 exit 1
114         }
115 }
116
117
118 ########################################################################
119 # Test for -lresolv
120 ########################################################################
121 echo Testing for lresolv...
122 tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/configure.$$
123 tempcc=${tempfile}.c
124 cat >$tempcc <<!
125 #include <stdlib.h>
126 #include <unistd.h>
127 #include <stdio.h>
128 #include <iconv.h>
129 int main(int argc, char **argv) {
130         return(0);
131 }
132 !
133
134 $CC $CFLAGS $CPPFLAGS $tempcc -lresolv -o $tempfile >/dev/null 2>&1 && {
135         LRESOLV='-lresolv'
136 } || {
137         LRESOLV=''
138 }
139
140 rm -f $tempfile $tempcc 2>/dev/null
141
142
143 ########################################################################
144 # Test for -lintl
145 ########################################################################
146 echo Testing for lintl...
147 tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/configure.$$
148 tempcc=${tempfile}.c
149 cat >$tempcc <<!
150 #include <stdlib.h>
151 #include <unistd.h>
152 #include <stdio.h>
153 #include <iconv.h>
154 int main(int argc, char **argv) {
155         return(0);
156 }
157 !
158
159 $CC $CFLAGS $CPPFLAGS $tempcc -lintl -o $tempfile >/dev/null 2>&1 && {
160         LINTL='-lintl'
161 } || {
162         LINTL=''
163 }
164
165 rm -f $tempfile $tempcc 2>/dev/null
166
167
168 ########################################################################
169 # Are we on Linux with -lcrypt and PAMmy stuff?
170 ########################################################################
171 echo Testing for lcrypt...
172 tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/configure.$$
173 tempcc=${tempfile}.c
174 cat >$tempcc <<!
175 #include <stdlib.h>
176 #include <unistd.h>
177 #include <stdio.h>
178 #include <crypt.h>
179 int main(int argc, char **argv) {
180         return(0);
181 }
182 !
183
184 $CC $CFLAGS $CPPFLAGS $tempcc -lcrypt -o $tempfile >/dev/null 2>&1 && {
185         CHKPW='chkpw chkpwd'
186 } || {
187         CHKPW=''
188 }
189
190 rm -f $tempfile $tempcc 2>/dev/null
191
192
193 ########################################################################
194 # This is needed to link Berkeley DB.  We will add more here later.
195 ########################################################################
196 BACKEND_LDFLAGS=-ldb
197
198
199 ########################################################################
200 # The build ID can be generated from git or from the date
201 ########################################################################
202 CFLAGS=${CFLAGS}' -DBUILD_ID=\"'$(git describe 2>/dev/null || date +%y%03j)'\"'
203 CFLAGS=${CFLAGS}' -DCTDLDIR=\"'${CTDLDIR}'\"'
204
205
206 ########################################################################
207 # Output the config.mk
208 ########################################################################
209 (
210         echo '# config.mk is generated by configure'
211         echo "CTDLDIR := ${CTDLDIR}"
212         echo "CC := ${CC}"
213         echo "CFLAGS := ${CFLAGS} ${CPPFLAGS}"
214         echo "LDFLAGS := ${LDFLAGS}"
215         echo "LRESOLV := ${LRESOLV}"
216         echo "LINTL := ${LINTL}"
217         echo "BACKEND_LDFLAGS := ${BACKEND_LDFLAGS}"
218         echo "CHKPW := ${CHKPW}"
219 ) >config.mk
220
221 cat config.mk
222 echo