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

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

?? aclocal.m4

?? ncurses-5.4 需要的就來下把 一定會有用的哦
?? M4
?? 第 1 頁 / 共 5 頁
字號:
dnl***************************************************************************dnl Copyright (c) 1998-2003,2004 Free Software Foundation, Inc.              *dnl                                                                          *dnl Permission is hereby granted, free of charge, to any person obtaining a  *dnl copy of this software and associated documentation files (the            *dnl "Software"), to deal in the Software without restriction, including      *dnl without limitation the rights to use, copy, modify, merge, publish,      *dnl distribute, distribute with modifications, sublicense, and/or sell       *dnl copies of the Software, and to permit persons to whom the Software is    *dnl furnished to do so, subject to the following conditions:                 *dnl                                                                          *dnl The above copyright notice and this permission notice shall be included  *dnl in all copies or substantial portions of the Software.                   *dnl                                                                          *dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *dnl IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *dnl DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *dnl OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *dnl THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *dnl                                                                          *dnl Except as contained in this notice, the name(s) of the above copyright   *dnl holders shall not be used in advertising or otherwise to promote the     *dnl sale, use or other dealings in this Software without prior written       *dnl authorization.                                                           *dnl***************************************************************************dnldnl Author: Thomas E. Dickey 1995-2003dnldnl $Id: aclocal.m4,v 1.333 2004/01/30 20:59:56 tom Exp $dnl Macros used in NCURSES auto-configuration script.dnldnl See http://invisible-island.net/autoconf/ for additional information.dnldnl ---------------------------------------------------------------------------dnl ---------------------------------------------------------------------------dnl CF_ADA_INCLUDE_DIRS version: 4 updated: 2002/12/01 00:12:15dnl -------------------dnl Construct the list of include-options for the C programs in the Ada95dnl binding.AC_DEFUN([CF_ADA_INCLUDE_DIRS],[ACPPFLAGS="-I. -I../../include $ACPPFLAGS"if test "$srcdir" != "."; then	ACPPFLAGS="-I\$(srcdir)/../../include $ACPPFLAGS"fiif test "$GCC" != yes; then	ACPPFLAGS="$ACPPFLAGS -I\$(includedir)"elif test "$includedir" != "/usr/include"; then	if test "$includedir" = '${prefix}/include' ; then		if test $prefix != /usr ; then			ACPPFLAGS="$ACPPFLAGS -I\$(includedir)"		fi	else		ACPPFLAGS="$ACPPFLAGS -I\$(includedir)"	fifiAC_SUBST(ACPPFLAGS)])dnldnl ---------------------------------------------------------------------------dnl CF_ADD_CFLAGS version: 5 updated: 2002/12/01 00:12:15dnl -------------dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGSdnl The second parameter if given makes this macro verbose.AC_DEFUN([CF_ADD_CFLAGS],[cf_new_cflags=cf_new_cppflags=for cf_add_cflags in $1do	case $cf_add_cflags in #(vi	-undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi		case "$CPPFLAGS" in		*$cf_add_cflags) #(vi			;;		*) #(vi			cf_new_cppflags="$cf_new_cppflags $cf_add_cflags"			;;		esac		;;	*)		cf_new_cflags="$cf_new_cflags $cf_add_cflags"		;;	esacdoneif test -n "$cf_new_cflags" ; then	ifelse($2,,,[CF_VERBOSE(add to \$CFLAGS $cf_new_cflags)])	CFLAGS="$CFLAGS $cf_new_cflags"fiif test -n "$cf_new_cppflags" ; then	ifelse($2,,,[CF_VERBOSE(add to \$CPPFLAGS $cf_new_cppflags)])	CPPFLAGS="$cf_new_cppflags $CPPFLAGS"fi])dnldnl ---------------------------------------------------------------------------dnl CF_ANSI_CC_CHECK version: 9 updated: 2001/12/30 17:53:34dnl ----------------dnl This is adapted from the macros 'fp_PROG_CC_STDC' and 'fp_C_PROTOTYPES'dnl in the sharutils 4.2 distribution.AC_DEFUN([CF_ANSI_CC_CHECK],[AC_CACHE_CHECK(for ${CC-cc} option to accept ANSI C, cf_cv_ansi_cc,[cf_cv_ansi_cc=nocf_save_CFLAGS="$CFLAGS"cf_save_CPPFLAGS="$CPPFLAGS"# Don't try gcc -ansi; that turns off useful extensions and# breaks some systems' header files.# AIX			-qlanglvl=ansi# Ultrix and OSF/1	-std1# HP-UX			-Aa -D_HPUX_SOURCE# SVR4			-Xc# UnixWare 1.2		(cannot use -Xc, since ANSI/POSIX clashes)for cf_arg in "-DCC_HAS_PROTOS" \	"" \	-qlanglvl=ansi \	-std1 \	-Ae \	"-Aa -D_HPUX_SOURCE" \	-Xcdo	CF_ADD_CFLAGS($cf_arg)	AC_TRY_COMPILE([#ifndef CC_HAS_PROTOS#if !defined(__STDC__) || (__STDC__ != 1)choke me#endif#endif],[	int test (int i, double x);	struct s1 {int (*f) (int a);};	struct s2 {int (*f) (double a);};],	[cf_cv_ansi_cc="$cf_arg"; break])doneCFLAGS="$cf_save_CFLAGS"CPPFLAGS="$cf_save_CPPFLAGS"])if test "$cf_cv_ansi_cc" != "no"; thenif test ".$cf_cv_ansi_cc" != ".-DCC_HAS_PROTOS"; then	CF_ADD_CFLAGS($cf_cv_ansi_cc)else	AC_DEFINE(CC_HAS_PROTOS)fifi])dnldnl ---------------------------------------------------------------------------dnl CF_ANSI_CC_REQD version: 3 updated: 1997/09/06 13:40:44dnl ---------------dnl For programs that must use an ANSI compiler, obtain compiler options thatdnl will make it recognize prototypes.  We'll do preprocessor checks in otherdnl macros, since tools such as unproto can fake prototypes, but only part ofdnl the preprocessor.AC_DEFUN([CF_ANSI_CC_REQD],[AC_REQUIRE([CF_ANSI_CC_CHECK])if test "$cf_cv_ansi_cc" = "no"; then	AC_ERROR([Your compiler does not appear to recognize prototypes.You have the following choices:	a. adjust your compiler options	b. get an up-to-date compiler	c. use a wrapper such as unproto])fi])dnldnl ---------------------------------------------------------------------------dnl CF_BOOL_DECL version: 8 updated: 2004/01/30 15:51:18dnl ------------dnl Test if 'bool' is a builtin type in the configured C++ compiler.  Somednl older compilers (e.g., gcc 2.5.8) don't support 'bool' directly; gccdnl 2.6.3 does, in anticipation of the ANSI C++ standard.dnldnl Treat the configuration-variable specially here, since we're directlydnl substituting its value (i.e., 1/0).dnldnl $1 is the shell variable to store the result in, if not $cv_cv_builtin_boolAC_DEFUN([CF_BOOL_DECL],[AC_MSG_CHECKING(if we should include stdbool.h)AC_CACHE_VAL(cf_cv_header_stdbool_h,[	AC_TRY_COMPILE([],[bool foo = false],		[cf_cv_header_stdbool_h=0],		[AC_TRY_COMPILE([#ifndef __BEOS__#include <stdbool.h>#endif],[bool foo = false],			[cf_cv_header_stdbool_h=1],			[cf_cv_header_stdbool_h=0])])])if test "$cf_cv_header_stdbool_h" = 1then	AC_MSG_RESULT(yes)else	AC_MSG_RESULT(no)fiAC_MSG_CHECKING([for builtin bool type])AC_CACHE_VAL(ifelse($1,,cf_cv_builtin_bool,[$1]),[	AC_TRY_COMPILE([#include <stdio.h>#include <sys/types.h>],[bool x = false],		[ifelse($1,,cf_cv_builtin_bool,[$1])=1],		[ifelse($1,,cf_cv_builtin_bool,[$1])=0])	])if test "$ifelse($1,,cf_cv_builtin_bool,[$1])" = 1then	AC_MSG_RESULT(yes)else	AC_MSG_RESULT(no)fi])dnldnl ---------------------------------------------------------------------------dnl CF_BOOL_SIZE version: 10 updated: 2002/02/23 20:38:31dnl ------------dnl Test for the size of 'bool' in the configured C++ compiler (e.g., a type).dnl Don't bother looking for bool.h, since it's been deprecated.dnldnl If the current compiler is C rather than C++, we get the bool definitiondnl from <stdbool.h>.AC_DEFUN([CF_BOOL_SIZE],[AC_MSG_CHECKING([for size of bool])AC_CACHE_VAL(cf_cv_type_of_bool,[	rm -f cf_test.out	AC_TRY_RUN([#include <stdlib.h>#include <stdio.h>#if defined(__cplusplus)#ifdef HAVE_GXX_BUILTIN_H#include <g++/builtin.h>#elif HAVE_GPP_BUILTIN_H#include <gpp/builtin.h>#elif HAVE_BUILTIN_H#include <builtin.h>#endif#else#if $cf_cv_header_stdbool_h#include <stdbool.h>#endif#endifmain(){	FILE *fp = fopen("cf_test.out", "w");	if (fp != 0) {		bool x = true;		if ((bool)(-x) >= 0)			fputs("unsigned ", fp);		if (sizeof(x) == sizeof(int))       fputs("int",  fp);		else if (sizeof(x) == sizeof(char)) fputs("char", fp);		else if (sizeof(x) == sizeof(short))fputs("short",fp);		else if (sizeof(x) == sizeof(long)) fputs("long", fp);		fclose(fp);	}	exit(0);}		],		[cf_cv_type_of_bool=`cat cf_test.out`		 if test -z "$cf_cv_type_of_bool"; then		   cf_cv_type_of_bool=unknown		 fi],		[cf_cv_type_of_bool=unknown],		[cf_cv_type_of_bool=unknown])	])	rm -f cf_test.outAC_MSG_RESULT($cf_cv_type_of_bool)if test "$cf_cv_type_of_bool" = unknown ; then	case .$NCURSES_BOOL in #(vi	.auto|.) NCURSES_BOOL=unsigned;;	esac	AC_MSG_WARN(Assuming $NCURSES_BOOL for type of bool)	cf_cv_type_of_bool=$NCURSES_BOOLfi])dnldnl ---------------------------------------------------------------------------dnl CF_CFG_DEFAULTS version: 6 updated: 2003/07/12 15:15:19dnl ---------------dnl Determine the default configuration into which we'll install ncurses.  Thisdnl can be overridden by the user's command-line options.  There's two items todnl look for:dnl	1. the prefix (e.g., /usr)dnl	2. the header files (e.g., /usr/include/ncurses)dnl We'll look for a previous installation of ncurses and use the same defaults.dnldnl We don't use AC_PREFIX_DEFAULT, because it gets evaluated too soon, anddnl we don't use AC_PREFIX_PROGRAM, because we cannot distinguish ncurses'sdnl programs from a vendor's.AC_DEFUN([CF_CFG_DEFAULTS],[AC_MSG_CHECKING(for prefix)if test "x$prefix" = "xNONE" ; then	case "$cf_cv_system_name" in		# non-vendor systems don't have a conflict	openbsd*|netbsd*|freebsd*|linux*|cygwin*|k*bsd*-gnu)		prefix=/usr		;;	*)	prefix=$ac_default_prefix		;;	esacfiAC_MSG_RESULT($prefix)if test "x$prefix" = "xNONE" ; thenAC_MSG_CHECKING(for default include-directory)test -n "$verbose" && echo 1>&AC_FD_MSGfor cf_symbol in \	$includedir \	$includedir/ncurses \	$prefix/include \	$prefix/include/ncurses \	/usr/local/include \	/usr/local/include/ncurses \	/usr/include \	/usr/include/ncursesdo	cf_dir=`eval echo $cf_symbol`	if test -f $cf_dir/curses.h ; then	if ( fgrep NCURSES_VERSION $cf_dir/curses.h 2>&1 >/dev/null ) ; then		includedir="$cf_symbol"		test -n "$verbose"  && echo $ac_n "	found " 1>&AC_FD_MSG		break	fi	fi	test -n "$verbose"  && echo "	tested $cf_dir" 1>&AC_FD_MSGdoneAC_MSG_RESULT($includedir)fi])dnldnl ---------------------------------------------------------------------------dnl CF_CGETENT version: 3 updated: 2000/08/12 23:18:52dnl ----------dnl Check if the terminal-capability database functions are available.  If not,dnl ncurses has a much-reduced version.AC_DEFUN([CF_CGETENT],[AC_MSG_CHECKING(for terminal-capability database functions)AC_CACHE_VAL(cf_cv_cgetent,[AC_TRY_LINK([#include <stdlib.h>],[	char temp[128];	char *buf = temp;	char *db_array = temp;	cgetent(&buf, /* int *, */ &db_array, "vt100");	cgetcap(buf, "tc", '=');	cgetmatch(buf, "tc");	],	[cf_cv_cgetent=yes],	[cf_cv_cgetent=no])])AC_MSG_RESULT($cf_cv_cgetent)test "$cf_cv_cgetent" = yes && AC_DEFINE(HAVE_BSD_CGETENT)])dnldnl ---------------------------------------------------------------------------dnl CF_CHECK_CACHE version: 9 updated: 2004/01/30 15:59:13dnl --------------dnl Check if we're accidentally using a cache from a different machine.dnl Derive the system name, as a check for reusing the autoconf cache.dnldnl If we've packaged config.guess and config.sub, run that (since it does adnl better job than uname).  Normally we'll use AC_CANONICAL_HOST, but allowdnl an extra parameter that we may override, e.g., for AC_CANONICAL_SYSTEMdnl which is useful in cross-compiles.dnldnl Note: we would use $ac_config_sub, but that is one of the places wherednl autoconf 2.5x broke compatibility with autoconf 2.13AC_DEFUN([CF_CHECK_CACHE],[if test -f $srcdir/config.guess ; then	ifelse([$1],,[AC_CANONICAL_HOST],[$1])	system_name="$host_os"else	system_name="`(uname -s -r) 2>/dev/null`"	if test -z "$system_name" ; then		system_name="`(hostname) 2>/dev/null`"	fifitest -n "$system_name" && AC_DEFINE_UNQUOTED(SYSTEM_NAME,"$system_name")AC_CACHE_VAL(cf_cv_system_name,[cf_cv_system_name="$system_name"])test -z "$system_name" && system_name="$cf_cv_system_name"test -n "$cf_cv_system_name" && AC_MSG_RESULT(Configuring for $cf_cv_system_name)if test ".$system_name" != ".$cf_cv_system_name" ; then	AC_MSG_RESULT(Cached system name ($system_name) does not agree with actual ($cf_cv_system_name))	AC_ERROR("Please remove config.cache and try again.")fi])dnldnl ---------------------------------------------------------------------------dnl CF_CHECK_ERRNO version: 9 updated: 2001/12/30 18:03:23dnl --------------dnl Check for data that is usually declared in <stdio.h> or <errno.h>, e.g.,dnl the 'errno' variable.  Define a DECL_xxx symbol if we must declare itdnl ourselves.dnldnl $1 = the name to checkAC_DEFUN([CF_CHECK_ERRNO],[AC_CACHE_CHECK(if external $1 is declared, cf_cv_dcl_$1,[    AC_TRY_COMPILE([#ifdef HAVE_STDLIB_H#include <stdlib.h>#endif#include <stdio.h>#include <sys/types.h>#include <errno.h> ],    [long x = (long) $1],    [cf_cv_dcl_$1=yes],    [cf_cv_dcl_$1=no])])if test "$cf_cv_dcl_$1" = no ; then    CF_UPPER(cf_result,decl_$1)    AC_DEFINE_UNQUOTED($cf_result)fi# It's possible (for near-UNIX clones) that the data doesn't existCF_CHECK_EXTERN_DATA($1,int)])dnldnl ---------------------------------------------------------------------------dnl CF_CHECK_EXTERN_DATA version: 3 updated: 2001/12/30 18:03:23dnl --------------------dnl Check for existence of external data in the current set of libraries.  Ifdnl we can modify it, it's real enough.dnl $1 = the name to checkdnl $2 = its typeAC_DEFUN([CF_CHECK_EXTERN_DATA],[AC_CACHE_CHECK(if external $1 exists, cf_cv_have_$1,[    AC_TRY_LINK([#undef $1extern $2 $1;],    [$1 = 2],    [cf_cv_have_$1=yes],    [cf_cv_have_$1=no])])if test "$cf_cv_have_$1" = yes ; then    CF_UPPER(cf_result,have_$1)    AC_DEFINE_UNQUOTED($cf_result)fi])dnldnl ---------------------------------------------------------------------------dnl CF_CPP_PARAM_INIT version: 4 updated: 2001/04/07 22:31:18dnl -----------------dnl Check if the C++ compiler accepts duplicate parameter initialization.  Thisdnl is a late feature for the standard and is not in some recent compilersdnl (1999/9/11).AC_DEFUN([CF_CPP_PARAM_INIT],[if test -n "$CXX"; thenAC_CACHE_CHECK(if $CXX accepts parameter initialization,cf_cv_cpp_param_init,[	AC_LANG_SAVE	AC_LANG_CPLUSPLUS	AC_TRY_RUN([class TEST {private:	int value;public:	TEST(int x = 1);	~TEST();

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
老司机午夜精品99久久| 欧美精品一区二区三区蜜桃视频 | 国内精品久久久久影院薰衣草| 亚洲最大的成人av| 亚洲综合区在线| 亚洲第一会所有码转帖| 午夜视频一区二区三区| 亚洲bt欧美bt精品| 日韩激情一二三区| 美国毛片一区二区三区| 七七婷婷婷婷精品国产| 国模套图日韩精品一区二区 | 不卡视频免费播放| 成人app下载| 欧美午夜片在线看| 欧美一区二区观看视频| 精品国产一二三| 中文字幕视频一区二区三区久| 亚洲欧美经典视频| 日韩av高清在线观看| 九九精品视频在线看| 成人免费毛片a| 在线亚洲免费视频| 欧美mv日韩mv| 亚洲欧美另类久久久精品| 亚洲成人你懂的| 国产精品自在在线| 91蜜桃在线观看| 欧美久久久久久久久中文字幕| 欧美一区二区观看视频| 欧美激情一区二区三区在线| 国产精品美女一区二区| 亚洲午夜电影网| 国产一区视频网站| 色天使色偷偷av一区二区| 日韩欧美视频一区| 综合激情成人伊人| 久久99精品久久只有精品| aaa亚洲精品一二三区| 555夜色666亚洲国产免| 国产精品成人免费精品自在线观看 | 依依成人精品视频| 国产一区二区三区久久久 | 不卡视频一二三四| 日韩欧美一卡二卡| 亚洲一区在线看| 成人免费观看男女羞羞视频| 制服丝袜亚洲播放| 一区二区三区欧美视频| 成人av在线播放网站| 欧美成人欧美edvon| 亚洲国产成人91porn| 99精品久久久久久| 国产午夜精品久久久久久免费视 | 国产成人午夜视频| 日韩视频永久免费| 天堂av在线一区| 在线视频综合导航| 亚洲丰满少妇videoshd| 成人午夜视频在线观看| 精品国产乱码久久久久久1区2区 | 激情另类小说区图片区视频区| 欧美三级欧美一级| 一区二区三区精品久久久| www.av精品| 国产精品不卡视频| 99久久婷婷国产综合精品电影| 精品va天堂亚洲国产| 免费高清成人在线| 日韩欧美久久久| 免费人成在线不卡| 欧美一区二区精品久久911| 日日摸夜夜添夜夜添亚洲女人| 欧美熟乱第一页| 亚洲成a人片在线观看中文| 欧美天堂一区二区三区| 亚洲影视在线播放| 欧美色综合天天久久综合精品| 亚洲日本在线视频观看| 色婷婷综合五月| 亚洲123区在线观看| 欧美电影一区二区| 蜜桃久久av一区| 国产亚洲欧美在线| 99久久精品国产麻豆演员表| 136国产福利精品导航| 在线观看欧美黄色| 日本美女视频一区二区| 精品福利一区二区三区免费视频| 国产一区二区三区在线观看精品| 久久美女艺术照精彩视频福利播放| 国产一区久久久| 国产精品人成在线观看免费| 色综合久久中文综合久久97| 一区二区三区在线观看网站| 欧美日韩成人综合| 国产在线视视频有精品| 国产精品免费aⅴ片在线观看| 99久久精品免费看| 亚洲mv在线观看| 久久久国产午夜精品| a级精品国产片在线观看| 自拍偷拍欧美精品| 欧美一区二区三区不卡| 国产91丝袜在线播放| 亚洲韩国一区二区三区| 精品日韩在线观看| 色婷婷综合激情| 国产一区二区h| 亚洲精品自拍动漫在线| 精品久久人人做人人爰| 91玉足脚交白嫩脚丫在线播放| 天天操天天综合网| 中文字幕一区不卡| 精品少妇一区二区三区免费观看 | 久久不见久久见中文字幕免费| 中文字幕精品三区| 欧美精品九九99久久| 大尺度一区二区| 美女免费视频一区二区| 伊人婷婷欧美激情| 精品免费国产二区三区 | 日韩美女一区二区三区| 97久久精品人人做人人爽| 免费观看在线综合| 一区二区三区在线播| 2024国产精品| 91精品国产色综合久久ai换脸| 色香蕉成人二区免费| 国产剧情在线观看一区二区| 日日夜夜免费精品视频| 日韩一区欧美一区| 国产欧美日韩在线看| 26uuu亚洲综合色| 欧美一级欧美一级在线播放| 色婷婷综合久久久久中文一区二区| 国产精品自拍三区| 国产老肥熟一区二区三区| 青青草国产精品97视觉盛宴| 亚洲一区二区三区美女| 亚洲免费观看高清完整版在线观看熊| 久久精品亚洲国产奇米99| 日韩欧美专区在线| 欧美一卡二卡三卡| 91精品国产综合久久久久| 欧美性猛片xxxx免费看久爱 | 天堂精品中文字幕在线| 一区二区三区资源| 亚洲免费观看高清完整版在线观看熊 | 国产乱色国产精品免费视频| 久久av资源站| 国产专区综合网| 国产成a人亚洲精| 不卡视频免费播放| 色综合久久久网| 91国产成人在线| 欧美精品色综合| 日韩欧美色电影| 国产色综合一区| 亚洲国产精品ⅴa在线观看| 日本一区二区三区四区| 亚洲欧洲成人av每日更新| 亚洲欧美另类综合偷拍| 亚洲精品国产高清久久伦理二区| 亚洲精品免费播放| 日韩avvvv在线播放| 韩国av一区二区| 91亚洲国产成人精品一区二三| 色婷婷久久久亚洲一区二区三区| 欧美三级在线看| 日韩小视频在线观看专区| 久久久久久免费毛片精品| 国产精品国产三级国产三级人妇| 亚洲欧美日韩在线不卡| 污片在线观看一区二区| 久色婷婷小香蕉久久| 丁香六月综合激情| 在线观看日韩精品| 欧美成人三级在线| 最近日韩中文字幕| 蜜臀av性久久久久蜜臀aⅴ| 福利电影一区二区| 欧美最新大片在线看| 精品国产99国产精品| 国产精品另类一区| 奇米888四色在线精品| av一区二区三区| 日韩欧美久久久| 亚洲欧美日韩一区二区| 日韩精品色哟哟| 91亚洲精品久久久蜜桃网站 | 99久久99久久精品免费观看| 欧美日韩午夜影院| 精品欧美一区二区三区精品久久| 国产精品理论在线观看| 免费观看在线综合| 欧美在线|欧美| 亚洲国产精品av| 国产在线精品一区二区| 欧美视频一区二|