亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? aclocal.m4

?? aumix-2.8 源碼下載
?? M4
?? 第 1 頁 / 共 2 頁
字號:
#include <stdio.h>],      [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],        [ echo "*** The test program compiled, but did not run. This usually means"          echo "*** that the run-time linker is not finding GTK or finding the wrong"          echo "*** version of GTK. If it is not finding GTK, you'll need to set your"          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"          echo "*** to the installed location  Also, make sure you have run ldconfig if that"          echo "*** is required on your system"	  echo "***"          echo "*** If you have an old version installed, it is best to remove it, although"          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"          echo "***" ],        [ echo "*** The test program failed to compile or link. See the file config.log for the"          echo "*** exact error that occured. This usually means GTK was incorrectly installed"          echo "*** or that you have moved GTK since it was installed. In the latter case, you"          echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ])          CFLAGS="$ac_save_CFLAGS"          LIBS="$ac_save_LIBS"       fi     fi     GTK_CFLAGS=""     GTK_LIBS=""     ifelse([$3], , :, [$3])  fi  AC_SUBST(GTK_CFLAGS)  AC_SUBST(GTK_LIBS)  rm -f conf.gtktest])# Configure paths for GTK+# Owen Taylor     97-11-3dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBSdnlAC_DEFUN(AM_PATH_GTK,[dnl dnl Get the cflags and libraries from the pkg-config scriptdnlAC_ARG_WITH(gtk-prefix,[  --with-gtk-prefix=PFX   Prefix where GTK 2.0 is installed (optional)],            gtk_config_prefix="$withval", gtk_config_prefix="")AC_ARG_WITH(gtk-exec-prefix,[  --with-gtk-exec-prefix=PFX Exec prefix where GTK 2.0 is installed (optional)],            gtk_config_exec_prefix="$withval", gtk_config_exec_prefix="")AC_ARG_ENABLE(gtktest, [  --disable-gtktest       Do not try to compile and run a test GTK 2.0 program],		    , enable_gtktest=yes)  for module in . $4  do      case "$module" in         gthread-2.0)              gtk_config_args="$gtk_config_args gthread-2.0"         ;;      esac  done  if test x$gtk_config_exec_prefix != x ; then     gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"     if test x${PKG_CONFIG+set} != xset ; then        PKG_CONFIG=$gtk_config_exec_prefix/bin/pkg-config     fi  fi  if test x$gtk_config_prefix != x ; then     gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"     if test x${PKG_CONFIG+set} != xset ; then        PKG_CONFIG=$gtk_config_prefix/bin/pkg-config     fi  fi  AC_PATH_PROG(PKG_CONFIG, pkg-config, no)  min_gtk_version=ifelse([$1], ,2.0,$1)  AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)  no_gtk=""  if test "$PKG_CONFIG" = "no" ; then    no_gtk=yes  else    GTK_CFLAGS=`$PKG_CONFIG $gtk_config_args --cflags gtk+-2.0`    GTK_LIBS=`$PKG_CONFIG $gtk_config_args --libs gtk+-2.0`    gtk_config_major_version=`$PKG_CONFIG $gtk_config_args --modversion gtk+-2.0 | \           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`    gtk_config_minor_version=`$PKG_CONFIG $gtk_config_args --modversion gtk+-2.0 | \           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`    gtk_config_micro_version=`$PKG_CONFIG $gtk_config_args --modversion gtk+-2.0 | \           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`    if test "x$enable_gtktest" = "xyes" ; then      ac_save_CFLAGS="$CFLAGS"      ac_save_LIBS="$LIBS"      CFLAGS="$CFLAGS $GTK_CFLAGS"      LIBS="$GTK_LIBS $LIBS"dnldnl Now check if the installed GTK is sufficiently new. (Also sanitydnl checks the results of pkg-config to some extentdnl      rm -f conf.gtktest      AC_TRY_RUN([#include <gtk/gtk.h>#include <stdio.h>#include <stdlib.h>int main (){  int major, minor, micro;  char *tmp_version;  system ("touch conf.gtktest");  /* HP/UX 9 (%@#!) writes to sscanf strings */  tmp_version = g_strdup("$min_gtk_version");  if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {     printf("%s, bad version string\n", "$min_gtk_version");     exit(1);   }  if ((gtk_major_version != $gtk_config_major_version) ||      (gtk_minor_version != $gtk_config_minor_version) ||      (gtk_micro_version != $gtk_config_micro_version))    {      printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",              $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,             gtk_major_version, gtk_minor_version, gtk_micro_version);      printf ("*** was found! If pkg-config was correct, then it is best\n");      printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");      printf("*** required on your system.\n");      printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG\n");      printf("*** to point to the correct copy of pkg-config, and remove the file config.cache\n");      printf("*** before re-running configure\n");    } #if defined (GTK_MAJOR_VERSION) && defined (GTK_MINOR_VERSION) && defined (GTK_MICRO_VERSION)  else if ((gtk_major_version != GTK_MAJOR_VERSION) ||	   (gtk_minor_version != GTK_MINOR_VERSION) ||           (gtk_micro_version != GTK_MICRO_VERSION))    {      printf("*** GTK+ header files (version %d.%d.%d) do not match\n",	     GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);      printf("*** library (version %d.%d.%d)\n",	     gtk_major_version, gtk_minor_version, gtk_micro_version);    }#endif /* defined (GTK_MAJOR_VERSION) ... */  else    {      if ((gtk_major_version > major) ||        ((gtk_major_version == major) && (gtk_minor_version > minor)) ||        ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro)))      {        return 0;       }     else      {        printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n",               gtk_major_version, gtk_minor_version, gtk_micro_version);        printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n",	       major, minor, micro);        printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");        printf("***\n");        printf("*** If you have already installed a sufficiently new version, this error\n");        printf("*** probably means that the wrong copy of the pkg-config shell script is\n");        printf("*** being found. The easiest way to fix this is to remove the old version\n");        printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n");        printf("*** correct copy of pkg-config. (In this case, you will have to\n");        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");        printf("*** so that the correct libraries are found at run-time))\n");      }    }  return 1;}],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])       CFLAGS="$ac_save_CFLAGS"       LIBS="$ac_save_LIBS"     fi  fi  if test "x$no_gtk" = x ; then     AC_MSG_RESULT(yes)     ifelse([$2], , :, [$2])       else     AC_MSG_RESULT(no)     if test "$PKG_CONFIG" = "no" ; then       echo "*** The pkg-config script installed by GTK could not be found"       echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in"       echo "*** your path, or set the PKG_CONFIG environment variable to the"       echo "*** full path to pkg-config."     else       if test -f conf.gtktest ; then        :       else          echo "*** Could not run GTK 2.0 test program, checking why..."          CFLAGS="$CFLAGS $GTK_CFLAGS"          LIBS="$LIBS $GTK_LIBS"          AC_TRY_LINK([#include <gtk/gtk.h>#include <stdio.h>],      [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ],        [ echo "*** The test program compiled, but did not run. This usually means"          echo "*** that the run-time linker is not finding GTK or finding the wrong"          echo "*** version of GTK. If it is not finding GTK, you'll need to set your"          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"          echo "*** to the installed location  Also, make sure you have run ldconfig if that"          echo "*** is required on your system"	  echo "***"          echo "*** If you have an old version installed, it is best to remove it, although"          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"          echo "***" ],        [ echo "*** The test program failed to compile or link. See the file config.log for the"          echo "*** exact error that occured. This usually means GTK was incorrectly installed"          echo "*** or that you have moved GTK since it was installed. In the latter case, you"          echo "*** may want to edit the pkg-config script: $PKG_CONFIG" ])          CFLAGS="$ac_save_CFLAGS"          LIBS="$ac_save_LIBS"       fi     fi     GTK_CFLAGS=""     GTK_LIBS=""     ifelse([$3], , :, [$3])  fi  AC_SUBST(GTK_CFLAGS)  AC_SUBST(GTK_LIBS)  rm -f conf.gtktest])# Do all the work for Automake.  This macro actually does too much --# some checks are only needed if your package does certain things.# But this isn't really a big deal.# serial 1dnl Usage:dnl AM_INIT_AUTOMAKE(package,version, [no-define])AC_DEFUN([AM_INIT_AUTOMAKE],[AC_REQUIRE([AC_PROG_INSTALL])PACKAGE=[$1]AC_SUBST(PACKAGE)VERSION=[$2]AC_SUBST(VERSION)dnl test to see if srcdir already configuredif test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])fiifelse([$3],,AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))AC_REQUIRE([AM_SANITY_CHECK])AC_REQUIRE([AC_ARG_PROGRAM])dnl FIXME This is truly gross.missing_dir=`cd $ac_aux_dir && pwd`AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)AC_REQUIRE([AC_PROG_MAKE_SET])])## Check to make sure that the build environment is sane.#AC_DEFUN([AM_SANITY_CHECK],[AC_MSG_CHECKING([whether build environment is sane])# Just in casesleep 1echo timestamp > conftestfile# Do `set' in a subshell so we don't clobber the current shell's# arguments.  Must try -L first in case configure is actually a# symlink; some systems play weird games with the mod time of symlinks# (eg FreeBSD returns the mod time of the symlink's containing# directory).if (   set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`   if test "[$]*" = "X"; then      # -L didn't work.      set X `ls -t $srcdir/configure conftestfile`   fi   if test "[$]*" != "X $srcdir/configure conftestfile" \      && test "[$]*" != "X conftestfile $srcdir/configure"; then      # If neither matched, then we have a broken ls.  This can happen      # if, for instance, CONFIG_SHELL is bash and it inherits a      # broken ls alias from the environment.  This has actually      # happened.  Such a system could not be considered "sane".      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a brokenalias in your environment])   fi   test "[$]2" = conftestfile   )then   # Ok.   :else   AC_MSG_ERROR([newly created file is older than distributed files!Check your system clock])firm -f conftest*AC_MSG_RESULT(yes)])dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)dnl The program must properly implement --version.AC_DEFUN([AM_MISSING_PROG],[AC_MSG_CHECKING(for working $2)# Run test in a subshell; some versions of sh will print an error if# an executable is not found, even if stderr is redirected.# Redirect stdin to placate older versions of autoconf.  Sigh.if ($2 --version) < /dev/null > /dev/null 2>&1; then   $1=$2   AC_MSG_RESULT(found)else   $1="$3/missing $2"   AC_MSG_RESULT(missing)fiAC_SUBST($1)])# Like AC_CONFIG_HEADER, but automatically create stamp file.AC_DEFUN([AM_CONFIG_HEADER],[AC_PREREQ([2.12])AC_CONFIG_HEADER([$1])dnl When config.status generates a header, we must update the stamp-h file.dnl This file resides in the same directory as the config headerdnl that is generated.  We must strip everything past the first ":",dnl and everything past the last "/".AC_OUTPUT_COMMANDS(changequote(<<,>>)dnlifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,<<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,<<am_indx=1for am_file in <<$1>>; do  case " <<$>>CONFIG_HEADERS " in  *" <<$>>am_file "*<<)>>    echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx    ;;  esac  am_indx=`expr "<<$>>am_indx" + 1`done<<>>dnl>>)changequote([,]))])# Define a conditional.AC_DEFUN([AM_CONDITIONAL],[AC_SUBST($1_TRUE)AC_SUBST($1_FALSE)if $2; then  $1_TRUE=  $1_FALSE='#'else  $1_TRUE='#'  $1_FALSE=fi])

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品超碰97尤物18| 色视频成人在线观看免| 国产精品免费视频一区| 极品瑜伽女神91| 久久一留热品黄| 高清久久久久久| 国产精品天美传媒沈樵| 波波电影院一区二区三区| 综合欧美一区二区三区| 在线视频一区二区免费| 日日欢夜夜爽一区| 精品国产1区二区| 国产成人av影院| 亚洲黄色尤物视频| 日韩一区二区三区视频在线观看| 老汉av免费一区二区三区 | 色丁香久综合在线久综合在线观看| 国产精品女人毛片| 欧美日韩一二三区| 久久99热国产| 亚洲日本电影在线| 欧美人妇做爰xxxⅹ性高电影 | 麻豆精品在线看| 国产精品乱人伦| 欧美精品在线视频| 成人一级片网址| 午夜亚洲福利老司机| 久久天天做天天爱综合色| 91小视频在线观看| 麻豆精品新av中文字幕| 国产福利精品导航| 亚洲综合小说图片| 2022国产精品视频| 精品视频在线视频| 成人一区二区在线观看| 日韩和欧美的一区| 自拍偷拍亚洲欧美日韩| 91精品国产高清一区二区三区蜜臀| 国产69精品一区二区亚洲孕妇 | 国产日韩高清在线| 欧美三级一区二区| 成人动漫av在线| 久草在线在线精品观看| 中文字幕一区二区三| 日韩欧美电影一二三| 一本久道久久综合中文字幕| 久久精品国产一区二区三区免费看| 亚洲码国产岛国毛片在线| 精品国产凹凸成av人导航| 色av一区二区| av一二三不卡影片| 激情综合网av| 免费av网站大全久久| 亚洲一级二级在线| 亚洲欧美一区二区三区久本道91| 2020国产成人综合网| 欧美日韩国产美| 91福利在线导航| 99久久免费国产| 懂色av一区二区三区蜜臀| 日本不卡1234视频| 婷婷开心久久网| 午夜不卡在线视频| 亚洲第一综合色| 亚洲大片一区二区三区| 一区二区三区在线高清| 中文字幕一区二区三区不卡在线| 国产免费久久精品| 国产婷婷色一区二区三区四区| 欧美白人最猛性xxxxx69交| 欧美日本在线看| 欧美精品久久久久久久多人混战| 欧美伊人久久久久久久久影院 | 免费成人结看片| 日韩不卡免费视频| 男男gaygay亚洲| 另类小说综合欧美亚洲| 久久草av在线| 懂色av一区二区三区蜜臀| 国产成人av电影| av在线这里只有精品| 91首页免费视频| 在线精品亚洲一区二区不卡| 91女厕偷拍女厕偷拍高清| 日本精品一区二区三区高清 | 色综合天天视频在线观看| 99国产精品国产精品久久| 91女人视频在线观看| 欧美三级日韩在线| 欧美一三区三区四区免费在线看| 日韩午夜电影av| 国产三级一区二区三区| 国产午夜亚洲精品理论片色戒| 中文成人av在线| 一级做a爱片久久| 欧美aaaaaa午夜精品| 极品瑜伽女神91| 99视频精品全部免费在线| 91丨九色丨蝌蚪富婆spa| 欧美色国产精品| 精品国产免费久久| 亚洲欧美日韩久久| 亚洲高清视频中文字幕| 丝袜亚洲另类欧美综合| 国产乱人伦偷精品视频不卡| 成人免费视频视频| 欧美日韩一本到| 国产亚洲女人久久久久毛片| 国产精品高潮久久久久无| 亚洲国产一区在线观看| 精品一区二区三区香蕉蜜桃| 成人av免费观看| 91麻豆精品91久久久久久清纯| 精品国产乱子伦一区| 中文字幕一区二| 久久综合综合久久综合| 久久色中文字幕| 亚洲欧美激情在线| 久久99精品久久久久久久久久久久| 成人免费福利片| 欧美美女bb生活片| 国产精品理伦片| 奇米色一区二区三区四区| 成人午夜精品一区二区三区| 欧美日韩电影在线播放| 欧美国产日韩一二三区| 婷婷久久综合九色综合伊人色| 懂色av中文字幕一区二区三区| 欧美性大战久久| 国产精品进线69影院| 日韩经典中文字幕一区| 91色九色蝌蚪| 欧美国产日韩a欧美在线观看 | 一区二区国产视频| 国产精品一区在线观看你懂的| 欧美三电影在线| 中文字幕欧美日韩一区| 日本美女一区二区三区视频| 9人人澡人人爽人人精品| 日韩精品一区二区在线| 亚洲一区日韩精品中文字幕| 国产精品一区一区三区| 日韩午夜电影在线观看| 亚洲成人动漫一区| 色综合久久中文综合久久牛| 久久久精品影视| 久久电影网电视剧免费观看| 日本久久一区二区| 亚洲日本电影在线| www.66久久| 欧美国产一区在线| 国产一区二区看久久| 日韩无一区二区| 久久国产精品色| 欧美一区二区三区不卡| 亚洲午夜av在线| 欧美专区日韩专区| 亚洲自拍偷拍网站| 色婷婷一区二区| 亚洲人一二三区| av一区二区三区| 亚洲欧美日韩在线不卡| 成人av网站免费| 国产精品不卡一区| a级高清视频欧美日韩| 国产精品美女久久久久av爽李琼 | 欧美变态口味重另类| 青青国产91久久久久久| 91精品国产欧美一区二区18| 亚洲一区二区精品视频| 欧美丝袜丝交足nylons图片| 亚洲综合自拍偷拍| 欧美日韩三级一区二区| 午夜av电影一区| 日韩午夜激情av| 国产精品综合二区| 中日韩av电影| 色香蕉成人二区免费| 一个色综合av| 欧美精品自拍偷拍| 久久精品国产99国产精品| 日韩欧美国产三级电影视频| 久久狠狠亚洲综合| 国产精品美女久久久久久久网站| 99久久精品一区二区| 亚洲欧美日韩精品久久久久| 欧美吞精做爰啪啪高潮| 日产精品久久久久久久性色| 久久综合久久久久88| 成人h动漫精品一区二| 亚洲免费在线视频一区 二区| 在线观看av一区二区| 欧美a级理论片| 国产欧美精品国产国产专区 | 天使萌一区二区三区免费观看| 欧美大白屁股肥臀xxxxxx| 韩国午夜理伦三级不卡影院| 国产精品女人毛片| 欧美精品久久99久久在免费线 | 激情综合五月婷婷|