-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfigure.in
1525 lines (1355 loc) · 46.6 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
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
dnl /* ====================================================================
dnl * The Kannel Software License, Version 1.0
dnl *
dnl * Copyright (c) 2001-2016 Kannel Group
dnl * Copyright (c) 1998-2001 WapIT Ltd.
dnl * All rights reserved.
dnl *
dnl * Redistribution and use in source and binary forms, with or without
dnl * modification, are permitted provided that the following conditions
dnl * are met:
dnl *
dnl * 1. Redistributions of source code must retain the above copyright
dnl * notice, this list of conditions and the following disclaimer.
dnl *
dnl * 2. Redistributions in binary form must reproduce the above copyright
dnl * notice, this list of conditions and the following disclaimer in
dnl * the documentation and/or other materials provided with the
dnl * distribution.
dnl *
dnl * 3. The end-user documentation included with the redistribution,
dnl * if any, must include the following acknowledgment:
dnl * "This product includes software developed by the
dnl * Kannel Group (http://www.kannel.org/)."
dnl * Alternately, this acknowledgment may appear in the software itself,
dnl * if and wherever such third-party acknowledgments normally appear.
dnl *
dnl * 4. The names "Kannel" and "Kannel Group" must not be used to
dnl * endorse or promote products derived from this software without
dnl * prior written permission. For written permission, please
dnl * contact [email protected].
dnl *
dnl * 5. Products derived from this software may not be called "Kannel",
dnl * nor may "Kannel" appear in their name, without prior written
dnl * permission of the Kannel Group.
dnl *
dnl * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
dnl * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
dnl * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
dnl * DISCLAIMED. IN NO EVENT SHALL THE KANNEL GROUP OR ITS CONTRIBUTORS
dnl * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
dnl * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
dnl * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
dnl * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
dnl * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
dnl * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
dnl * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
dnl * ====================================================================
dnl *
dnl * This software consists of voluntary contributions made by many
dnl * individuals on behalf of the Kannel Group. For more information on
dnl * the Kannel Group, please see <http://www.kannel.org/>.
dnl *
dnl * Portions of this software are based upon software originally written at
dnl * WapIT Ltd., Helsinki, Finland for the Kannel project.
dnl */
dnl
dnl configure.in -- main autoconf macro definition file
dnl
dnl Process this file with autoconf to produce a configure script.
dnl
dnl initialization
AC_PREREQ(2.5)
AC_INIT(gw/alt_charsets.h)
AC_CONFIG_HEADER(gw-config.h)
AC_SUBST(SHELL)
AC_CONFIG_AUX_DIR(.)
AC_SET_TERMINAL_SEQUENCES()
AC_CONFIG_NICE(config.nice)
dnl Check gateway version number.
VERSION=`head -n 1 VERSION`
if test "x$VERSION" = "xsvn"; then
AC_MSG_CHECKING([svn checkout revision])
AC_SVN_REVISION(SVN_REVISION)
AC_MSG_RESULT([$SVN_REVISION])
VERSION="$VERSION-r$SVN_REVISION"
fi
AC_DEFINE_UNQUOTED(GW_NAME, "Kannel")
AC_DEFINE_UNQUOTED(GW_VERSION, "$VERSION")
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
AC_SUBST(GW_VERSION)
AC_SUBST(VERSION)
AC_CONFIG_SECTION([Configuring for Kannel gateway version $VERSION])
AM_INIT_AUTOMAKE(Kannel,$VERSION)
AC_LANG_C
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
dnl AC_SUBST(LIBTOOL_DEPS)
dnl Solaris pkgadd support definitions
PKGADD_PKG="KANNELgateway"
PKGADD_NAME="Kannel - WAP and SMS gateway"
PKGADD_VENDOR="www.kannel.org"
AC_SUBST(PKGADD_PKG)
AC_SUBST(PKGADD_NAME)
AC_SUBST(PKGADD_VENDOR)
dnl Target installation directory for documentation
AC_SUBST(docdir)
docdir='${prefix}/share/doc/kannel'
dnl Checks system type.
AC_CONFIG_SECTION([Running system checks])
AC_CANONICAL_HOST
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CC_C99
if test "$ac_cv_prog_cc_c99" = "no"; then
AC_MSG_ERROR(["Kannel requires a C compiler that supports ISO C99."])
fi
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_YACC
AC_PROG_LEX
AC_CHECK_TOOL(AR, ar)
AC_PATH_PROG(CONVERT, convert)
AC_PATH_PROG(PERL, perl)
dnl Apply system specific rules.
dnl Executable extension for systems that need one, i.e. Cygwin
dnl Set the LIBTOOL to be used to create libs
EXE_EXT=""
OLD_LIBTOOL="$AR rc"
case "$host" in
*-sun-solaris*)
CFLAGS="$CFLAGS -DSunOS=1"
;;
*-cygwin*)
EXE_EXT=".exe"
LDFLAGS="$LDFLAGS -Wl,--enable-auto-import"
;;
*apple-darwin*)
# MacOS X
# Lets try to find the newest installed SDK for compilation
# so we know how to link against it.
# If we find a SDK, we use that rather then the standard /usr
# location libs and includes.
found=0
SDK=""
for loc in "MacOSX10.7.sdk" "MacOSX10.6.sdk" "MacOSX10.5.sdk" "MacOSX10.4u.sdk" "MacOSX10.4.0.sdk" "MacOSX10.3.9.sdk" \
"MacOSX10.3.0.sdk" "MacOSX10.2.8.sdk" "MacOSX10.1.5.sdk"
do
if test "$found" = "0" ; then
if test -d "/Developer/SDKs/${E}" ; then
found="1"
SDK="${loc}"
fi
fi
done
if test "$SDK" != "" ; then
CFLAGS="$CFLAGS -DDARWIN=1 -L/Developer/SDKs/${SDK}/usr/lib -I/Developer/SDKs/${SDK}/usr/include"
else
CFLAGS="$CFLAGS -DDARWIN=1"
fi
OLD_LIBTOOL="libtool -static -o"
;;
*-linux-*)
CFLAGS="$CFLAGS -D_XOPEN_SOURCE=600 -D_BSD_SOURCE"
LDFLAGS="$LDFLAGS -rdynamic"
;;
*-*-openbsd* | *-*-freebsd*)
CFLAGS="$CFLAGS -pthread"
AC_CHECK_LIB(pthread, pthread_exit, [LIBS="$LIBS -lpthread"; pthread="yes"],
[AC_CHECK_LIB(c_r, pthread_exit, [LIBS="$LIBS -lc_r"; pthread="yes"])]
)
;;
*-interix3*)
INSTALL="./install-sh"
;;
esac
AC_SUBST(EXE_EXT)
AC_SUBST(OLD_LIBTOOL)
AC_ARG_WITH(cflags,
[ --with-cflags=FLAGS use FLAGS for CFLAGS],
CFLAGS="$CFLAGS $withval")
AC_ARG_WITH(libs,
[ --with-libs=FLAGS use FLAGS for extra libraries],
LIBS="$LIBS $withval")
dnl Check whether compiler supports inline
AC_C_INLINE
dnl Check for how to do large files
AC_SYS_LARGEFILE(CFLAGS)
if test "${ac_cv_sys_file_offset_bits}" != no ; then
CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=${ac_cv_sys_file_offset_bits}"
fi
if test "${ac_cv_sys_large_files}" != no ; then
CFLAGS="$CFLAGS -D_LARGE_FILES=${ac_cv_sys_large_files}"
fi
dnl Check for word sizes.
AC_CHECK_SIZEOF(short, 2)
AC_CHECK_SIZEOF(int, 4)
AC_CHECK_SIZEOF(long, 4)
AC_CHECK_SIZEOF(long long, 8)
SIZEOF_SHORT=$ac_cv_sizeof_short
SIZEOF_INT=$ac_cv_sizeof_int
SIZEOF_LONG=$ac_cv_sizeof_long
SIZEOF_LONG_LONG=$ac_cv_sizeof_long_long
AC_SUBST(SIZEOF_SHORT)
AC_SUBST(SIZEOF_INT)
AC_SUBST(SIZEOF_LONG)
AC_SUBST(SIZEOF_LONG_LONG)
dnl Checks for libraries.
AC_CHECK_LIB(m, log)
AC_CHECK_LIB(socket, accept)
AC_CHECK_LIB(nsl, inet_ntoa)
AC_CHECK_LIB(resolv, inet_ntop)
AC_CHECK_LIB(bind, inet_ntop)
if test -z "$pthread"; then
AC_CHECK_LIB(pthread, pthread_exit, [LIBS="$LIBS -lpthread"])
fi
AC_CHECK_LIB(iconv, libiconv, [LIBS="$LIBS -liconv"])
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/ioctl.h sys/time.h sys/types.h unistd.h sys/poll.h)
AC_CHECK_HEADERS(pthread.h getopt.h syslog.h zlib.h execinfo.h stdlib.h)
AC_CHECK_HEADERS([sys/socket.h sys/sockio.h netinet/in.h])
AC_CHECK_HEADERS([net/if.h], [], [],
[#include <stdio.h>
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
#if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
])
AC_CHECK_HEADERS([sys/ucontext.h], [AC_DEFINE(HAVE_UCONTEXT)],
[AC_MSG_WARN(System lacks ucontext.h - user context support)]
)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_TRY_COMPILE(, [char *func = __FUNCTION__;],
AC_DEFINE(HAVE___FUNCTION__))
AC_TRY_COMPILE(, [char *func = __func__;],
AC_DEFINE(HAVE___FUNC__))
dnl check for iconv
AM_ICONV
dnl Checks for library functions.
AC_CHECK_FUNCS(gettimeofday select socket strdup getopt_long localtime_r gmtime_r backtrace srandom initgroups strtoll strtoq)
AC_CHECK_FUNC(getopt, [], [AC_LIBOBJ([utils/attgetopt])])
dnl Check if we have reentrant gethostbyname and which one
AC_CHECK_FUNC(gethostbyname_r, [ AC_FUNC_WHICH_GETHOSTBYNAME_R ], [
AC_CHECK_FUNC(gethostbyname,[], [
AC_MSG_ERROR([Couldnot find gethostbyname_r nor gethostbyname functions])])]
)
dnl Extra feature checks
dnl GW_HAVE_TYPE_FROM(HDRNAME, TYPE, HAVENAME, DESCRIPTION)
AC_DEFUN([GW_HAVE_TYPE_FROM], [
AC_CACHE_CHECK([for $2 in <$1>], gw_cv_type_$3,
AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include <$1>
], [$2 foo;],
gw_cv_type_$3=yes, gw_cv_type_$3=no))
if test $gw_cv_type_$3 = yes; then
AC_DEFINE($3, 1, $4)
fi
])
dnl GW_HAVE_FUNC_FROM(HDRNAME, FUNC, HAVENAME, DESCRIPTION)
AC_DEFUN([GW_HAVE_FUNC_FROM], [
AC_CACHE_CHECK([for $2 in <$1>], gw_cv_func_$3,
AC_TRY_COMPILE([#include <$1>], [void *foo = $2;],
gw_cv_func_$3=yes, gw_cv_func_$3=no))
if test $gw_cv_func_$3 = yes; then
AC_DEFINE($3, 1, $4)
fi
])
GW_HAVE_TYPE_FROM(sys/socket.h,
socklen_t,
HAVE_SOCKLEN_T,
[Defined if there is a socklen_t in <sys/socket.h>])
GW_HAVE_FUNC_FROM(stdio.h, getopt, HAVE_GETOPT_IN_STDIO_H,
[Does <stdio.h> declare getopt()?])
GW_HAVE_FUNC_FROM(unistd.h, getopt, HAVE_GETOPT_IN_UNISTD_H,
[Does <unistd.h> declare getopt()?])
dnl POSIX nftw()
AC_CHECK_HEADERS(ftw.h, [
AC_CHECK_FUNC(nftw, [
AC_DEFINE(HAVE_NFTW)
])
])
dnl POSIX regular expression check
AC_CHECK_HEADERS(regex.h, [
AC_CHECK_FUNC(regcomp, [
AC_DEFINE(HAVE_REGEX)
has_posix_regex=1
])
])
dnl Misc feature checks
AC_CONFIG_SECTION([Checking for POSIX threads support])
AC_MSG_CHECKING(for working pthreads)
AC_TRY_RUN([#include <pthread.h>
#include <unistd.h>
int pid;
void testpid(void* foo);
int main(void){
pthread_t child;
pid=getpid();
pthread_create(&child,NULL,(void*)testpid,NULL);
pthread_join(child,NULL);
return 0;
}
void testpid(void* foo){
int mypid=getpid();
if(mypid!=pid){
/* Pthreads states that all threads should have the same PID
* we dont!
*/
exit(1);
}else{
exit(0);
}
}
],echo yes , echo no ;CFLAGS="$CFLAGS -DBROKEN_PTHREADS=1", echo Cross compiling - assuming they work)
dnl
dnl Checking pthread_spin support
dnl
AC_MSG_CHECKING([for pthread_spinlock support])
AC_TRY_COMPILE([#include <pthread.h>], [
#ifdef __INTERIX
/*
* interix has experimental spinlock support and this doesn't work very well
* therefore disable it for now
*/
pthread_spinlock_t_failed lock;
#else
pthread_spinlock_t lock;
#endif
pthread_spin_init(&lock, 0);
pthread_spin_lock(&lock);
pthread_spin_unlock(&lock);
pthread_spin_destroy(&lock);
], [AC_MSG_RESULT(yes); AC_DEFINE(HAVE_PTHREAD_SPINLOCK_T)], AC_MSG_RESULT(no))
dnl checking pthread_rwlock support
AC_MSG_CHECKING([for pthread_rwlock support])
AC_TRY_COMPILE([#include <pthread.h>], [
pthread_rwlock_t lock;
pthread_rwlock_init(&lock, NULL);
pthread_rwlock_rdlock(&lock);
pthread_rwlock_unlock(&lock);
pthread_rwlock_wrlock(&lock);
pthread_rwlock_unlock(&lock);
pthread_rwlock_destroy(&lock);
], [AC_MSG_RESULT(yes); AC_DEFINE(HAVE_PTHREAD_RWLOCK)], AC_MSG_RESULT(no), [
AC_MSG_RESULT(Cross compiling - assuming suuported) ; AC_DEFINE(HAVE_PTHREAD_RWLOCK)])
dnl checking for native semaphore support
dnl Solaris & HP-UX needs librt.
AC_CHECK_LIB(rt, sem_init)
AC_MSG_CHECKING([for semaphore support])
AC_TRY_RUN([#include <semaphore.h>
int main(void) {
sem_t s;
int val;
/* DARWNIN doesn't implement native sem_init */
if (sem_init(&s, 0, 1) != 0)
return 1;
sem_wait(&s);
sem_post(&s);
sem_getvalue(&s, &val);
sem_destroy(&s);
return 0;
}
], [AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SEMAPHORE)], AC_MSG_RESULT(no), [
AC_MSG_RESULT(Cross compiling - assuming suuported) ; AC_DEFINE(HAVE_SEMAPHORE)])
dnl Check if we have libxml2 installed and which version it is.
dnl Kannel requires currently at least version 2.6.0 of libxml2.
AC_CONFIG_SECTION([Checking for libxml2 support])
xml_ver_required="2.6.0"
AC_PATH_PROGS(XML_CONFIG, xml2-config xml-config, no)
if test "$XML_CONFIG" = "no"; then
AC_MSG_ERROR([You MUST have the libxml2 (aka gnome-xml) library installed])
else
AC_MSG_CHECKING([libxml version])
xml_version=`$XML_CONFIG --version`
AC_MSG_RESULT([$xml_version])
AC_CHECK_VERSION($xml_version, $xml_ver_required,
[ LIBS="$LIBS `$XML_CONFIG --libs`"
CFLAGS="$CFLAGS `$XML_CONFIG --cflags`"
],[
AC_MSG_ERROR([libxml2 version $xml_version is too old. You need at least $xml_ver_required])
])
fi
dnl Implement the --enable-pcre option. This will set HAVE_PCRE in gw-config.h
dnl accordingly and enable the usage of Perl compatible regular expressions.
dnl As POSIX regex is a subset of PCRE, we map the posixpcre API calls, so
dnl HAVE_REGEX has to be undefined.
AC_CONFIG_SECTION([Configuring for PCRE support])
AC_MSG_CHECKING([whether to compile with PCRE support])
AC_ARG_ENABLE(pcre,
[ --enable-pcre enable PCRE regex support @<:@disabled@:>@], [
if test "$enableval" != yes; then
AC_MSG_RESULT(disabled)
else
AC_MSG_RESULT(searching)
AC_PATH_PROGS(PCRE_CONFIG, pcre-config, no)
if test "$PCRE_CONFIG" = "no"; then
AC_MSG_ERROR(Unable to find pcre-config in path for PCRE support)
else
AC_MSG_CHECKING([PCRE version])
pcre_version=`$PCRE_CONFIG --version`
AC_MSG_RESULT([$pcre_version])
LIBS="$LIBS `$PCRE_CONFIG --libs-posix`"
CFLAGS="$CFLAGS `$PCRE_CONFIG --cflags-posix`"
AC_MSG_CHECKING([for POSIX regex provider])
AC_MSG_RESULT([PCRE library])
AC_CHECK_HEADERS(pcreposix.h)
AC_CHECK_LIB(pcreposix, regcomp)
AC_CHECK_HEADERS(pcre.h)
AC_CHECK_FUNCS(pcre_compile)
AC_DEFINE(HAVE_PCRE)
AC_DEFINE_UNQUOTED(LIBPCRE_VERSION, "$pcre_version")
PCRE="yes"
fi
fi
],[
AC_MSG_RESULT(disabled)
])
dnl DocBook stuff
AC_CONFIG_SECTION([Configuring DocBook support])
AC_CHECK_PROGS(JADE, [jade openjade], no)
AC_CHECK_PROG(JADETEX, jadetex, jadetex, no)
AC_CHECK_PROG(PDFJADETEX, pdfjadetex, pdfjadetex, no)
AC_CHECK_PROG(DVIPS, dvips, dvips, no)
AC_CHECK_PROG(FIG2DEV, fig2dev, fig2dev, no)
AC_CHECK_PROG(CONVERT, convert, convert, no)
AC_SUBST(HTML_DSL)
found=""
for loc in /usr /usr/local /sw /opt/local; do
if test "x$found" = "x" ; then
for file in ${loc}/lib/sgml/stylesheet/dsssl/docbook/nwalsh/html/docbook.dsl \
${loc}/lib/sgml/stylesheets/nwalsh-modular/html/docbook.dsl \
${loc}/share/sgml/docbook/dsssl-stylesheets-1.*/html/docbook.dsl \
${loc}/share/sgml/docbook/dsssl-stylesheets/html/docbook.dsl \
${loc}/share/sgml/docbook/stylesheet/dsssl/modular/html/docbook.dsl \
${loc}/share/sgml/docbook/dsssl/modular/html/docbook.dsl \
${loc}/share/sgml/dsssl/docbook-dsssl-nwalsh/html/docbook.dsl \
${loc}/share/dsssl/docbook-dsssl/html/docbook.dsl ; do
if test "x$found" = "x" ; then
AC_CHECK_FILE($file,HTML_DSL=$file; found=1)
fi
done
fi
done
AC_SUBST(TEX_DSL)
found=""
for loc in /usr /usr/local /sw /opt/local; do
if test "x$found" = "x" ; then
for file in ${loc}/lib/sgml/stylesheet/dsssl/docbook/nwalsh/print/docbook.dsl \
${loc}/lib/sgml/stylesheets/nwalsh-modular/print/docbook.dsl \
${loc}/share/sgml/docbook/dsssl-stylesheets-1.*/print/docbook.dsl \
${loc}/share/sgml/docbook/dsssl-stylesheets/print/docbook.dsl \
${loc}/share/sgml/docbook/stylesheet/dsssl/modular/print/docbook.dsl \
${loc}/share/sgml/docbook/dsssl/modular/print/docbook.dsl \
${loc}/share/sgml/dsssl/docbook-dsssl-nwalsh/print/docbook.dsl \
${loc}/share/dsssl/docbook-dsssl/print/docbook.dsl ; do
if test "x$found" = "x" ; then
AC_CHECK_FILE($file,TEX_DSL=$file; found=1)
fi
done
fi
done
AC_SUBST(XML_DCL)
found=""
for loc in /usr /usr/local /sw /opt/local; do
if test "x$found" = "x" ; then
for file in ${loc}/lib/sgml/stylesheet/dsssl/docbook/nwalsh/dtds/decls/xml.dcl \
${loc}/lib/sgml/stylesheets/nwalsh-modular/dtds/decls/xml.dcl \
${loc}/share/sgml/docbook/dsssl-stylesheets-1.*/dtds/decls/xml.dcl \
${loc}/share/sgml/docbook/dsssl-stylesheets/dtds/decls/xml.dcl \
${loc}/share/sgml/docbook/stylesheet/dsssl/modular/dtds/decls/xml.dcl \
${loc}/share/sgml/docbook/dsssl/modular/dtds/decls/xml.dcl \
${loc}/share/sgml/dsssl/docbook-dsssl-nwalsh/dtds/decls/xml.dcl \
${loc}/share/dsssl/docbook-dsssl/dtds/decls/xml.dcl ; do
if test "x$found" = "x" ; then
AC_CHECK_FILE($file,XML_DCL=$file; found=1)
fi
done
fi
done
dnl Implement --enable-warnings option.
AC_ARG_ENABLE(warnings,
[ --enable-warnings enable compilation warnings @<:@disabled@:>@], [
echo enabling compilation warnings
if test -n "$GCC"; then
CFLAGS="$CFLAGS -Wall"
CFLAGS="$CFLAGS -Wmissing-prototypes"
CFLAGS="$CFLAGS -Wmissing-declarations"
CFLAGS="$CFLAGS -Wnested-externs"
CFLAGS="$CFLAGS -Winline"
CFLAGS="$CFLAGS -Wformat -Wformat-security -Wmissing-format-attribute"
#CFLAGS="$CFLAGS -Wstrict-prototypes"
#CFLAGS="$CFLAGS -Wredundant-decls"
#CFLAGS="$CFLAGS -Wconversion"
fi
])
dnl Implement --enable-docs option.
AC_SUBST(DOCSTARGET)
AC_ARG_ENABLE(docs,
[ --enable-docs enable building of documentation @<:@enabled@:>@], [
if test "$enableval" = "yes"
then
DOCSTARGET="docs"
else
DOCSTARGET="no-docs"
fi
])
if test "x$HTML_DSL" = "x" -o "x$TEX_DSL" = "x" \
|| test "$JADE" = "no" \
|| test "$JADETEX" = "no" \
|| test "$PDFJADETEX" = "no" \
|| test "$DVIPS" = "no" \
|| test "$FIG2DEV" = "no" \
|| test "$CONVERT" = "no" \
|| test "$DOCSTARGET" = "no-docs"
then
DOCSTARGET="no-docs"
else
DOCSTARGET="docs"
fi
case "$DOCSTARGET" in
no-docs) AC_MSG_RESULT(Not building documentation.) ;;
docs) AC_MSG_RESULT(Documentation will be built as well.) ;;
esac
dnl Implement --enable-drafts option.
AC_SUBST(DOCDRAFTS)
DOCDRAFTS="IGNORE"
AC_ARG_ENABLE(drafts,
[ --enable-drafts enable building of documentation drafts @<:@disabled@:>@], [
if test "$enableval" = "yes"
then
DOCDRAFTS="INCLUDE"
else
DOCDRAFTS="IGNORE"
fi
])
if test "x$DOCSTARGET" = "xdocs"
then
case "$DOCDRAFTS" in
INCLUDE) AC_MSG_RESULT(Documentation will include drafts.) ;;
esac
fi
AC_CONFIG_SECTION([Configuring parameters])
dnl Implement --with-suffix=version option.
SUFFIX=""
AC_ARG_WITH(suffix,
[ --with-suffix=VERSION set suffix for binaries @<:@foobox-VERSION@:>@], [
if test "x$withval" != "x" ; then
SUFFIX=$withval
fi
])
dnl Implement --enable-suffix option.
AC_ARG_ENABLE(suffix,
[ --enable-suffix enable suffix for binaries @<:@disabled@:>@], [
if test "$enableval" = "yes" ; then
SUFFIX="-$VERSION"
else
SUFFIX=""
fi
])
if test "x$SUFFIX" != "x" ; then
AC_MSG_CHECKING(whether to append suffix to binary)
AC_MSG_RESULT($SUFFIX)
fi
AC_DEFINE_UNQUOTED(SUFFIX, "$SUFFIX")
AC_SUBST(SUFFIX)
dnl Implement --with-defaults=speed/debug option.
AC_ARG_WITH(defaults,
[ --with-defaults=OPTION set default configure options: speed/debug @<:@speed@:>@
this will set assertion checking and malloc wrapper accordingly
speed = native malloc + no assertions
debug = checking malloc + assertions], [
case "$withval" in
speed) assertiondefault=no
mallocdefault=native
;;
debug) assertiondefault=yes
mallocdefault=check
;;
*) echo "unknown --with-defaults parameter $withval"
exit 1
;;
esac
], [
dnl defaults to native malloc but with assertions
assertiondefault=yes
mallocdefault=native
])
dnl Implement --with-malloc=[native|check|slow] option.
AC_MSG_CHECKING(which malloc to use)
AC_ARG_WITH(malloc,
[ --with-malloc=OPTION select malloc wrapper to use: native/check/slow @<:@native@:>@], [
case "$withval" in
native) AC_DEFINE(USE_GWMEM_NATIVE)
AC_MSG_RESULT(native malloc)
;;
check) AC_DEFINE(USE_GWMEM_CHECK)
AC_MSG_RESULT(checking malloc)
;;
slow) AC_DEFINE(USE_GWMEM_SLOW)
AC_MSG_RESULT(slow malloc)
;;
*) echo "Unknown malloc wrapper $withval. Oops."; exit 1 ;;
esac
], [
case "$mallocdefault" in
check) AC_DEFINE(USE_GWMEM_CHECK)
AC_MSG_RESULT(checking malloc)
;;
slow) AC_DEFINE(USE_GWMEM_SLOW)
AC_MSG_RESULT(slow malloc)
;;
*) AC_DEFINE(USE_GWMEM_NATIVE)
AC_MSG_RESULT(native malloc)
;;
esac
])
dnl Implement --disable-assertions option.
AC_ARG_ENABLE(assertions,
[ --disable-assertions turn off assertion checking], [
if test "$enableval" = "no"
then
echo disabling assertion checking
AC_DEFINE(NO_GWASSERT)
fi
], [
if test "$assertiondefault" = "no"
then
echo disabling assertion checking
AC_DEFINE(NO_GWASSERT)
fi
])
dnl Implement the --enable-pam option.
AC_ARG_ENABLE(pam,
[ --enable-pam enable PAM authentication @<:@disabled@:>@], [
if test "$enableval" = "yes"
then
AC_CHECK_LIB(pam, pam_end)
AC_CHECK_LIB(dl,main)
AC_CHECK_HEADERS(security/pam_appl.h)
PAMTARGET="pam"
else
PAMTARGET="no-pam"
fi
])
case "$PAMTARGET" in
no-pam) echo PAM authentication is disabled. ;;
pam) echo PAM authentication is enabled. ;;
esac
dnl Implement --enable-debug option.
AC_ARG_ENABLE(debug,
[ --enable-debug enable non-reentrant debugging for wmls compiler @<:@disabled@:>@], [
echo enabling WMLScript compiler debugging
if test -n "$GCC"; then
CFLAGS="$CFLAGS -Wall"
fi
AC_DEFINE(WS_DEBUG)
])
dnl Implement --enable-localtime option.
AC_ARG_ENABLE(localtime,
[ --enable-localtime log file time stamps in local time, not GMT @<:@enabled@:>@], [
if test "$enableval" = yes; then
echo enabling local time
AC_DEFINE(LOG_TIMESTAMP_LOCALTIME)
fi
],[
echo enabling local time
AC_DEFINE(LOG_TIMESTAMP_LOCALTIME)
])
dnl --enable-mutex-stats option.
AC_ARG_ENABLE(mutex-stats,
[ --enable-mutex-stats produce information about lock contention], [
if test "$enableval" = yes; then
AC_DEFINE(MUTEX_STATS)
fi
])
dnl --disable-cookies option.
AC_ARG_ENABLE(cookies,
[ --disable-cookies disable cookie support for WSP @<:@enabled@:>@], [
if test "$enableval" = yes; then
echo enabling cookies
AC_DEFINE(ENABLE_COOKIES)
else
echo disabling cookies
fi
],[
echo enabling cookies
AC_DEFINE(ENABLE_COOKIES)
])
dnl --disable-keepalive option.
AC_ARG_ENABLE(keepalive,
[ --disable-keepalive disable HTTP/1.1 keep-alive support @<:@enabled@:>@], [
if test "$enableval" = yes; then
echo enabling HTTP/1.1 keep-alive
AC_DEFINE(USE_KEEPALIVE)
else
echo disabling HTTP/1.1 keep-alive
fi
],[
echo enabling HTTP/1.1 keep-alive
AC_DEFINE(USE_KEEPALIVE)
])
dnl --enable-start-stop-daemon option.
AC_ARG_ENABLE(start-stop-daemon,
[ --enable-start-stop-daemon compile the start-stop-daemon program @<:@disabled@:>@], [
if test "$enableval" = yes; then
STARTSTOPDAEMONSRC="utils/start-stop-daemon.c"
fi
])
AC_SUBST(STARTSTOPDAEMONSRC)
dnl Implement --disable-wap and --disable-sms options.
AC_ARG_ENABLE(wap,
[ --disable-wap disables WAP gateway parts in bearerbox], [
if test "$enableval" = "no"
then
echo disabling WAP gateway parts in bearerbox
AC_DEFINE(NO_WAP)
fi
])
AC_ARG_ENABLE(sms,
[ --disable-sms disables SMS gateway parts in bearerbox], [
if test "$enableval" = "no"
then
echo disabling SMS gateway parts in bearerbox
AC_DEFINE(NO_SMS)
fi
])
dnl Implement the --with-ssl option.
AC_CONFIG_SECTION([Configuring OpenSSL support])
AC_ARG_WITH(ssl,
[ --with-ssl[=DIR] where to look for OpenSSL libs and header files
DIR points to the installation @<:@/usr/local/ssl@:>@],
[ if test -d "$withval"; then
ssllib="$withval/lib";
sslinc="$withval/include"
else
AC_MSG_ERROR(Unable to find OpenSSL libs and/or directories at $withval)
fi
])
dnl Implement --enable-ssl option.
AC_MSG_CHECKING([whether to compile with SSL support])
AC_ARG_ENABLE(ssl,
[ --enable-ssl enable SSL client and server support @<:@enabled@:>@], [
if test "$enableval" = no ; then
AC_MSG_RESULT(disabled)
ssl=no
else
ssl=yes
fi
],[
ssl=yes
])
if test "$ssl" = "yes" ; then
dnl test only if --with-ssl has not been used
if test "x$ssllib" = "x" && test "x$sslinc" = "x"; then
for loc in /usr/lib /usr/lib64 /usr/local/ssl/lib /usr/local/openssl/lib; do
if test -f "$loc/libssl.a" -o -f "$loc/libssl.so" -o -f "$loc/libssl.dylib" ; then
ssllib="$loc"
fi
done
if test "x$sslib" = "x" && test -n "$GCC"; then
for lib in libssl.a libssl.so libssl.dylib; do
name=`$CC -print-file-name=$lib`
if test -f "$name"; then
ssllib=`dirname $name`
fi
done
fi
for loc in /usr/include/ssl /usr/include/openssl /usr/local/ssl/include \
/usr/local/openssl/include; do
if test -d "$loc"; then
sslinc="$loc"
fi
done
fi
AC_MSG_RESULT(trying $ssllib $sslinc)
fi
dnl Implement the SSL library checking routine.
dnl This will define HAVE_LIBSSL in gw-config.h
if test "x$ssllib" != "x" && test "x$sslinc" != "x"; then
CFLAGS="$CFLAGS -I$sslinc"
LIBS="$LIBS -L$ssllib"
AC_PATH_PROG(OPENSSL, openssl, no)
if test "$OPENSSL" = "yes"; then
AC_MSG_CHECKING([openssl version])
openssl_version=`$OPENSSL version | awk '{print $2}'`
AC_MSG_RESULT([$openssl_version])
fi
AC_CHECK_LIB(crypto, CRYPTO_lock,
[ LIBS="$LIBS -lcrypto"
AC_CHECK_LIB(ssl, SSL_library_init,
[ AC_CHECK_LIB(ssl, SSL_connect)
AC_CHECK_HEADERS(openssl/x509.h openssl/rsa.h openssl/crypto.h \
openssl/pem.h openssl/ssl.h openssl/err.h \
openssl/hmac.h)
AC_MSG_CHECKING(whether the OpenSSL library is multithread-enabled)
AC_TRY_RUN([
#define OPENSSL_THREAD_DEFINES
#include <openssl/opensslconf.h>
int main(void) {
#if defined(THREADS)
exit(0);
#elif defined(OPENSSL_THREADS)
exit(0);
#else
exit(1);
#endif
}
], [
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_LIBSSL)
LIBS="$LIBS -lssl"
AC_MSG_CHECKING([whether to compile with SSL support])
AC_MSG_RESULT(yes)
], [
AC_ARG_ENABLE(ssl-thread-test,
[ --disable-ssl-thread-test disable the multithread test for the OpenSSL library
this will force to continue even if the test fails],
[ if test "$enableval" = no ; then
AC_MSG_RESULT([no, continue forced])
fi
], [
AC_MSG_RESULT(no)
AC_MSG_ERROR(Either get a multithread-enabled SSL or configure with --disable-ssl)
])
], echo "Cross-compiling; make sure your SSL library is multithread-enabled"
)
])
])
fi
AC_CONFIG_SECTION([Configuring DB support])
dnl Implement the --with-mysql option. This will set HAVE_MYSQL in gw-config.h
dnl accordingly and enable the usage of the libmysqlclient routines.
AC_MSG_CHECKING([whether to compile with MySQL support])
AC_ARG_WITH(mysql,
[ --with-mysql enable MySQL storage @<:@disabled@:>@], [
if test "$withval" != yes ; then
AC_MSG_RESULT(disabled)
else
dnl Implement the --with-mysql-dir option.
AC_ARG_WITH(mysql-dir,
[ --with-mysql-dir=DIR where to look for MySQL libs and header files
DIR points to the installation @<:@/usr/local/mysql@:>@],
[
mysqlloc=""
if test -d "$withval" ; then
mysqlloc="$withval"
fi
])
AC_MSG_RESULT(searching)
AC_PATH_PROG(MYSQL_CONFIG, mysql_config, no, [$PATH:$mysqlloc/bin:$mysqlloc])
dnl check for MySQL 4.x style mysql_config information
if test "$MYSQL_CONFIG" = "no"; then
found=""
for loc in $mysqlloc /usr /usr/local ; do
if test "x$found" = "x" ; then
AC_MSG_CHECKING([for MySQL client support in])
AC_MSG_RESULT($loc)
AC_CHECK_FILE("$loc/include/mysql/mysql.h",
[CFLAGS="$CFLAGS -I$loc/include/mysql"; LIBS="$LIBS -L$loc/lib/mysql -lmysqlclient"]; found=1,
[AC_CHECK_FILE("$loc/include/mysql.h",
[CFLAGS="$CFLAGS -I$loc/include"; LIBS="$LIBS -L$loc/lib -lmysqlclient"]; found=1
)]
)
fi
done
if test "x$found" != "x1" ; then
AC_MSG_ERROR([Unable to find mysql.h, please provide a --with-mysql-dir=<dir> location])
fi
else
dnl mysql_config found
AC_MSG_CHECKING([mysql version])
mysql_version=`$MYSQL_CONFIG --version`
AC_MSG_RESULT([$mysql_version])
dnl mysql-4.x style
MYSQL_LIBS=""
if $MYSQL_CONFIG --libs_r &>/dev/null ; then
MYSQL_LIBS=`$MYSQL_CONFIG --libs_r`