Fix setting of automake ISTHR to reflect POSIX thread availability
[idzebra-moved-to-github.git] / configure.in
index 9eab136..1b8765f 100644 (file)
@@ -1,8 +1,8 @@
 dnl Zebra, Index Data Aps, 1995-2003
-dnl $Id: configure.in,v 1.70 2003-03-26 20:58:08 adam Exp $
+dnl $Id: configure.in,v 1.79 2003-05-26 20:07:40 adam Exp $
 dnl
 AC_INIT(include/zebraver.h)
-AM_INIT_AUTOMAKE(idzebra,1.3.8)
+AM_INIT_AUTOMAKE(idzebra,1.3.11)
 dnl ------ Substitutions
 AC_SUBST(TCL_INCLUDE)
 AC_SUBST(TCL_LIB)
@@ -76,7 +76,11 @@ else
        yazflag=""
 fi
 YAZ_INIT($yazflag)
-
+if echo "$YAZINC"|grep YAZ_POSIX_THREADS=1 >/dev/null; then
+       AM_CONDITIONAL(ISTHR,true)
+else
+       AM_CONDITIONAL(ISTHR,false)
+fi     
 dnl ------ Look for Tcl
 dnl See if user has specified location of tclConfig.sh; otherwise
 dnl see if tclConfig.sh exists in same prefix lcoation as tclsh; otherwise
@@ -112,6 +116,7 @@ if test -r ${tclconfig}/tclConfig.sh; then
                TCL_INCLUDE=-I${TCL_PREFIX}/include
                TCL_LIB="$TCL_LIB_SPEC $TCL_LIBS"
        fi
+       TCL_LIB=`echo $TCL_LIB|sed 's%-L/usr/lib%%g'`
         SHLIB_CFLAGS=$TCL_SHLIB_CFLAGS
         SHLIB_LD=$TCL_SHLIB_LD
         SHLIB_SUFFIX=$TCL_SHLIB_SUFFIX
@@ -207,6 +212,9 @@ else
        fi
 fi
 dnl
+dnl ------ -lm
+AC_CHECK_LIB(m,sqrt)
+dnl
 dnl ------ EXPAT
 expat=yes
 AC_ARG_WITH(expat,   [  --with-expat[=DIR]      EXPAT library in DIR],[expat=$withval])
@@ -247,13 +255,11 @@ if test "$perl" != "no"; then
            AC_MSG_CHECKING(perl core directory)
            archdir=`$perlbin -MConfig -e 'print $Config{archlib}'`;
            perlcore="$archdir/CORE";
-           if test "$perlcore"; then
+           if test -d "$perlcore"; then
                PERL_BINARY="$perlbin"
                AC_MSG_RESULT($perlcore)        
-               AC_DEFINE(HAVE_PERL,1)
            else
                AC_MSG_RESULT(Failed)   
-               AC_DEFINE(HAVE_PERL,0)
            fi
 
            AC_MSG_CHECKING("for ExtUtils::Embed to determine ccopts")
@@ -287,10 +293,28 @@ if test "$perl" != "no"; then
                AC_MSG_RESULT(XS libraries are not going to be available)
             fi
 
-           ZPERL_LIBS="$LIBS"
+           xLIBS="$LIBS"
+           xCFLAGS="$CFLAGS"
            CFLAGS="$PERL_CFLAGS $CFLAGS"
            LIBS="$PERL_LIBS $LIBS"
-           AM_CONDITIONAL(perl,true)
+
+           AC_MSG_CHECKING(for perl library)
+            AC_TRY_LINK([
+            #include <stdio.h>
+             ],[
+            static void f()
+            {
+               ;
+            }
+               ],AM_CONDITIONAL(perl,true)
+                 AC_DEFINE(HAVE_PERL,1)
+                 AC_MSG_RESULT(found)
+                 ZPERL_LIBS="$xLIBS"
+                       ,
+                  AC_MSG_RESULT(not found)
+                 AC_DEFINE(HAVE_PERL,0)
+                 LIBS="$xLIBS"
+                 CFLAGS="$xCFLAGS")
         else
            AC_DEFINE(HAVE_PERL,0)
            AC_MSG_RESULT(Not found)
@@ -373,7 +397,11 @@ AC_OUTPUT([
   examples/Makefile examples/gils/Makefile examples/zthes/Makefile
   idzebra.spec
 ])
-
 if test -x "$perlbin"; then
-  res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`;
+       res=`cd perl ; $perlbin Makefile.PL ; cd .. ;`;
+fi
+if test  -z "$YAZLIB"; then
+       echo "YAZ was not found. Use --with-yazconfig=DIR to specify location."
+       test -f /etc/debian_version && echo "Debian package libyaz-dev is required."
 fi
+