⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.in

📁 bonddb 是一个源于PostgreSQL封装包的对象。它是一个由C/C++编写的快速数据提取层应用软件
💻 IN
字号:
dnl Process this file with autoconf to produce a configure script.AC_INIT(src/db.h)AM_INIT_AUTOMAKE(bonddb, 0.5)AM_CONFIG_HEADER(config.h)AM_PATH_GLIBGENERIC_LIBARY_NAME=bonddbAC_ISC_POSIXAC_PROG_CCAM_PROG_LIBTOOLAM_PROG_CC_STDCAC_HEADER_STDCAC_PROG_YACCAC_CHECK_PROGS(YACC, 'bison -y' byacc, yacc)dnl Checks for programs.dnl Checks for libraries.AC_CHECK_LIB(pq, PQconnectdb)dnl Checks for header files.AC_CHECK_HEADERS([stdlib.h string.h])dnl Checks for typedefs, structures, and compiler characteristics.dnl Checks for library functions.AC_CHECK_FUNCS([strcasecmp strstr])dnl Checks for Additional stuffs.# This is a check for gtk-doc which you can insert into your configure.in.# You shouldn't need to change it at all.################################################### Check for gtk-doc.##################################################AC_ARG_WITH(html-dir, [  --with-html-dir=PATH path to installed docs ])if test "x$with_html_dir" = "x" ; then  HTML_DIR='${datadir}/gtk-doc/html'else  HTML_DIR=$with_html_dirfiAC_SUBST(HTML_DIR)AC_CHECK_PROG(GTKDOC, gtkdoc-mkdb, true, false)gtk_doc_min_version=0.6if $GTKDOC ; then     gtk_doc_version=`gtkdoc-mkdb --version`    AC_MSG_CHECKING([gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version])    if perl <<EOF ; then      exit (("$gtk_doc_version" =~ /^[[0-9]]+\.[[0-9]]+$/) &&            ("$gtk_doc_version" >= "$gtk_doc_min_version") ? 0 : 1);EOF      AC_MSG_RESULT(yes)   else      AC_MSG_RESULT(no)      GTKDOC=false   fifidnl Let people disable the gtk-doc stuff.AC_ARG_ENABLE(gtk-doc, [  --enable-gtk-doc  Use gtk-doc to build documentation [default=auto]], enable_gtk_doc="$enableval", enable_gtk_doc=auto)if test x$enable_gtk_doc = xauto ; then  if test x$GTKDOC = xtrue ; then    enable_gtk_doc=yes  else    enable_gtk_doc=no   fifiAM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)AC_ARG_ENABLE([gtk-debugnote],[  --enable-gtk-debugnote    Turn on Gtk-based debugging library],[case "${enableval}" in	yes) gtk_debugnote=true ;;	no)  gtk_debugnote=false ;;	*) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk-debugnote) ;;esac],[gtk_debugnote=false])dnl AC_CACHE_CHECK([whether to use gtk debugnote], [ac_cv_use_gtk_debugnote], [ac_cv_use_gtk_debugnote=no])]dnl dnl AC_ARG_ENABLE([gtk-debugnote],dnl [  --enable-gtk-debugnote    Turn on Gtk-based debugging library],dnl [ac_cv_use_gtk_debugnote=$enableval],[ac_cv_use_gtk_debugnote=no])dnl dnl echo "Hmm: $gtk_debugnote"dnl echo "Hmm: $ac_cv_use_gtk_debugnote"AC_MSG_CHECKING([whether to use gtk debugnote])AC_MSG_RESULT([$gtk_debugnote])AM_CONDITIONAL(GTK_DEBUGNOTE, test x$gtk_debugnote = xtrue)dnl AM_CONDITIONAL(GTK_DEBUGNOTE, test x$ac_cv_use_gtk_debugnote = xyes)AC_OUTPUT([Makefilebonddebug/Makefilereference/Makefilebondsql/Makefilesrc/Makefile])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -