Added support of the complex indexing for MARC records (whithout documentation yet).
[idzebra-moved-to-github.git] / configure.in
1 dnl Zebra, Index Data Aps, 1995-2003
2 dnl $Id: configure.in,v 1.68 2003-02-28 12:33:38 oleg Exp $
3 dnl
4 AC_INIT(include/zebraver.h)
5 AM_INIT_AUTOMAKE(idzebra,1.3.7)
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
80 dnl ------ Look for Tcl
81 dnl See if user has specified location of tclConfig.sh; otherwise
82 dnl see if tclConfig.sh exists in same prefix lcoation as tclsh; otherwise
83 dnl disable Tcl.
84 TCL_LIB=""
85 TCL_INCLUDE=""
86 tclconfig=NONE
87 AC_ARG_WITH(tclconfig, [  --with-tclconfig=DIR    tclConfig.sh in DIR], [tclconfig=$withval])
88 if test "x$tclconfig" = xNONE; then
89         saveprefix=${prefix}
90         AC_PREFIX_PROGRAM(tclsh)
91         tclconfig=${prefix}/lib
92         prefix=${saveprefix}
93         if test ! -r ${tclconfig}/tclConfig.sh; then
94                 # Not found, try search for Tcl on Debian systems.
95                 for d in /usr/lib/tcl*; do
96                         if test -f $d/tclConfig.sh; then
97                                 tclconfig=$d
98                         fi
99                 done
100         fi
101 fi
102 AC_MSG_CHECKING(for Tcl)
103 if test -r ${tclconfig}/tclConfig.sh; then
104         . ${tclconfig}/tclConfig.sh
105         if test -r ${tclconfig}/../generic/tcl.h; then
106                 TCL_INCLUDE=-I${tclconfig}/../generic
107                 TCL_LIB="$TCL_BUILD_LIB_SPEC $TCL_LIBS"
108         elif test -d ${TCL_PREFIX}/include/tcl${TCL_VERSION}; then
109                 TCL_INCLUDE=-I${TCL_PREFIX}/include/tcl${TCL_VERSION}
110                 TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS"
111         else
112                 TCL_INCLUDE=-I${TCL_PREFIX}/include
113                 TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS"
114         fi
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 ------ EXPAT
211 expat=yes
212 AC_ARG_WITH(expat,   [  --with-expat[=DIR]      EXPAT library in DIR],[expat=$withval])
213 if test "$expat" != "no"; then
214         xLIBS="$LIBS";
215         xCFLAGS="$CFLAGS";
216         if test "$expat" != "yes"; then
217                 EXPAT_CFLAGS="-I$expat/include"
218                 EXPAT_LIBS="-L$expat/lib"
219                 CFLAGS="$EXPAT_CFLAGS $CFLAGS"
220                 LIBS="$EXPAT_LIBS $LIBS"
221         fi
222         AC_CHECK_LIB(expat,XML_ParserCreate,[LIBS="$LIBS -lexpat"])
223         if test "$ac_cv_lib_expat_XML_ParserCreate" = "yes"; then
224                 AC_CHECK_HEADERS(expat.h)
225         else
226                 LIBS="$xLIBS"
227                 CFLAGS="$xCFLAGS"
228         fi
229 fi
230 dnl
231 dnl ------ PERL
232 AM_CONDITIONAL(perl,false)
233 perl=no
234 PERL_XS_INIT="NULL"
235 PERL_XS_INIT_INCLUDE=''
236 PERL_BINARY=""
237 AC_ARG_WITH(perl,   [  --with-perl[=FILE]      perl binary location],[perl=$withval])
238 if test "$perl" != "no"; then
239         AC_MSG_CHECKING(for perl binary)
240         if test "$perl" = "yes"; then
241             perlbin=`which perl`
242         else
243             perlbin="$perl"
244         fi 
245         if test -x "$perlbin"; then
246             AC_MSG_RESULT($perlbin)     
247             AC_MSG_CHECKING(perl core directory)
248             archdir=`$perlbin -MConfig -e 'print $Config{archlib}'`;
249             perlcore="$archdir/CORE";
250             if test "$perlcore"; then
251                 PERL_BINARY="$perlbin"
252                 AC_MSG_RESULT($perlcore)        
253                 AC_DEFINE(HAVE_PERL,1)
254             else
255                 AC_MSG_RESULT(Failed)   
256                 AC_DEFINE(HAVE_PERL,0)
257             fi
258
259             AC_MSG_CHECKING("for ExtUtils::Embed to determine ccopts")
260             PERL_CFLAGS=`$perlbin -MExtUtils::Embed -e ccopts 2>/dev/null`
261             if test "$PERL_CFLAGS"; then
262                 AC_MSG_RESULT(OK)       
263             else
264                 PERL_CFLAGS="-I$perlcore"
265                 AC_MSG_RESULT(Using defaults)   
266             fi
267
268             AC_MSG_CHECKING("for ExtUtils::Embed to determine ldflags")
269             PERL_LIBS=`$perlbin -MExtUtils::Embed -e ldopts 2>/dev/null`
270             if test "$PERL_LIBS"; then
271                 AC_MSG_RESULT(OK)       
272             else
273                 PERL_LIBS="-L$perlcore -lperl -lm"
274                 AC_MSG_RESULT(Using defaults)   
275             fi
276
277             AC_MSG_CHECKING("for ExtUtils::Embed to create xs_init")
278             xsf="recctrl/xsinit.h"
279             `rm $xsf 2>/dev/null`;
280
281             `$perlbin -MExtUtils::Embed -e xsinit -- -o $xsf 2>/dev/null`
282             if test -r "$xsf"; then
283                 AC_MSG_RESULT(OK)       
284                 PERL_XS_INIT="xs_init"
285                 PERL_XS_INIT_INCLUDE='#include "xsinit.h"'
286             else
287                 AC_MSG_RESULT(XS libraries are not going to be available)
288             fi
289
290             ZPERL_LIBS="$LIBS"
291             CFLAGS="$PERL_CFLAGS $CFLAGS"
292             LIBS="$PERL_LIBS $LIBS"
293             AM_CONDITIONAL(perl,true)
294         else
295             AC_DEFINE(HAVE_PERL,0)
296             AC_MSG_RESULT(Not found)
297         fi
298 fi
299 dnl ------- 64 bit files
300 AC_MSG_CHECKING(for LFS)
301 AC_TRY_RUN([#define _FILE_OFFSET_BITS 64
302 #include <sys/types.h>
303 #include <unistd.h>
304 #include <string.h>
305 #include <stdio.h>
306 #include <fcntl.h>
307 #include <errno.h>
308 int main(int argc, char **argv)
309 {
310         off_t o;
311         char tmp_str[32];
312         int fd;
313         struct flock area;
314         if (sizeof(off_t) != 8) 
315                 exit (1);
316         o = 2000000000;
317         sprintf (tmp_str, "%Ld", o+o+o);
318         if (strcmp (tmp_str, "6000000000"))
319                 exit (1);
320         fd = creat ("config.tmp", 0644);
321         if (fd < 0)
322                 exit (1);
323         area.l_type = F_WRLCK;
324         area.l_whence = SEEK_SET;
325         area.l_len = area.l_start = 0L;
326         if (fcntl(fd, F_SETLKW, &area))
327                 exit (1);
328         close (fd);
329         unlink ("config.tmp");
330         exit (0);
331 }
332 ],bits=64,bits=32,bits=32)
333 if test "$bits" = "64"; then
334         AC_DEFINE(_FILE_OFFSET_BITS,64)
335         AC_MSG_RESULT(yes)
336 else
337         AC_MSG_RESULT(no)
338 fi
339 dnl
340 dnl ------ ANSI C Header files
341 AC_STDC_HEADERS
342 if test "$ac_cv_header_stdc" = "no"; then
343         AC_MSG_WARN(Your system doesn't seem to support ANSI C)
344 fi
345 dnl ------ Create Makefiles
346 AC_OUTPUT([
347   Makefile
348   util/Makefile
349   bfile/Makefile
350   dfa/Makefile
351   dict/Makefile
352   isamb/Makefile
353   isams/Makefile
354   isamc/Makefile
355   isam/Makefile
356   rset/Makefile
357   data1/Makefile
358   recctrl/Makefile
359   recctrl/perlread.h
360   index/Makefile
361   include/Makefile
362   tab/Makefile
363   doc/Makefile
364   doc/zebra.xml
365   doc/zebrahtml.dsl
366   doc/zebraprint.dsl
367   doc/zebraphp.dsl
368   doc/tkl.xsl
369   test/Makefile test/gils/Makefile test/usmarc/Makefile test/api/Makefile test/rusmarc/Makefile
370   perl/Makefile.PL test/xelm/Makefile
371   test/dmoz/Makefile test/xpath/Makefile test/sort/Makefile
372   examples/Makefile examples/gils/Makefile examples/zthes/Makefile
373   idzebra.spec
374 ])
375
376 if test -x "$perlbin"; then
377   res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`;
378 fi