de3862 | 2000-03-26 | Francesco Chemolli | | dnl This file is part of the Sybase driver for the Pike programming language
dnl by Francesco Chemolli <kinkie@roxen.com> 10/12/1999
AC_INIT(sybase.c)
AC_CONFIG_HEADER(sybase_config.h)
|
8cb8d8 | 2001-02-27 | Henrik Grubbström (Grubba) | | AC_MODULE_INIT()
|
de3862 | 2000-03-26 | Francesco Chemolli | | echo "Configureing for sybase support"
OLD_CPPFLAGS="$CPPFLAGS"
OLD_CFLAGS="$CFLAGS"
OLD_LIBS="$LIBS"
OLD_LDFLAGS="$LDFLAGS"
AC_ARG_WITH(sybase,
[ --with(out)-sybase Include the Sybase database driver],
|
ee490c | 2000-08-31 | Francesco Chemolli | | [],[with_sybase=yes])
|
de3862 | 2000-03-26 | Francesco Chemolli | | AC_ARG_WITH(sybase-include-dir,
[ --with-sybase-include-dir Sybase headers directory location],
[pike_sybase_include_dir=$withval])
AC_ARG_WITH(sybase-lib-dir,
[ --with-sybase-lib-dir Sybase libraries directory location],
[pike_sybase_lib_dir=$withval])
|
d037da | 2005-03-21 | Henrik Grubbström (Grubba) | | dnl "reasonable" search paths we will look in $root/$prefix/$path
|
8cb8d8 | 2001-02-27 | Henrik Grubbström (Grubba) | | pike_sybase_reasonable_roots="$SYBASE $with_root/ $with_root/usr/local $with_root/usr $with_root/opt $with_root/usr $HOME"
|
de3862 | 2000-03-26 | Francesco Chemolli | | pike_sybase_reasonable_prefixes="sybase include lib /"
pike_sybase_reasonable_paths="sybase include lib /"
pike_sybase_reasonable_extra_paths="$pike_sybase_include_dir $pike_sybase_lib_dir"
pike_sybase_reasonable_libs_tosearch="libtcl.a libsybtcl.a libtcl64.a libtcl_r.a libtcl_dce.a libtcl_dce64.a libtcl.so libsybtcl.so libtcl64.so libtcl_r.so libtcl_dce.so libtcl_dce64.so"
AC_MSG_CHECKING(for include files location)
if test x$pike_sybase_include_dir != x; then
AC_MSG_RESULT(user-provided: $pike_sybase_include_dir)
pike_cv_sybase_include_dir=$pike_sybase_include_dir
else
AC_MSG_RESULT(going hunting...)
fi
AC_CACHE_VAL(pike_cv_sybase_include_dir,
[
for sybroot in $pike_sybase_reasonable_roots
do
for sybprefix in $pike_sybase_reasonable_prefixes
do
for sybpath in $pike_sybase_reasonable_paths
do
|
20f97b | 2000-05-29 | Per Hedbor | | dnl AC_MSG_CHECKING(in $sybroot/$sybprefix/$sybpath)
|
de3862 | 2000-03-26 | Francesco Chemolli | | if test -f $sybroot/$sybprefix/$sybpath/ctpublic.h; then
pike_cv_sybase_include_dir="$sybroot/$sybprefix/$sybpath"
|
20f97b | 2000-05-29 | Per Hedbor | | dnl AC_MSG_RESULT("Found")
|
de3862 | 2000-03-26 | Francesco Chemolli | | break 3;
else
|
20f97b | 2000-05-29 | Per Hedbor | | dnl AC_MSG_RESULT("Not Found")
:
|
de3862 | 2000-03-26 | Francesco Chemolli | | fi
done
done
done
])
if test x$pike_cv_sybase_include_dir != x; then
AC_MSG_RESULT(Found: $pike_cv_sybase_include_dir)
|
d037da | 2005-03-21 | Henrik Grubbström (Grubba) | | CPPFLAGS="-I$pike_cv_sybase_include_dir $CPPFLAGS"
|
de3862 | 2000-03-26 | Francesco Chemolli | | else
AC_MSG_RESULT(Not found.)
fi
|
d037da | 2005-03-21 | Henrik Grubbström (Grubba) | | AC_CHECK_HEADERS(SybaseOpenClient/SybaseOpenClient.h ctpublic.h)
AC_MSG_CHECKING(for SybaseOpenClient framework)
AC_CACHE_VAL(pike_cv_framework_sybaseopenclient, [
pike_cv_framework_sybaseopenclient="no"
OLD_LDFLAGS="${LDFLAGS}"
LDFLAGS="-framework SybaseOpenClient ${LDFLAGS}"
AC_TRY_LINK([
#ifdef HAVE_SYBASEOPENCLIENT_SYBASEOPENCLIENT_H
#include <SybaseOpenClient/SybaseOpenClient.h>
#elif defined(HAVE_CTPUBLIC_H)
#include <ctpublic.h>
#endif
], [
CS_CONTEXT *context;
CS_RETCODE ret;
ret = cs_ctx_alloc(CS_VERSION_110, &context);
ret = ct_init(context, CS_VERSION_110);
], [
pike_cv_framework_sybaseopenclient="yes"
])
LDFLAGS="${OLD_LDFLAGS}"
])
if test "$pike_cv_framework_sybaseopenclient" = "no"; then
AC_MSG_RESULT(no)
else
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_FRAMEWORK_SYBASEOPENCLIENT)
LDFLAGS="-framework SybaseOpenClient $LDFLAGS"
fi
if test "$pike_cv_framework_sybaseopenclient" = "no"; then
|
de3862 | 2000-03-26 | Francesco Chemolli | | AC_MSG_CHECKING(for library files location)
if test x$pike_sybase_lib_dir != x; then
AC_MSG_RESULT(user-provided: $pike_sybase_lib_dir)
pike_cv_sybase_lib_dir=$pike_sybase_lib_dir
else
AC_MSG_RESULT(going hunting...)
fi
AC_CACHE_VAL(pike_cv_sybase_lib_dir,
[
for sybroot in $pike_sybase_reasonable_roots
do
for sybprefix in $pike_sybase_reasonable_prefixes
do
for sybpath in $pike_sybase_reasonable_paths
do
|
20f97b | 2000-05-29 | Per Hedbor | | dnl AC_MSG_CHECKING(in $sybroot/$sybprefix/$sybpath)
|
de3862 | 2000-03-26 | Francesco Chemolli | | for syblib in $pike_sybase_reasonable_libs_tosearch
do
if test -f $sybroot/$sybprefix/$sybpath/$syblib; then
pike_cv_sybase_lib_dir="$sybroot/$sybprefix/$sybpath"
|
20f97b | 2000-05-29 | Per Hedbor | | dnl AC_MSG_RESULT("Found")
|
de3862 | 2000-03-26 | Francesco Chemolli | | break 4;
fi
done
|
20f97b | 2000-05-29 | Per Hedbor | | dnl AC_MSG_RESULT("Not Found")
|
de3862 | 2000-03-26 | Francesco Chemolli | | done
done
done
])
if test x$pike_cv_sybase_lib_dir != x; then
AC_MSG_RESULT(Found: $pike_cv_sybase_lib_dir)
|
d037da | 2005-03-21 | Henrik Grubbström (Grubba) | | LDFLAGS="-L$pike_cv_sybase_lib_dir $LDFLAGS"
|
de3862 | 2000-03-26 | Francesco Chemolli | | else
AC_MSG_RESULT(Not found.)
fi
fi
if test x$with_sybase != xno; then
AC_CHECK_LIB(m,floor)
AC_CHECK_LIB(dl,dlopen)
AC_CHECK_LIB(nsl,gethostbyname)
|
79fa3e | 2000-04-28 | Francesco Chemolli | |
AC_SEARCH_LIBS(intl_datetime,intl_r64 intl_r intl64 intl,AC_DEFINE(PIKE_HAVE_LIBINTL))
AC_SEARCH_LIBS(comn_bintobin,comn_r64 comn_r comn_dce64 comn_dce comn64 comn,AC_DEFINE(PIKE_HAVE_LIBCOMN))
AC_SEARCH_LIBS(cs_ctx_alloc,cs_r64 cs_r cs64 cs,AC_DEFINE(PIKE_HAVE_LIBCS))
AC_SEARCH_LIBS(iface_open,tcl_r64 tcl_r tcl_dce64 tcl_dce sybtcl tcl64 tcl,AC_DEFINE(PIKE_HAVE_LIBSYBTCL))
AC_SEARCH_LIBS(ct_callback, ct_r64 ct_r ct64 ct,AC_DEFINE(PIKE_HAVE_LIBCT))
|
de3862 | 2000-03-26 | Francesco Chemolli | | fi
dnl this is to allow compilation with both pike/0.6 and pike/0.7
make_variables="/dev/null"
AC_SUBST_FILE(make_variables)
AC_OUTPUT(Makefile,echo FOO >stamp-h)
|