]> code.citadel.org Git - citadel.git/blob - citadel/configure
Apply patch sent by UFarx to support CPPFLAGS
[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 && {
77         CFLAGS=${CFLAGS}' -DHAVE_OPENSSL'
78         LDFLAGS=${LDFLAGS}' -lssl -lcrypto -lz'
79 } || {
80         echo Citadel Server requires OpenSSL which is not present.
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 && {
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                 exit 1
113         }
114 }
115
116
117 ########################################################################
118 # The build ID can be generated from git or from the date
119 ########################################################################
120 CFLAGS=${CFLAGS}' -DBUILD_ID=\"'$(git describe 2>/dev/null || date +%y%03j)'\"'
121 CFLAGS=${CFLAGS}' -DCTDLDIR=\"'${CTDLDIR}'\"'
122
123
124 ########################################################################
125 # Output the config.mk
126 ########################################################################
127 (
128         echo '# config.mk is generated by configure'
129         echo "CTDLDIR := ${CTDLDIR}"
130         echo "CFLAGS := ${CFLAGS} ${CPPFLAGS}"
131         echo "LDFLAGS := ${LDFLAGS}"
132 ) >config.mk
133
134 cat config.mk
135 echo