📄 acinclude.m4
字号:
dnldnl $Source: /home/gambit/CVS/gambit/acinclude.m4,v $dnl $Date: 2002/08/16 02:49:30 $dnl $Revision: 1.5 $dnldnl DESCRIPTION:dnl Local macro definitions for Gambit configure.indnldnl ---------------------------------------------------------------------------dnl WX_PATH_WXCONFIG(VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])dnldnl Test for wxWindows, and define WX_CFLAGS and WX_LIBS. Set WX_CONFIGdnl environment variable to override the default name of the wx-config scriptdnl to use.dnl ---------------------------------------------------------------------------AC_DEFUN(WX_PATH_WXCONFIG,[dnl dnl Get the cflags and libraries from the wx-config scriptdnlAC_ARG_WITH(wx-prefix, [ --with-wx-prefix=PREFIX Prefix where wxWindows is installed (optional)], wx_config_prefix="$withval", wx_config_prefix="")AC_ARG_WITH(wx-exec-prefix,[ --with-wx-exec-prefix=PREFIX Exec prefix where wxWindows is installed (optional)], wx_config_exec_prefix="$withval", wx_config_exec_prefix="") dnl deal with optional prefixes if test x$wx_config_exec_prefix != x ; then wx_config_args="$wx_config_args --exec-prefix=$wx_config_exec_prefix" if test x${WX_CONFIG+set} != xset ; then WX_CONFIG=$wx_config_exec_prefix/bin/wx-config fi fi if test x$wx_config_prefix != x ; then wx_config_args="$wx_config_args --prefix=$wx_config_prefix" if test x${WX_CONFIG+set} != xset ; then WX_CONFIG=$wx_config_prefix/bin/wx-config fi fi AC_PATH_PROG(WX_CONFIG, wx-config, no) min_wx_version=ifelse([$1], ,2.3.2,$1) AC_MSG_CHECKING(for wxWindows version >= $min_wx_version) no_wx="" if test "$WX_CONFIG" = "no" ; then no_wx=yes else WX_CFLAGS=`$WX_CONFIG $wx_config_args --cflags` WX_CXXFLAGS=`$WX_CONFIG $wx_config_args --cxxflags` WX_LIBS=`$WX_CONFIG $wx_config_args --libs` wx_config_major_version=`$WX_CONFIG $wx_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` wx_config_minor_version=`$WX_CONFIG $wx_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` wx_config_micro_version=`$WX_CONFIG $wx_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` wx_requested_major_version=`echo $min_wx_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` wx_requested_minor_version=`echo $min_wx_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` wx_requested_micro_version=`echo $min_wx_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` wx_ver_ok="" if test $wx_config_major_version -gt $wx_requested_major_version; then wx_ver_ok=yes else if test $wx_config_major_version -eq $wx_requested_major_version; then if test $wx_config_minor_version -gt $wx_requested_minor_version; then wx_ver_ok=yes else if test $wx_config_minor_version -eq $wx_requested_minor_version; then if test $wx_config_micro_version -ge $wx_requested_micro_version; then wx_ver_ok=yes fi fi fi fi fi if test "x$wx_ver_ok" = x ; then no_wx=yes fi fi if test "x$no_wx" = x ; then AC_MSG_RESULT(yes (version $wx_config_major_version.$wx_config_minor_version.$wx_config_micro_version)) ifelse([$2], , :, [$2]) else if test "x$wx_config_major_version" = x; then dnl no wx-config at all AC_MSG_RESULT(no) else AC_MSG_RESULT(no (version $wx_config_major_version.$wx_config_minor_version.$wx_config_micro_version) is not new enough) fi WX_CFLAGS="" WX_LIBS="" ifelse([$3], , :, [$3]) fi AC_SUBST(WX_CFLAGS) AC_SUBST(WX_CXXFLAGS) AC_SUBST(WX_LIBS)])
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -