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

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

?? aclocal.m4

?? minicom2.0源代碼
?? M4
?? 第 1 頁 / 共 2 頁
字號:
        CATOBJEXT=.gmo        INSTOBJEXT=.mo        DATADIRNAME=share	INTLDEPS='$(top_builddir)/intl/libintl.a'	INTLLIBS=$INTLDEPS	LIBS=`echo $LIBS | sed -e 's/-lintl//'`        nls_cv_header_intl=intl/libintl.h        nls_cv_header_libgt=intl/libgettext.h      fi      dnl Test whether we really found GNU xgettext.      if test "$XGETTEXT" != ":"; then	dnl If it is no GNU xgettext we define it as : so that the	dnl Makefiles still can work.	if $XGETTEXT --omit-header /dev/null 2> /dev/null; then	  : ;	else	  AC_MSG_RESULT(	    [found xgettext program is not GNU xgettext; ignore it])	  XGETTEXT=":"	fi      fi      # We need to process the po/ directory.      POSUB=po    else      DATADIRNAME=share      nls_cv_header_intl=intl/libintl.h      nls_cv_header_libgt=intl/libgettext.h    fi    AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl)    AC_OUTPUT_COMMANDS(     [case "$CONFIG_FILES" in *po/Makefile.in*)        sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile      esac])    # If this is used in GNU gettext we have to set USE_NLS to `yes'    # because some of the sources are only built for this goal.    if test "$PACKAGE" = gettext; then      USE_NLS=yes      USE_INCLUDED_LIBINTL=yes    fi    dnl These rules are solely for the distribution goal.  While doing this    dnl we only have to keep exactly one list of the available catalogs    dnl in configure.in.    for lang in $ALL_LINGUAS; do      GMOFILES="$GMOFILES $lang.gmo"      POFILES="$POFILES $lang.po"    done    dnl Make all variables we use known to autoconf.    AC_SUBST(USE_INCLUDED_LIBINTL)    AC_SUBST(CATALOGS)    AC_SUBST(CATOBJEXT)    AC_SUBST(DATADIRNAME)    AC_SUBST(GMOFILES)    AC_SUBST(INSTOBJEXT)    AC_SUBST(INTLDEPS)    AC_SUBST(INTLLIBS)    AC_SUBST(INTLOBJS)    AC_SUBST(POFILES)    AC_SUBST(POSUB)  ])AC_DEFUN(AM_GNU_GETTEXT,  [AC_REQUIRE([AC_PROG_MAKE_SET])dnl   AC_REQUIRE([AC_PROG_CC])dnl   AC_REQUIRE([AC_PROG_RANLIB])dnl   AC_REQUIRE([AC_ISC_POSIX])dnl   AC_REQUIRE([AC_HEADER_STDC])dnl   AC_REQUIRE([AC_C_CONST])dnl   AC_REQUIRE([AC_C_INLINE])dnl   AC_REQUIRE([AC_TYPE_OFF_T])dnl   AC_REQUIRE([AC_TYPE_SIZE_T])dnl   AC_REQUIRE([AC_FUNC_ALLOCA])dnl   AC_REQUIRE([AC_FUNC_MMAP])dnl   AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h string.h \unistd.h sys/param.h])   AC_CHECK_FUNCS([getcwd munmap putenv setenv setlocale strchr strcasecmp \strdup __argz_count __argz_stringify __argz_next])   if test "${ac_cv_func_stpcpy+set}" != "set"; then     AC_CHECK_FUNCS(stpcpy)   fi   if test "${ac_cv_func_stpcpy}" = "yes"; then     AC_DEFINE(HAVE_STPCPY)   fi   AM_LC_MESSAGES   AM_WITH_NLS   if test "x$CATOBJEXT" != "x"; then     if test "x$ALL_LINGUAS" = "x"; then       LINGUAS=     else       AC_MSG_CHECKING(for catalogs to be installed)       NEW_LINGUAS=       for lang in ${LINGUAS=$ALL_LINGUAS}; do         case "$ALL_LINGUAS" in          *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;         esac       done       LINGUAS=$NEW_LINGUAS       AC_MSG_RESULT($LINGUAS)     fi     dnl Construct list of names of catalog files to be constructed.     if test -n "$LINGUAS"; then       for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done     fi   fi   dnl The reference to <locale.h> in the installed <libintl.h> file   dnl must be resolved because we cannot expect the users of this   dnl to define HAVE_LOCALE_H.   if test $ac_cv_header_locale_h = yes; then     INCLUDE_LOCALE_H="#include <locale.h>"   else     INCLUDE_LOCALE_H="\/* The system does not provide the header <locale.h>.  Take care yourself.  */"   fi   AC_SUBST(INCLUDE_LOCALE_H)   dnl Determine which catalog format we have (if any is needed)   dnl For now we know about two different formats:   dnl   Linux libc-5 and the normal X/Open format   test -d intl || mkdir intl   if test "$CATOBJEXT" = ".cat"; then     AC_CHECK_HEADER(linux/version.h, msgformat=linux, msgformat=xopen)     dnl Transform the SED scripts while copying because some dumb SEDs     dnl cannot handle comments.     sed -e '/^#/d' $srcdir/intl/$msgformat-msg.sed > intl/po2msg.sed   fi   dnl po2tbl.sed is always needed.   sed -e '/^#.*[^\\]$/d' -e '/^#$/d' \     $srcdir/intl/po2tbl.sed.in > intl/po2tbl.sed   dnl In the intl/Makefile.in we have a special dependency which makes   dnl only sense for gettext.  We comment this out for non-gettext   dnl packages.   if test "$PACKAGE" = "gettext"; then     GT_NO="#NO#"     GT_YES=   else     GT_NO=     GT_YES="#YES#"   fi   AC_SUBST(GT_NO)   AC_SUBST(GT_YES)   dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly   dnl find the mkinstalldirs script in another subdir but ($top_srcdir).   dnl Try to locate is.   MKINSTALLDIRS=   if test -n "$ac_aux_dir"; then     MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"   fi   if test -z "$MKINSTALLDIRS"; then     MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"   fi   AC_SUBST(MKINSTALLDIRS)   dnl *** For now the libtool support in intl/Makefile is not for real.   l=   AC_SUBST(l)   dnl Generate list of files to be processed by xgettext which will   dnl be included in po/Makefile.   test -d po || mkdir po   if test "x$srcdir" != "x."; then     if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then       posrcprefix="$srcdir/"     else       posrcprefix="../$srcdir/"     fi   else     posrcprefix="../"   fi   rm -f po/POTFILES   sed -e "/^#/d" -e "/^\$/d" -e "s,.*,	$posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \	< $srcdir/po/POTFILES.in > po/POTFILES  ])# Search path for a program which passes the given test.# Ulrich Drepper <drepper@cygnus.com>, 1996.## This file can be copied and used freely without restrictions.  It can# be used in projects which are not available under the GNU Public License# but which still want to provide support for the GNU gettext functionality.# Please note that the actual code is *not* freely available.# serial 1dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,dnl   TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])AC_DEFUN(AM_PATH_PROG_WITH_TEST,[# Extract the first word of "$2", so it can be a program name with args.set dummy $2; ac_word=[$]2AC_MSG_CHECKING([for $ac_word])AC_CACHE_VAL(ac_cv_path_$1,[case "[$]$1" in  /*)  ac_cv_path_$1="[$]$1" # Let the user override the test with a path.  ;;  *)  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:"  for ac_dir in ifelse([$5], , $PATH, [$5]); do    test -z "$ac_dir" && ac_dir=.    if test -f $ac_dir/$ac_word; then      if [$3]; then	ac_cv_path_$1="$ac_dir/$ac_word"	break      fi    fi  done  IFS="$ac_save_ifs"dnl If no 4th arg is given, leave the cache variable unset,dnl so AC_PATH_PROGS will keep looking.ifelse([$4], , , [  test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"])dnl  ;;esac])dnl$1="$ac_cv_path_$1"if test -n "[$]$1"; then  AC_MSG_RESULT([$]$1)else  AC_MSG_RESULT(no)fiAC_SUBST($1)dnl])# Check whether LC_MESSAGES is available in <locale.h>.# Ulrich Drepper <drepper@cygnus.com>, 1995.## This file can be copied and used freely without restrictions.  It can# be used in projects which are not available under the GNU Public License# but which still want to provide support for the GNU gettext functionality.# Please note that the actual code is *not* freely available.# serial 1AC_DEFUN(AM_LC_MESSAGES,  [if test $ac_cv_header_locale_h = yes; then    AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,      [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],       am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])    if test $am_cv_val_LC_MESSAGES = yes; then      AC_DEFINE(HAVE_LC_MESSAGES)    fi  fi])dnl From Jim Meyering.# serial 1AC_DEFUN(AM_SYS_POSIX_TERMIOS,[AC_CACHE_CHECK([POSIX termios], am_cv_sys_posix_termios,  [AC_TRY_LINK([#include <sys/types.h>#include <unistd.h>#include <termios.h>],  [/* SunOS 4.0.3 has termios.h but not the library calls.  */   tcgetattr(0, 0);],  am_cv_sys_posix_termios=yes,  am_cv_sys_posix_termios=no)])])dnl From Jim Meyering.# serial 1AC_DEFUN(AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL,[AC_REQUIRE([AM_SYS_POSIX_TERMIOS]) AC_CACHE_CHECK([whether use of TIOCGWINSZ requires sys/ioctl.h],	        am_cv_sys_tiocgwinsz_needs_sys_ioctl_h,  [am_cv_sys_tiocgwinsz_needs_sys_ioctl_h=no  gwinsz_in_termios_h=no  if test $am_cv_sys_posix_termios = yes; then    AC_EGREP_CPP([yes],    [#include <sys/types.h>#     include <termios.h>#     ifdef TIOCGWINSZ        yes#     endif    ], gwinsz_in_termios_h=yes)  fi  if test $gwinsz_in_termios_h = no; then    AC_EGREP_CPP([yes],    [#include <sys/types.h>#     include <sys/ioctl.h>#     ifdef TIOCGWINSZ        yes#     endif    ], am_cv_sys_tiocgwinsz_needs_sys_ioctl_h=yes)  fi  ])  if test $am_cv_sys_tiocgwinsz_needs_sys_ioctl_h = yes; then    AC_DEFINE(GWINSZ_IN_SYS_IOCTL,1,              [Define if TIOCGWINSZ requires sys/ioctl.h])  fi])# serial 1AC_DEFUN(AM_C_PROTOTYPES,[AC_REQUIRE([AM_PROG_CC_STDC])AC_REQUIRE([AC_PROG_CPP])AC_MSG_CHECKING([for function prototypes])if test "$am_cv_prog_cc_stdc" != no; then  AC_MSG_RESULT(yes)  AC_DEFINE(PROTOTYPES,1,[Define if compiler has function prototypes])  U= ANSI2KNR=else  AC_MSG_RESULT(no)  U=_ ANSI2KNR=./ansi2knr  # Ensure some checks needed by ansi2knr itself.  AC_HEADER_STDC  AC_CHECK_HEADERS(string.h)fiAC_SUBST(U)dnlAC_SUBST(ANSI2KNR)dnl])dnl From Jim Meyering.  Use this if you use the GNU error.[ch].dnl FIXME: Migrate into libitAC_DEFUN(AM_FUNC_ERROR_AT_LINE,[AC_CACHE_CHECK([for error_at_line], am_cv_lib_error_at_line, [AC_TRY_LINK([],[error_at_line(0, 0, "", 0, "");],              am_cv_lib_error_at_line=yes,	      am_cv_lib_error_at_line=no)]) if test $am_cv_lib_error_at_line = no; then   LIBOBJS="$LIBOBJS error.o" fi AC_SUBST(LIBOBJS)dnl])# serial 1AC_DEFUN(AM_WITH_DMALLOC,[AC_MSG_CHECKING(if malloc debugging is wanted)AC_ARG_WITH(dmalloc,[  --with-dmalloc          use dmalloc, as in                          ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz],[if test "$withval" = yes; then  AC_MSG_RESULT(yes)  AC_DEFINE(WITH_DMALLOC,1,            [Define if using the dmalloc debugging malloc package])  LIBS="$LIBS -ldmalloc"  LDFLAGS="$LDFLAGS -g"else  AC_MSG_RESULT(no)fi], [AC_MSG_RESULT(no)])])

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91视视频在线观看入口直接观看www | 久久综合狠狠综合久久综合88| 欧美性videosxxxxx| 色综合天天综合色综合av| 成人教育av在线| 成人av综合在线| 波多野结衣精品在线| 成人av资源站| 在线观看国产日韩| 色哟哟在线观看一区二区三区| 日本大香伊一区二区三区| 91蝌蚪porny九色| 欧洲一区二区三区在线| 在线区一区二视频| 欧美少妇性性性| 在线成人午夜影院| 精品国产精品一区二区夜夜嗨| 精品欧美久久久| 日本一区二区综合亚洲| 国产精品第一页第二页第三页| 亚洲欧美日韩一区二区三区在线观看 | 国产精品久久久久桃色tv| 日韩理论片中文av| 亚洲精品国产第一综合99久久| 亚洲一区二区三区视频在线 | 国产一区视频在线看| 国产成+人+日韩+欧美+亚洲| 91麻豆国产在线观看| 色综合天天综合狠狠| 在线成人小视频| 国产日韩欧美精品电影三级在线 | aaa欧美日韩| 欧美自拍丝袜亚洲| 日韩欧美区一区二| 一区免费观看视频| 日韩高清不卡一区二区三区| 国产风韵犹存在线视精品| 91一区在线观看| 欧美一二三四在线| 中文字幕日韩av资源站| 日韩精品电影在线观看| 国产精品99久久久久久似苏梦涵 | 色网综合在线观看| 欧美一区二区三区啪啪| 中文字幕成人av| 日韩不卡一区二区| 成人听书哪个软件好| 91.麻豆视频| 中文字幕亚洲成人| av电影一区二区| 日韩欧美色综合网站| 亚洲日本va午夜在线影院| 激情伊人五月天久久综合| 91网站在线观看视频| 精品国产污污免费网站入口 | 一区二区三区久久久| 国产一区二区看久久| 精品视频在线免费观看| 国产视频一区二区在线| 天天av天天翘天天综合网| 成人污视频在线观看| 欧美一级高清片在线观看| 一区二区三区在线看| 成人在线视频一区| 欧美刺激午夜性久久久久久久| 亚洲视频图片小说| 国产99一区视频免费| 日韩亚洲国产中文字幕欧美| 亚洲综合丝袜美腿| 丁香六月综合激情| 久久女同互慰一区二区三区| 亚洲国产乱码最新视频| 一本大道久久a久久精品综合| 久久午夜老司机| 免费av成人在线| 欧美午夜精品理论片a级按摩| 国产精品久久久久影院色老大| 久久99久久久久| 欧美精品三级在线观看| 亚洲精品高清视频在线观看| 成人免费视频一区| 国产午夜精品在线观看| 精品一区二区免费视频| 91精品国产综合久久久蜜臀粉嫩 | 在线观看亚洲a| 亚洲另类在线一区| 色综合婷婷久久| 国产精品视频第一区| 国产老肥熟一区二区三区| 欧美一区二区三区在线视频| 三级成人在线视频| 欧美三级韩国三级日本一级| 亚洲精品乱码久久久久久久久| av亚洲精华国产精华精华| 国产精品久久久一本精品| 国产suv精品一区二区883| 国产日韩成人精品| 国产成人亚洲综合a∨婷婷| 国产欧美视频一区二区三区| 国产精品88888| 国产精品嫩草99a| 成人高清视频在线观看| 日韩美女久久久| 91福利国产精品| 五月天视频一区| 日韩丝袜情趣美女图片| 麻豆精品久久精品色综合| 欧美大片一区二区| 狠狠色狠狠色综合日日91app| 精品欧美一区二区三区精品久久| 韩国成人在线视频| 久久蜜桃一区二区| www.欧美日韩国产在线| 一区二区成人在线| 欧美日韩在线观看一区二区| 天天免费综合色| 精品国产乱码久久久久久免费| 国产一区二区不卡在线| 欧美韩国日本综合| 91欧美激情一区二区三区成人| 亚洲精品国产一区二区精华液 | 色婷婷一区二区| 亚洲高清免费观看| 日韩一区二区免费高清| 国产精品亚洲午夜一区二区三区 | 亚洲色图制服丝袜| 91福利在线播放| 日本网站在线观看一区二区三区 | 一色屋精品亚洲香蕉网站| 欧美自拍偷拍一区| 捆绑变态av一区二区三区 | 国产乱一区二区| 国产精品护士白丝一区av| 欧美亚洲动漫精品| 国内精品自线一区二区三区视频| 国产日韩欧美精品综合| 91黄视频在线| 美腿丝袜在线亚洲一区| 中文字幕二三区不卡| 在线观看91精品国产入口| 久久成人久久爱| 亚洲精品视频自拍| 精品日韩99亚洲| aaa亚洲精品| 久草中文综合在线| 亚洲伦理在线免费看| 精品国产一区a| 日本久久精品电影| 国模少妇一区二区三区| 亚洲精品国产无天堂网2021| 精品国产91乱码一区二区三区| 99久久婷婷国产综合精品电影| 日本sm残虐另类| 国产精品福利电影一区二区三区四区| 在线观看91av| 99国产精品久| 国产原创一区二区三区| 五月天欧美精品| 《视频一区视频二区| 日韩一二在线观看| 色婷婷精品久久二区二区蜜臂av| 久久成人18免费观看| 亚洲成在人线免费| 中文字幕永久在线不卡| 日韩欧美一二区| 欧美午夜理伦三级在线观看| 国产91精品一区二区麻豆亚洲| 日本美女视频一区二区| 亚洲午夜一区二区| 中文字幕一区二区三区乱码在线 | 亚洲精品精品亚洲| 国产日产欧美一区二区视频| 4438x亚洲最大成人网| 日本韩国精品一区二区在线观看| 国产一区久久久| 蜜臀a∨国产成人精品| 亚洲成人动漫精品| 日韩美女视频一区二区| 中文字幕 久热精品 视频在线| 欧美成人官网二区| 欧美一区二区免费视频| 欧美午夜精品久久久| 91丨porny丨首页| 成人av网站在线| 国产成人精品亚洲午夜麻豆| 蜜桃精品视频在线观看| 日本美女一区二区| 日日夜夜精品免费视频| 亚洲第一久久影院| 亚洲一区二区三区视频在线播放| 亚洲色欲色欲www| 最好看的中文字幕久久| 亚洲欧洲精品一区二区三区| 欧美韩国日本不卡| 中文字幕成人网| 国产精品乱子久久久久| 欧美国产日韩亚洲一区| 中文字幕va一区二区三区| 欧美国产精品专区| 国产精品成人午夜|