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
|
#
# Pull in the standard Tcl autoconf macros.
# If you don't have the "tclconfig" subdirectory, it is a dependent CVS
# module. Either "cvs -d <root> checkout tclconfig" right here, or
# re-checkout the thread module
#
builtin(include,tclconfig/tcl.m4)
builtin(include,naviserver.m4)
#
# Handle the "--with-gdbm" option for linking-in
# the gdbm-based peristent store for shared arrays.
# It tries to locate gdbm files in couple of standard
# system directories and/or common install locations
# in addition to the directory passed by the user.
# In the latter case, expect all gdbm lib files and
# include files located in the same directory.
#
AC_DEFUN(TCLTHREAD_WITH_GDBM, [
AC_ARG_WITH(gdbm,
[ --with-gdbm link with optional GDBM support],\
with_gdbm=${withval})
if test x"${with_gdbm}" != x -a "${with_gdbm}" != no; then
AC_MSG_CHECKING([for GNU gdbm library])
AC_CACHE_VAL(ac_cv_c_gdbm,[
if test x"${with_gdbm}" != x -a "${with_gdbm}" != "yes"; then
if test -f "${with_gdbm}/gdbm.h" -a x"`ls ${with_gdbm}/libgdbm* 2>/dev/null`" != x; then
ac_cv_c_gdbm=`(cd ${with_gdbm}; pwd)`
gincdir=$ac_cv_c_gdbm
glibdir=$ac_cv_c_gdbm
AC_MSG_RESULT([found in $glibdir])
else
AC_MSG_ERROR([${with_gdbm} directory doesn't contain gdbm library])
fi
fi
])
if test x"${gincdir}" = x -o x"${glibdir}" = x; then
for i in \
`ls -d ${exec_prefix}/lib 2>/dev/null`\
`ls -d ${prefix}/lib 2>/dev/null`\
`ls -d /usr/local/lib 2>/dev/null`\
`ls -d /usr/lib 2>/dev/null`\
`ls -d /usr/lib/x86_64-linux-gnu 2>/dev/null` ; do
if test x"`ls $i/libgdbm* 2>/dev/null`" != x ; then
glibdir=`(cd $i; pwd)`
break
fi
done
for i in \
`ls -d ${prefix}/include 2>/dev/null`\
`ls -d /usr/local/include 2>/dev/null`\
`ls -d /usr/include 2>/dev/null` ; do
if test -f "$i/gdbm.h" ; then
gincdir=`(cd $i; pwd)`
break
fi
done
if test x"$glibdir" = x -o x"$gincdir" = x ; then
AC_MSG_ERROR([none found])
else
AC_MSG_RESULT([found in $glibdir, includes in $gincdir])
AC_DEFINE(HAVE_GDBM)
GDBM_CFLAGS="-I\"$gincdir\""
GDBM_LIBS="-L\"$glibdir\" -lgdbm"
fi
fi
fi
])
#
# Handle the "--with-lmdb" option for linking-in
# the LMDB-based peristent store for shared arrays.
# It tries to locate LMDB files in couple of standard
# system directories and/or common install locations
# in addition to the directory passed by the user.
# In the latter case, expect all LMDB lib files and
# include files located in the same directory.
#
AC_DEFUN(TCLTHREAD_WITH_LMDB, [
AC_ARG_WITH(lmdb,
[ --with-lmdb link with optional LMDB support],
with_lmdb=${withval})
if test x"${with_lmdb}" != "x" -a "${with_lmdb}" != no; then
AC_MSG_CHECKING([for LMDB library])
AC_CACHE_VAL(ac_cv_c_lmdb,[
if test x"${with_lmdb}" != x -a "${with_lmdb}" != "yes"; then
if test -f "${with_lmdb}/lmdb.h" -a x"`ls ${with_lmdb}/liblmdb* 2>/dev/null`" != x; then
ac_cv_c_lmdb=`(cd ${with_lmdb}; pwd)`
lincdir=$ac_cv_c_lmdb
llibdir=$ac_cv_c_lmdb
AC_MSG_RESULT([found in $llibdir])
else
AC_MSG_ERROR([${with_lmdb} directory doesn't contain lmdb library])
fi
fi
])
if test x"${lincdir}" = x -o x"${llibdir}" = x; then
for i in \
`ls -d ${exec_prefix}/lib 2>/dev/null`\
`ls -d ${prefix}/lib 2>/dev/null`\
`ls -d /usr/local/lib 2>/dev/null`\
`ls -d /usr/lib 2>/dev/null`\
`ls -d /usr/lib/x86_64-linux-gnu 2>/dev/null` ; do
if test x"`ls $i/liblmdb* 2>/dev/null`" != x ; then
llibdir=`(cd $i; pwd)`
break
fi
done
for i in \
`ls -d ${prefix}/include 2>/dev/null`\
`ls -d /usr/local/include 2>/dev/null`\
`ls -d /usr/include 2>/dev/null` ; do
if test -f "$i/lmdb.h" ; then
lincdir=`(cd $i; pwd)`
break
fi
done
if test x"$llibdir" = x -o x"$lincdir" = x ; then
AC_MSG_ERROR([none found])
else
AC_MSG_RESULT([found in $llibdir, includes in $lincdir])
AC_DEFINE(HAVE_LMDB)
LMDB_CFLAGS="-I\"$lincdir\""
LMDB_LIBS="-L\"$llibdir\" -llmdb"
fi
fi
fi
])
# EOF
|