1 Star 0 Fork 0

via/unixODBC

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
configure.ac 18.28 KB
一键复制 编辑 原始数据 按行查看 历史
lurcher 提交于 2023-04-12 09:31 . Fix --enable-stats config error
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
dnl Process this file with autoconf to produce a configure script.
AC_INIT([unixODBC], [2.3.12pre], [email protected], [unixODBC])
AM_INIT_AUTOMAKE
dnl Checks for programs.
AC_PROG_AWK
AC_PROG_YACC
AC_PROG_CPP
AC_PROG_CC
AM_PROG_LEX
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_CONFIG_MACRO_DIR([m4])
AC_DISABLE_STATIC
dnl Check if we want to worry about threads
AC_ARG_ENABLE( threads,
[AS_HELP_STRING([--enable-threads], [build with thread support [default=yes]])],
[ case "${enableval}" in
yes) thread=true ;;
no) thread=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-thread) ;;
esac],[thread=true])
AC_ARG_ENABLE( gnuthreads,
[AS_HELP_STRING([--enable-gnuthreads], [build with GNU threads support [default=no]])],
[ case "${enableval}" in
yes) gnuthread=true ;;
no) gnuthread=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-gnuthread) ;;
esac],[gnuthread=false])
AC_ARG_ENABLE( readline,
[AS_HELP_STRING([--enable-readline], [build with readline support [default=yes]])],
[ case "${enableval}" in
yes) readline=true ;;
no) readline=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-readline) ;;
esac],[readline=true])
AC_ARG_ENABLE( editline,
[AS_HELP_STRING([--enable-editline], [build with editline support [default=no]])],
[ case "${enableval}" in
yes) editline=true ;;
no) editline=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-editline) ;;
esac],[editline=false])
AC_ARG_ENABLE( inicaching,
[AS_HELP_STRING([--enable-inicaching], [build with ini file caching support [default=yes]])],
[ case "${enableval}" in
yes) inicaching=true ;;
no) inicaching=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-inicaching) ;;
esac],[inicaching=true])
dnl Check if we want to build the drivers
AC_ARG_ENABLE( drivers,
[AS_HELP_STRING([--enable-drivers], [build included drivers [default=no]])],
[ case "${enableval}" in
yes) drivers=true ;;
no) drivers=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-drivers) ;;
esac],[drivers=false])
dnl Check if we want to build the driver config
AC_ARG_ENABLE( driver-config,
[AS_HELP_STRING([--enable-driver-config], [build included driver config libs [default=no]])],
[ case "${enableval}" in
yes) driverc=true ;;
no) driverc=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-driver-conf) ;;
esac],[driverc=false])
AC_ARG_ENABLE( fastvalidate,
[AS_HELP_STRING([--enable-fastvalidate], [use relaxed handle checking in the DM [default=no]])],
[ case "${enableval}" in
yes) fastvalidate=true ;;
no) fastvalidate=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-fastvalidate) ;;
esac],[fastvalidate=false])
AC_ARG_ENABLE( iconv,
[AS_HELP_STRING([--enable-iconv], [build with iconv support [default=yes]])],
[ case "${enableval}" in
yes) iconv=true ;;
no) iconv=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-iconv) ;;
esac],[iconv=true])
dnl Check for sys/sem.h
AC_CHECK_HEADERS(sys/sem.h, semh=true, semh=false)
AC_ARG_ENABLE( stats,
[AS_HELP_STRING([--enable-stats], [build with statistic-gathering support [default=no]])],
[ case "${enableval}" in
yes) if test "x$semh" = "xfalse"; then
AC_MSG_ERROR(stats enabled but required header was not found)
fi
stats=true ;;
no) stats=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-stats) ;;
esac],[stats=false])
stats_ftok_name="odbc.ini"
AC_ARG_WITH(stats_ftok_name,
[AS_HELP_STRING([--with-stats-ftok-name=filename],
[Filename to get IPC ID for stats gathering [default=odbc.ini]])],
[stats_ftok_name="$withval"])
STATS_FTOK_NAME="$stats_ftok_name"
AC_SUBST(STATS_FTOK_NAME)
AC_DEFINE_UNQUOTED([STATS_FTOK_NAME],"$STATS_FTOK_NAME",[Filename to use for ftok])
AC_ARG_ENABLE( setlibversion,
[AS_HELP_STRING([--enable-setlibversion], [build with VERS set in libraries [default=no]])],
[ case "${enableval}" in
yes) setlibversion=true ;;
no) setlibversion=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-setlibversion) ;;
esac],[setlibversion=false])
AC_ARG_ENABLE( handlemap,
[AS_HELP_STRING([--enable-handlemap], [driver manager can map driver handles called back from broken drivers [default=no]])],
[ case "${enableval}" in
yes) handlemap=true ;;
no) handlemap=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-handlemap) ;;
esac],[handlemap=false])
AC_ARG_ENABLE( stricterror,
[AS_HELP_STRING([--enable-stricterror], [error conform to the MS spec, the unixODBC prefix is removed for driver errors [default=yes]])],
[ case "${enableval}" in
yes) stricterror=true ;;
no) stricterror=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-stricterror) ;;
esac],[stricterror=true])
AC_ARG_ENABLE( gui,
[AS_HELP_STRING([--enable-gui], [only included for backwards compatibility, gui now in its own project, see ChangeLog])],
[ case "${enableval}" in
*) ;;
esac])
dnl Enable building of the convenience library
dnl and set LIBLTDL accordingly
INCLTDL=""
LIBLTDL=""
AC_LIBTOOL_WIN32_DLL
dnl AC_PROG_LIBTOOL
dnl AC_CONFIG_MACRO_DIR([libltdl/m4])
dnl LT_CONFIG_LTDL_DIR([libltdl])
dnl LTDL_INIT
LT_CONFIG_LTDL_DIR([libltdl])
LT_INIT([dlopen])
LTDL_INIT([convenience])
dnl Substitute INCLTDL and LIBLTDL in the Makefiles
AC_SUBST(LTDLINCL)
AC_SUBST(LIBLTDL)
#dnl Find shared lib extension
#AC_MSG_CHECKING(for shared lib extension)
#SHLIBEXT="$shrext_cmds"
#AC_MSG_RESULT($shrext_cmds)
#AC_SUBST(SHLIBEXT)
dnl Find shared lib extension
AC_MSG_CHECKING(for shared lib extension)
eval "SHLIBEXT=$shrext_cmds"
AC_MSG_RESULT($SHLIBEXT)
AC_SUBST(SHLIBEXT,$SHLIBEXT)
dnl Check whether the user specified a path in which libltdl should search for
dnl ODBC drivers. This search occurs before libltdl tries other paths, such as
dnl its own default search path or the system library search path.
dnl
dnl This option is useful for multi-arch systems such as Debian, which can have
dnl multiple arch-specific library search paths present on a given system.
AC_ARG_WITH([odbc-driver-path],
[AS_HELP_STRING([--with-odbc-driver-path=DIR], [search for ODBC drivers in DIR at run-time before trying the libltdl and system library search paths])],
[AC_DEFINE_UNQUOTED([MODULEDIR], ["`eval echo ${withval}`"], [ODBC driver search path])]
)
AC_DEFINE_UNQUOTED([SHLIBEXT], "$shrext_cmds", [Shared lib extension])
AC_DEFINE_DIR([DEFLIB_PATH], [libdir], [Lib directory])
AC_DEFINE_DIR([LIB_PREFIX], [libdir], [Lib directory])
AC_DEFINE_DIR([SYSTEM_FILE_PATH], [sysconfdir], [System file path])
AC_DEFINE_DIR([SYSTEM_LIB_PATH], [libdir], [Lib path])
AC_DEFINE_DIR([PREFIX], [prefix], [Install prefix])
AC_DEFINE_DIR([EXEC_PREFIX], [exec_prefix], [Install exec_prefix])
AC_DEFINE_DIR([BIN_PREFIX], [bindir], [Install bindir])
AC_DEFINE_DIR([INCLUDE_PREFIX], [includedir], [Install includedir])
AC_DEFINE([UNIXODBC], [], [Flag that we are not using another DM])
if test "x$iconv" = "xtrue";
then
AM_ICONV
iconv_char_enc="auto-search"
AC_ARG_WITH(iconv_char_enc,
[AS_HELP_STRING([--with-iconv-char-enc=enc], [Encoding to use as ASCII [default=auto-search]])],
[iconv_char_enc="$withval"])
ICONV_CHAR_ENCODING="$iconv_char_enc"
iconv_ucode_enc="auto-search"
AC_ARG_WITH(iconv_ucode_enc,
[AS_HELP_STRING([--with-iconv-ucode-enc=enc], [Encoding to use as UNICODE [default=auto-search]])],
[iconv_ucode_enc="$withval"])
ICONV_CHAR_ENCODING=""
ICONV_UNICODE_ENCODING=""
if test "$am_cv_func_iconv" = yes; then
AC_MSG_CHECKING( for encoding to use for CHAR representations );
ICONV_CHAR_ENCODING="$iconv_char_enc"
AC_MSG_RESULT( $iconv_char_enc );
AC_MSG_CHECKING( for encoding to use for UNICODE representations );
ICONV_UNICODE_ENCODING="$iconv_ucode_enc"
AC_MSG_RESULT( $iconv_ucode_enc );
fi
AC_SUBST(ICONV_CHAR_ENCODING)
AC_SUBST(ICONV_UNICODE_ENCODING)
AC_DEFINE_UNQUOTED([UNICODE_ENCODING],"$ICONV_UNICODE_ENCODING",[Encoding to use for UNICODE])
AC_DEFINE_UNQUOTED([ASCII_ENCODING],"$ICONV_CHAR_ENCODING",[Encoding to use for CHAR])
AC_ARG_ENABLE( iconvperdriver,
[ --enable-iconvperdriver build with iconv support per driver [default=no]],
[ case "${enableval}" in
yes) iconvperdriver=true ;;
no) iconvperdriver=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-iconvperdriver) ;;
esac],[iconvperdriver=false])
AC_MSG_CHECKING( Are we using per driver iconv )
if test "x$iconvperdriver" = "xtrue"; then
AC_DEFINE([ENABLE_DRIVER_ICONV],[],[Using perdriver iconv])
AC_MSG_RESULT( yes );
else
AC_MSG_RESULT( no );
fi
fi
dnl Checks for libraries.
AC_CHECK_LIB(crypt, crypt, [ AC_DEFINE([HAVE_LIBCRYPT], [], [Add -lcrypt to lib list]) LIBADD_CRYPT="-lcrypt" ])
AC_SUBST(LIBADD_CRYPT)
AC_CHECK_LIB(m, pow, [ LIBADD_POW="-lm" ], )
AC_SUBST(LIBADD_POW)
have_editline="no"
if test "x$editline" = "xtrue"; then
AC_CHECK_LIB_NOC(edit, readline,
[
READLINE=-ledit
have_editline="yes"
],
[
dnl try with -lcurses
AC_CHECK_LIB_NOC(edit, readline,
[
READLINE="-ledit -lcurses"
have_editline="yes"
],
[
],
-lcurses )
])
if test "x$have_editline" = "xyes"; then
AC_CHECK_HEADERS(editline/readline.h, [AC_DEFINE([HAVE_EDITLINE], [1], [Add editline support])])
readline=false
fi
fi
have_readline="no"
if test "x$readline" = "xtrue"; then
AC_CHECK_LIB_NOC(readline, readline,
[
READLINE=-lreadline
have_readline="yes"
],
[
dnl try with -lcurses
AC_CHECK_LIB_NOC(readline, readline,
[
READLINE="-lreadline -lcurses"
have_readline="yes"
],
[
],
-lcurses )
])
if test "x$have_readline" = "xyes"; then
AC_CHECK_HEADERS(readline/history.h, [AC_DEFINE([HAVE_READLINE], [1], [Add readline support])])
fi
fi
AC_SUBST(READLINE)
AC_MSG_CHECKING( Are we using ini caching )
if test "x$inicaching" = "xtrue"; then
AC_DEFINE([ENABLE_INI_CACHING],[],[Using ini cacheing])
AC_MSG_RESULT( yes );
else
AC_MSG_RESULT( no );
fi
dnl Are we using flex
if test "x$drivers" = "xtrue"; then
AC_MSG_CHECKING( Are we using flex )
if test "x$LEX" = "xflex"; then
LFLAGS="$LFLAGS -i"
AC_MSG_RESULT( yes );
AC_CHECK_LIB(c, scandir, [AC_DEFINE([HAVE_SCANDIR], [1], [Use the scandir lib])] )
else
AC_MSG_RESULT( no - text driver disabled );
fi
AM_CONDITIONAL(HAVE_FLEX, test "x$LEX" = "xflex" )
AC_SUBST(LFLAGS)
else
AM_CONDITIONAL(HAVE_FLEX, test "xabc" = "xdef" )
fi
case $host_os in
*qnx* )
qnx="true"
AC_DEFINE([QNX_LIBLTDL],[],[Using QNX])
;;
esac
dnl intptr_t is used in places now
AC_TYPE_INTPTR_T
dnl check how time() can be used
AC_HEADER_TIME
AC_CHECK_HEADERS(sys/time.h)
AC_CHECK_SIZEOF(long, 4)
AC_MSG_CHECKING([if platform is 64 bit])
if test "$ac_cv_sizeof_long" = "8"; then
AC_MSG_RESULT( Yes );
AC_DEFINE([PLATFORM64],[],[Platform is 64 bit])
else
AC_MSG_RESULT( No );
fi
AC_CHECK_LONG_LONG
AC_CHECK_SIZEOF([long int])
AC_CHECK_TYPES([ptrdiff_t])
AC_SYS_LARGEFILE
AC_FUNC_FSEEKO
AC_CHECK_FUNCS( strcasecmp strncasecmp snprintf vsnprintf strtol atoll strtoll endpwent gettimeofday ftime time stricmp strnicmp getuid getpwuid getpwuid_r nl_langinfo fseeko setvbuf clock_gettime )
AM_LANGINFO_CODESET
LIBADD_DL=
AC_SUBST(LIBADD_DL)
THREADLIB=""
if test "x$thread" = "xtrue"; then
if test "x$gnuthread" = "xtrue"; then
AC_CHECK_PTH( 1.3.0 )
CPPFLAGS="$CPPFLAGS $PTH_CPPFLAGS"
CFLAGS="$CFLAGS $PTH_CFLAGS"
LDFLAGS="$LDFLAGS $PTH_LDFLAGS"
THREADLIB="$PTH_LIBS"
AC_DEFINE([HAVE_LIBPTH], [1], [Use the -lpth thread library])
else
gotthread="no";
AC_MSG_CHECKING( if os is AIX )
case $host_os in
"aix"*)
raw_threads="no";
AC_MSG_RESULT( yes - disable check for libthread );
;;
*)
raw_threads="yes";
AC_MSG_RESULT( no - enable check for libthread );
;;
esac
if test "x$raw_threads" = "xyes"; then
AC_CHECK_LIB_NOC(thread, mutex_lock,
[
AC_DEFINE([HAVE_LIBTHREAD], [1], [Use the -lthread threading lib])
dnl Check if the compiler will build with -mt as a option, this is a solaris thing
AC_CHECK_COMP_OPT(mt)
gotthread="yes";
THREADLIB="-lthread"
])
fi
if test "x$gotthread" = "xno"; then
AC_CHECK_LIBPT_NOC(pthread, pthread_mutex_lock,
[
AC_DEFINE([HAVE_LIBPTHREAD], [1], [Use -lpthread threading lib])
gotthread="yes";
THREADLIB="-lpthread"
if test "x$ac_cv_prog_gcc" = "xyes"; then
dnl Check if the compiler will build with -pthread as a option
AC_CHECK_COMP_OPT(pthread)
else
dnl Check if the compiler will build with -mt as a option
AC_CHECK_COMP_OPT(mt)
fi
])
fi
if test "x$gotthread" = "xno"; then
AC_CHECK_LIBPT_NOC(c, pthread_mutex_lock,
[
AC_DEFINE(HAVE_LIBPTHREAD,1)
gotthread="yes";
THREADLIB=""
if test "x$ac_cv_prog_gcc" = "xyes"; then
dnl Check if the compiler will build with -pthread as a option
AC_CHECK_COMP_OPT(pthread)
else
dnl Check if the compiler will build with -mt as a option
AC_CHECK_COMP_OPT(mt)
fi
])
fi
if test "x$gotthread" = "xno"; then
if test "x$ac_cv_prog_gcc" = "xyes"; then
dnl This is for freebsd that needs -lpthread before it finds the lib
AC_CHECK_COMP_OPT(pthread)
AC_CHECK_LIBPT_NOC(c, pthread_mutex_lock,
[
AC_DEFINE(HAVE_LIBPTHREAD,1)
THREADLIB="-pthread -lc_r"
gotthread="yes";
])
fi
fi
dnl Check for AIX
if test "x$gotthread" = "xno"; then
SAVECFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -D_THREAD_SAFE -D_ALL_SOURCE -D_LONG_LONG"
AC_CHECK_LIBPT_NOC(pthread, pthread_mutex_lock,
[
AC_DEFINE(HAVE_LIBPTHREAD,1)
gotthread="yes";
THREADLIB="-lpthread"
])
CFLAGS="$SAVECFLAGS"
AC_DEFINE([_THREAD_SAFE],[],[Build flag for AIX])
AC_DEFINE([_ALL_SOURCE],[],[Build flag for AIX])
AC_DEFINE([_LONG_LONG],[],[Build flag for AIX])
fi
if test "x$gotthread" = "xyes"; then
dnl do not add a -lc because of this
save_LIBS=$LIBS
AC_CHECK_LIB(c, localtime_r, [AC_DEFINE([HAVE_LOCALTIME_R], [1], [Use rentrant version of localtime] )])
LIBS=$save_LIBS
fi
fi
fi
case $host_os in
"darwin"*)
stats="false"
macosx="yes"
AC_DEFINE([OSXHEADER],[],[Using OSX])
;;
sysv5Open*)
if test "x$THREADLIB" = "x"; then
LIBS="$LIBS $THREADLIB"
else
LIBS="$LIBS -Kthread"
fi
;;
*)
LIBS="$LIBS $THREADLIB"
;;
esac
if test "x$stats" = "xtrue"; then
AC_CHECK_FUNCS( ftok semget shmget semop,[],[stats=false])
fi
if test "x$stats" = "xtrue"; then
AC_CHECK_SEMUNDOO
AC_DEFINE([COLLECT_STATS], [], [Use a semaphore to allow ODBCConfig to display running counts])
fi
AC_ARG_WITH(msql-lib,
[AS_HELP_STRING([--with-msql-lib=DIR], [where the root of MiniSQL libs are installed])],
[msql_libraries="$withval"])
AC_ARG_WITH(msql-include,
[AS_HELP_STRING([--with-msql-include=DIR where the MiniSQL headers are installed])],
[msql_headers="$withval"])
AC_SUBST(msql_libraries)
AC_SUBST(msql_headers)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(malloc.h unistd.h pwd.h crypt.h limits.h synch.h strings.h string.h locale.h sys/malloc.h sys/types.h sys/sem.h stdarg.h varargs.h sys/time.h sys/timeb.h time.h langinfo.h stddef.h )
INCLUDES="$INCLUDES $USER_INCLUDES";
dnl only build the mSQL code if the headers are in place
AC_CHECK_HEADERS(msql.h,[msql=true],
[
msql=false;
for ac_dir in $kde_extra_includes $msql_headers;
do
AC_CHECK_HEADERS( $ac_dir/msql.h,
[
msql=true;
INCLUDES="$INCLUDES $USER_INCLUDES -I$ac_dir";
])
done
])
dnl AC_SUBST(all_includes)
dnl AC_SUBST(all_libraries)
AM_CONDITIONAL(MSQL, test "x$msql" = "xtrue" )
AM_CONDITIONAL(DRIVERS, test "x$drivers" = "xtrue" )
AM_CONDITIONAL(DRIVERC, test "x$driverc" = "xtrue" )
AM_CONDITIONAL(QNX, test "x$qnx" = "xtrue" )
AM_CONDITIONAL(WITHLT, test "x$use_builtin_libtool" = "xyes" )
dnl This blows up due to what I think is a bug in automake 1.6.3
dnl AC_SUBST(INCLUDES)
if test "x$fastvalidate" = "xtrue"; then
AC_DEFINE([FAST_HANDLE_VALIDATE], [], [Disable the precise but slow checking of the validity of handles])
fi
if test "x$handlemap" = "xtrue"; then
AC_DEFINE([WITH_HANDLE_REDIRECT],[],[Work with IBM drivers that use 32 bit handles on 64 bit platforms])
fi
if test "x$stricterror" = "xtrue"; then
AC_DEFINE([STRICT_ODBC_ERROR],[],[don't include unixODBC prefix in driver error messages])
fi
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_STRUCT_TM
AC_TYPE_UID_T
AC_HEADER_DIRENT
dnl Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_VPRINTF
AC_CHECK_FUNCS( putenv socket strdup strstr setenv setlocale strchr )
dnl This is the unixODBC source tree
AC_DEFINE([UNIXODBC_SOURCE],[],[We are building inside the unixODBC source tree])
LIB_VERSION="2:0:0"
AC_SUBST(LIB_VERSION)
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_HEADERS(unixodbc.h)
AC_CONFIG_HEADERS(unixodbc_conf.h)
AC_CONFIG_FILES([
Makefile
extras/Makefile
log/Makefile
lst/Makefile
ini/Makefile
odbcinst/Makefile
odbcinst/odbcinst.pc
cur/Makefile
cur/odbccr.pc
DriverManager/Makefile
DriverManager/odbc.pc
exe/Makefile
DRVConfig/Makefile
DRVConfig/drvcfg1/Makefile
DRVConfig/drvcfg2/Makefile
DRVConfig/PostgreSQL/Makefile
DRVConfig/MiniSQL/Makefile
DRVConfig/MySQL/Makefile
DRVConfig/nn/Makefile
DRVConfig/esoob/Makefile
DRVConfig/oplodbc/Makefile
DRVConfig/template/Makefile
DRVConfig/tds/Makefile
DRVConfig/txt/Makefile
DRVConfig/Oracle/Makefile
DRVConfig/sapdb/Makefile
DRVConfig/Mimer/Makefile
Drivers/Makefile
Drivers/Postgre7.1/Makefile
Drivers/nn/Makefile
Drivers/template/Makefile
Drivers/MiniSQL/Makefile
include/Makefile
man/Makefile
doc/Makefile
doc/AdministratorManual/Makefile
doc/ProgrammerManual/Makefile
doc/ProgrammerManual/Tutorial/Makefile
doc/UserManual/Makefile
doc/lst/Makefile
samples/Makefile
])
AC_OUTPUT
dnl Attempt to add version information to libraries generated by libtool
AC_MSG_CHECKING( are we setting library version )
if test "x$setlibversion" = "xtrue"; then
AC_MSG_RESULT( yes );
sed '/archive_expsym_cmds=/s/{ global/VERS_3.52 {global/' < libtool > libtool.tmp; mv libtool.tmp libtool
else
AC_MSG_RESULT( no );
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/chooosky/unixODBC.git
[email protected]:chooosky/unixODBC.git
chooosky
unixODBC
unixODBC
master

搜索帮助