Remove isamd. It's not been in use for a long time and isamb is better
[idzebra-moved-to-github.git] / configure.in
1 dnl Zebra, Index Data Aps, 1995-2004
2 dnl $Id: configure.in,v 1.92 2004-08-04 08:35:22 adam Exp $
3 dnl
4 AC_INIT(include/zebraver.h)
5 AM_INIT_AUTOMAKE(idzebra,1.4.0)
6 dnl ------ Substitutions
7 AC_SUBST(TCL_INCLUDE)
8 AC_SUBST(TCL_LIB)
9 AC_SUBST(READLINE_LIBS)
10 dnl ------ Perl substitutions
11 AC_SUBST(PERL_BINARY)
12 AC_SUBST(PERL_XS_INIT)
13 AC_SUBST(PERL_XS_INIT_INCLUDE)
14 AC_SUBST(PERL_LIBS)
15 AC_SUBST(PERL_CFLAGS)
16 AC_SUBST(ZPERL_LIBS)
17 dnl
18 dnl ------ Checking programs
19 AC_PROG_CC
20 AC_PROG_CPP
21 AC_PROG_INSTALL
22 AC_PROG_RANLIB
23 dnl
24 dnl ----- DOCBOOK DTD
25 AC_SUBST(DTD_DIR)
26 AC_ARG_WITH(dtd, [  --with-dtd[=DIR]        Use docbookx.dtd in DIR],
27 [
28    if test -f "$withval/docbookx.dtd"; then
29       DTD_DIR=$withval
30    fi
31 ],[
32    AC_MSG_CHECKING(for docbookx.dtd)
33    for d in /usr/share/sgml/docbook/dtd/xml/4.1.2 \
34          /usr/share/sgml/docbook/xml-dtd-4.1.2* \
35          /usr/share/sgml/docbook/xml-dtd-4.1 \
36          /usr/share/sgml/docbook/dtd/xml/4.0 \
37             /usr/lib/sgml/dtd/docbook-xml 
38    do
39      if test -f $d/docbookx.dtd; then
40        AC_MSG_RESULT($d)
41        DTD_DIR=$d
42        break
43      fi
44    done
45    if test -z "$DTD_DIR"; then
46       AC_MSG_RESULT(Not found)
47    fi
48 ])
49 AC_SUBST(DSSSL_DIR)
50 AC_ARG_WITH(dsssl,[  --with-dsssl[=DIR]      Use DSSSL in DIR/{html,print}/docbook.dsl],
51 [
52    if test -f "$withval/html/docbook.dsl"; then
53       DSSSL_DIR=$withval
54    fi
55 ],[
56    AC_MSG_CHECKING(for docbook.dsl)
57    for d in /usr/share/sgml/docbook/stylesheet/dsssl/modular \
58             /usr/share/sgml/docbook/dsssl-stylesheets-1.* \
59             /usr/lib/sgml/stylesheet/dsssl/docbook/nwalsh 
60    do
61      if test -f $d/html/docbook.dsl; then
62        AC_MSG_RESULT($d)
63        DSSSL_DIR=$d
64        break
65      fi
66    done
67    if test -z "$DSSSL_DIR"; then
68       AC_MSG_RESULT(Not found)
69    fi
70 ])
71 dnl
72 AC_ARG_ENABLE(threads, [  --disable-threads       disable threads],[enable_threads=$enableval],[enable_threads=yes])
73 if test "$enable_threads" = "yes"; then
74         yazflag=threads
75 else
76         yazflag=""
77 fi
78 YAZ_INIT($yazflag)
79 dnl ------ Look for Tcl
80 dnl See if user has specified location of tclConfig.sh; otherwise
81 dnl see if tclConfig.sh exists in same prefix lcoation as tclsh; otherwise
82 dnl disable Tcl.
83 TCL_LIB=""
84 TCL_INCLUDE=""
85 tclconfig=NONE
86 AC_ARG_WITH(tclconfig, [  --with-tclconfig=DIR    tclConfig.sh in DIR], [tclconfig=$withval])
87 if test "x$tclconfig" = xNONE; then
88         saveprefix=${prefix}
89         AC_PREFIX_PROGRAM(tclsh)
90         tclconfig=${prefix}/lib
91         prefix=${saveprefix}
92         if test ! -r ${tclconfig}/tclConfig.sh; then
93                 # Not found, try search for Tcl on Debian systems.
94                 for d in /usr/lib/tcl*; do
95                         if test -f $d/tclConfig.sh; then
96                                 tclconfig=$d
97                         fi
98                 done
99         fi
100 fi
101 AC_MSG_CHECKING(for Tcl)
102 if test -r ${tclconfig}/tclConfig.sh; then
103         . ${tclconfig}/tclConfig.sh
104         if test -r ${tclconfig}/../generic/tcl.h; then
105                 TCL_INCLUDE=-I${tclconfig}/../generic
106                 TCL_LIB="$TCL_BUILD_LIB_SPEC $TCL_LIBS"
107         elif test -d ${TCL_PREFIX}/include/tcl${TCL_VERSION}; then
108                 TCL_INCLUDE=-I${TCL_PREFIX}/include/tcl${TCL_VERSION}
109                 TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS"
110         else
111                 TCL_INCLUDE=-I${TCL_PREFIX}/include
112                 TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS"
113         fi
114         TCL_LIB=`echo $TCL_LIB|sed 's%-L/usr/lib%%g'`
115         SHLIB_CFLAGS=$TCL_SHLIB_CFLAGS
116         SHLIB_LD=$TCL_SHLIB_LD
117         SHLIB_SUFFIX=$TCL_SHLIB_SUFFIX
118         SHLIB_VERSION=$TCL_SHLIB_VERSION
119         AC_MSG_RESULT($TCL_VERSION)
120         AC_DEFINE(HAVE_TCL_H,1)
121 else
122         AC_MSG_RESULT(Not found)
123         AC_DEFINE(HAVE_TCL_H,0)
124 fi
125 dnl
126 dnl ------ times
127 AC_CHECK_HEADERS(sys/times.h)
128 dnl
129 dnl ------ mkstemp
130 AC_CHECK_FUNCS(mkstemp)
131 dnl
132 dnl ------ GNU Readline
133 READLINE_SHARED_LIBADD=""
134 AC_CHECK_LIB(ncurses, tgetent, [READLINE_SHARED_LIBADD="-lncurses"],
135         AC_CHECK_LIB(termcap, tgetent, [READLINE_SHARED_LIBADD="-ltermcap"])
136 )
137 READLINE_LIBS=""
138 AC_CHECK_LIB(readline, readline, [READLINE_LIBS="$READLINE_LIBS -lreadline $READLINE_SHARED_LIBADD"],,$READLINE_SHARED_LIBADD)
139 AC_CHECK_LIB(history, add_history, [READLINE_LIBS="$READLINE_LIBS -lhistory"])
140 if test "$ac_cv_lib_readline_readline" = "yes"; then
141         AC_CHECK_HEADERS(readline/readline.h readline/history.h)
142         xLIBS=$LIBS
143         LIBS="$LIBS $READLINE_LIBS"
144         AC_TRY_LINK([
145         #include <stdio.h>
146         #include <readline/readline.h>
147         ],[
148         static void f()
149         {
150                 rl_attempted_completion_over = 0;
151         }
152         ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER))
153         AC_TRY_LINK([
154         #include <stdio.h>
155         #include <readline/readline.h>
156         ],[
157         static void f()
158         {
159                 rl_completion_matches (0, 0);
160         }
161         ],AC_DEFINE(HAVE_READLINE_RL_COMPLETION_MATCHES))
162         LIBS=$xLIBS
163 fi
164 dnl
165 dnl ------ iconv
166 AC_ARG_WITH(iconv, [  --with-iconv[=DIR]      iconv library in DIR])
167 if test "$with_iconv" != "no"; then
168         AC_MSG_CHECKING(for iconv)
169         oldLIBS="$LIBS"
170         oldCPPFLAGS="${CPPFLAGS}"
171         if test "$with_iconv" != "yes" -a "$with_iconv" != ""; then
172                 LIBS="$LIBS -L${with_iconv}/lib"
173                 CPPFLAGS="${CPPFLAGS} -I${with_iconv}/include"
174         fi
175         AC_TRY_LINK([
176                 #include <iconv.h>
177         ],[
178                 static void f() {iconv_t t = iconv_open("", ""); }
179         ],[
180                 AC_DEFINE(HAVE_ICONV_H)
181                 AC_MSG_RESULT(yes)
182         ],[
183                 LIBS="$LIBS -liconv"
184                 AC_TRY_LINK([
185                         #include <iconv.h>
186                 ],[
187                         static void f() {iconv_t t = iconv_open("", ""); }
188                 ],[
189                         AC_DEFINE(HAVE_ICONV_H)
190                         AC_MSG_RESULT(yes)
191                 ],[
192                         LIBS="$oldLIBS"
193                         CPPFLAGS="$oldCPPFLAGS"
194                         AC_MSG_RESULT(no)
195                 ])
196         ])
197 fi
198 dnl
199 dnl ------- BZIP2
200 AC_CHECK_LIB(bz2,bzCompressInit)
201 if test "$ac_cv_lib_bz2_bzCompressInit" = "yes"; then
202         AC_CHECK_HEADERS(bzlib.h)
203 else
204         AC_CHECK_LIB(bz2,BZ2_bzCompressInit)
205         if test "$ac_cv_lib_bz2_BZ2_bzCompressInit" = "yes"; then
206                 AC_CHECK_HEADERS(bzlib.h)
207         fi
208 fi
209 dnl
210 dnl ------ -lm
211 AC_CHECK_LIB(m,sqrt)
212 dnl
213 dnl ------ EXPAT
214 expat=yes
215 AC_ARG_WITH(expat,   [  --with-expat[=DIR]      EXPAT library in DIR],[expat=$withval])
216 if test "$expat" != "no"; then
217         xLIBS="$LIBS";
218         xCFLAGS="$CFLAGS";
219         if test "$expat" != "yes"; then
220                 EXPAT_CFLAGS="-I$expat/include"
221                 EXPAT_LIBS="-L$expat/lib"
222                 CFLAGS="$EXPAT_CFLAGS $CFLAGS"
223                 LIBS="$EXPAT_LIBS $LIBS"
224         fi
225         AC_CHECK_LIB(expat,XML_ParserCreate,[LIBS="$LIBS -lexpat"])
226         if test "$ac_cv_lib_expat_XML_ParserCreate" = "yes"; then
227                 AC_CHECK_HEADERS(expat.h)
228         else
229                 LIBS="$xLIBS"
230                 CFLAGS="$xCFLAGS"
231         fi
232 fi
233 dnl
234 dnl ------ PERL
235 AM_CONDITIONAL(perl,false)
236 perl=no
237 PERL_XS_INIT="NULL"
238 PERL_XS_INIT_INCLUDE=''
239 PERL_BINARY=""
240 AC_ARG_WITH(perl,   [  --with-perl[=FILE]      perl binary location],[perl=$withval])
241 if test "$perl" != "no"; then
242         AC_MSG_CHECKING(for perl binary)
243         if test "$perl" = "yes"; then
244             perlbin=`which perl`
245         else
246             perlbin="$perl"
247         fi 
248         if test -x "$perlbin"; then
249             AC_MSG_RESULT($perlbin)     
250             AC_MSG_CHECKING(perl core directory)
251             archdir=`$perlbin -MConfig -e 'print $Config{archlib}'`;
252             perlcore="$archdir/CORE";
253             if test -d "$perlcore"; then
254                 PERL_BINARY="$perlbin"
255                 AC_MSG_RESULT($perlcore)        
256             else
257                 AC_MSG_RESULT(Failed)   
258             fi
259
260             AC_MSG_CHECKING("for ExtUtils::Embed to determine ccopts")
261             PERL_CFLAGS=`$perlbin -MExtUtils::Embed -e ccopts 2>/dev/null`
262             if test "$PERL_CFLAGS"; then
263                 AC_MSG_RESULT(OK)       
264             else
265                 PERL_CFLAGS="-I$perlcore"
266                 AC_MSG_RESULT(Using defaults)   
267             fi
268
269             AC_MSG_CHECKING("for ExtUtils::Embed to determine ldflags")
270             PERL_LIBS=`$perlbin -MExtUtils::Embed -e ldopts 2>/dev/null`
271             if test "$PERL_LIBS"; then
272                 AC_MSG_RESULT(OK)       
273             else
274                 PERL_LIBS="-L$perlcore -lperl -lm"
275                 AC_MSG_RESULT(Using defaults)   
276             fi
277
278             AC_MSG_CHECKING("for ExtUtils::Embed to create xs_init")
279             xsf="recctrl/xsinit.h"
280             `rm $xsf 2>/dev/null`;
281
282             `$perlbin -MExtUtils::Embed -e xsinit -- -o $xsf 2>/dev/null`
283             if test -r "$xsf"; then
284                 AC_MSG_RESULT(OK)       
285                 PERL_XS_INIT="xs_init"
286                 PERL_XS_INIT_INCLUDE='#include "xsinit.h"'
287             else
288                 AC_MSG_RESULT(XS libraries are not going to be available)
289             fi
290
291             xLIBS="$LIBS"
292             xCFLAGS="$CFLAGS"
293             CFLAGS="$PERL_CFLAGS $CFLAGS"
294             LIBS="$PERL_LIBS $LIBS"
295
296             AC_MSG_CHECKING(for perl library)
297             AC_TRY_LINK([
298             #include <stdio.h>
299              ],[
300             static void f()
301             {
302                 ;
303             }
304                 ],AM_CONDITIONAL(perl,true)
305                   AC_DEFINE(HAVE_PERL,1)
306                   AC_MSG_RESULT(found)
307                   ZPERL_LIBS="$xLIBS"
308                         ,
309                   AC_MSG_RESULT(not found)
310                   AC_DEFINE(HAVE_PERL,0)
311                   LIBS="$xLIBS"
312                   CFLAGS="$xCFLAGS")
313         else
314             AC_DEFINE(HAVE_PERL,0)
315             AC_MSG_RESULT(Not found)
316         fi
317 fi
318 dnl ------- 64 bit files
319 AC_MSG_CHECKING(for LFS)
320 AC_TRY_RUN([#define _FILE_OFFSET_BITS 64
321 #include <sys/types.h>
322 #include <unistd.h>
323 #include <string.h>
324 #include <stdio.h>
325 #include <fcntl.h>
326 #include <errno.h>
327 int main(int argc, char **argv)
328 {
329         off_t o;
330         char tmp_str[32];
331         int fd;
332         struct flock area;
333         if (sizeof(off_t) != 8) 
334                 exit (1);
335         o = 2000000000;
336         sprintf (tmp_str, "%Ld", o+o+o);
337         if (strcmp (tmp_str, "6000000000"))
338                 exit (1);
339         fd = creat ("config.tmp", 0644);
340         if (fd < 0)
341                 exit (1);
342         area.l_type = F_WRLCK;
343         area.l_whence = SEEK_SET;
344         area.l_len = area.l_start = 0L;
345         if (fcntl(fd, F_SETLKW, &area))
346                 exit (1);
347         close (fd);
348         unlink ("config.tmp");
349         exit (0);
350 }
351 ],bits=64,bits=32,bits=32)
352 if test "$bits" = "64"; then
353         AC_DEFINE(_FILE_OFFSET_BITS,64)
354         AC_MSG_RESULT(yes)
355 else
356         AC_MSG_RESULT(no)
357 fi
358 dnl
359 dnl ------ ANSI C Header files
360 AC_STDC_HEADERS
361 if test "$ac_cv_header_stdc" = "no"; then
362         AC_MSG_WARN(Your system doesn't seem to support ANSI C)
363 fi
364 dnl ------ Create Makefiles
365 AC_OUTPUT([
366   Makefile
367   util/Makefile
368   bfile/Makefile
369   dfa/Makefile
370   dict/Makefile
371   isamb/Makefile
372   isams/Makefile
373   isamc/Makefile
374   isam/Makefile
375   rset/Makefile
376   data1/Makefile
377   recctrl/Makefile
378   recctrl/perlread.h
379   index/Makefile
380   include/Makefile
381   tab/Makefile
382   doc/Makefile
383   doc/zebra.xml
384   doc/zebrahtml.dsl
385   doc/zebraprint.dsl
386   doc/zebraphp.dsl
387   doc/tkl.xsl
388   test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile
389   test/rusmarc/Makefile test/cddb/Makefile test/malxml/Makefile 
390   test/config/Makefile
391   perl/Makefile.PL test/xelm/Makefile
392   test/dmoz/Makefile test/xpath/Makefile test/sort/Makefile test/zsh/Makefile
393   test/marcxml/Makefile test/charmap/Makefile test/codec/Makefile
394   examples/Makefile examples/gils/Makefile examples/zthes/Makefile
395   idzebra.spec
396 ])
397 if test -x "$perlbin"; then
398         res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`;
399 fi
400 if test  -z "$YAZLIB"; then
401         echo "YAZ was not found. Use --with-yazconfig=DIR to specify location."
402         test -f /etc/debian_version && echo "Debian package libyaz-dev is required."
403 fi
404