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

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

?? configure

?? JPEG source code converts the image into compressed format
??
?? 第 1 頁 / 共 5 頁
字號:
  cat conftest.$ac_ext >&5
fi
rm -f conftest*
fi
rm -f conftest*
fi
rm -f conftest*
echo "$ac_t""$ijg_cv_inline" 1>&6
cat >> confdefs.h <<EOF
#define INLINE $ijg_cv_inline
EOF

echo $ac_n "checking for broken incomplete types""... $ac_c" 1>&6
echo "configure:1224: checking for broken incomplete types" >&5
cat > conftest.$ac_ext <<EOF
#line 1226 "configure"
#include "confdefs.h"
 typedef struct undefined_structure * undef_struct_ptr; 
int main() {

; return 0; }
EOF
if { (eval echo configure:1233: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  rm -rf conftest*
  echo "$ac_t""ok" 1>&6
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  echo "$ac_t""broken" 1>&6
cat >> confdefs.h <<\EOF
#define INCOMPLETE_TYPES_BROKEN 
EOF

fi
rm -f conftest*
echo $ac_n "checking for short external names""... $ac_c" 1>&6
echo "configure:1248: checking for short external names" >&5
cat > conftest.$ac_ext <<EOF
#line 1250 "configure"
#include "confdefs.h"

int possibly_duplicate_function () { return 0; }
int possibly_dupli_function () { return 1; }

int main() {
 
; return 0; }
EOF
if { (eval echo configure:1260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  rm -rf conftest*
  echo "$ac_t""ok" 1>&6
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  echo "$ac_t""short" 1>&6
cat >> confdefs.h <<\EOF
#define NEED_SHORT_EXTERNAL_NAMES 
EOF

fi
rm -f conftest*
echo $ac_n "checking to see if char is signed""... $ac_c" 1>&6
echo "configure:1275: checking to see if char is signed" >&5
if test "$cross_compiling" = yes; then
  echo Assuming that char is signed on target machine.
echo If it is unsigned, this will be a little bit inefficient.

else
  cat > conftest.$ac_ext <<EOF
#line 1282 "configure"
#include "confdefs.h"

#ifdef HAVE_PROTOTYPES
int is_char_signed (int arg)
#else
int is_char_signed (arg)
     int arg;
#endif
{
  if (arg == 189) {		/* expected result for unsigned char */
    return 0;			/* type char is unsigned */
  }
  else if (arg != -67) {	/* expected result for signed char */
    printf("Hmm, it seems 'char' is not eight bits wide on your machine.\n");
    printf("I fear the JPEG software will not work at all.\n\n");
  }
  return 1;			/* assume char is signed otherwise */
}
char signed_char_check = (char) (-67);
main() {
  exit(is_char_signed((int) signed_char_check));
}
EOF
if { (eval echo configure:1306: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
then
  echo "$ac_t""no" 1>&6
cat >> confdefs.h <<\EOF
#define CHAR_IS_UNSIGNED 
EOF

else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
  echo "$ac_t""yes" 1>&6
fi
rm -fr conftest*
fi

echo $ac_n "checking to see if right shift is signed""... $ac_c" 1>&6
echo "configure:1323: checking to see if right shift is signed" >&5
if test "$cross_compiling" = yes; then
  echo "$ac_t""Assuming that right shift is signed on target machine." 1>&6
else
  cat > conftest.$ac_ext <<EOF
#line 1328 "configure"
#include "confdefs.h"

#ifdef HAVE_PROTOTYPES
int is_shifting_signed (long arg)
#else
int is_shifting_signed (arg)
     long arg;
#endif
/* See whether right-shift on a long is signed or not. */
{
  long res = arg >> 4;

  if (res == -0x7F7E80CL) {	/* expected result for signed shift */
    return 1;			/* right shift is signed */
  }
  /* see if unsigned-shift hack will fix it. */
  /* we can't just test exact value since it depends on width of long... */
  res |= (~0L) << (32-4);
  if (res == -0x7F7E80CL) {	/* expected result now? */
    return 0;			/* right shift is unsigned */
  }
  printf("Right shift isn't acting as I expect it to.\n");
  printf("I fear the JPEG software will not work at all.\n\n");
  return 0;			/* try it with unsigned anyway */
}
main() {
  exit(is_shifting_signed(-0x7F7E80B1L));
}
EOF
if { (eval echo configure:1358: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
then
  echo "$ac_t""no" 1>&6
cat >> confdefs.h <<\EOF
#define RIGHT_SHIFT_IS_UNSIGNED 
EOF

else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
  echo "$ac_t""yes" 1>&6
fi
rm -fr conftest*
fi

echo $ac_n "checking to see if fopen accepts b spec""... $ac_c" 1>&6
echo "configure:1375: checking to see if fopen accepts b spec" >&5
if test "$cross_compiling" = yes; then
  echo "$ac_t""Assuming that it does." 1>&6
else
  cat > conftest.$ac_ext <<EOF
#line 1380 "configure"
#include "confdefs.h"

#include <stdio.h>
main() {
  if (fopen("conftestdata", "wb") != NULL)
    exit(0);
  exit(1);
}
EOF
if { (eval echo configure:1390: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
then
  echo "$ac_t""yes" 1>&6
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
  echo "$ac_t""no" 1>&6
cat >> confdefs.h <<\EOF
#define DONT_USE_B_MODE 
EOF

fi
rm -fr conftest*
fi

ac_aux_dir=
for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
  if test -f $ac_dir/install-sh; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/install-sh -c"
    break
  elif test -f $ac_dir/install.sh; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/install.sh -c"
    break
  fi
done
if test -z "$ac_aux_dir"; then
  { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
fi
ac_config_guess=$ac_aux_dir/config.guess
ac_config_sub=$ac_aux_dir/config.sub
ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.

# Find a good install program.  We prefer a C program (faster),
# so one script is as good as another.  But avoid the broken or
# incompatible versions:
# SysV /etc/install, /usr/sbin/install
# SunOS /usr/etc/install
# IRIX /sbin/install
# AIX /bin/install
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
# ./install, which can be erroneously created by make from ./install.sh.
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
echo "configure:1436: checking for a BSD compatible install" >&5
if test -z "$INSTALL"; then
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
    IFS="${IFS= 	}"; ac_save_IFS="$IFS"; IFS="${IFS}:"
  for ac_dir in $PATH; do
    # Account for people who put trailing slashes in PATH elements.
    case "$ac_dir/" in
    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
    *)
      # OSF1 and SCO ODT 3.0 have their own names for install.
      for ac_prog in ginstall installbsd scoinst install; do
        if test -f $ac_dir/$ac_prog; then
	  if test $ac_prog = install &&
            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
	    # AIX install.  It has an incompatible calling convention.
	    # OSF/1 installbsd also uses dspmsg, but is usable.
	    :
	  else
	    ac_cv_path_install="$ac_dir/$ac_prog -c"
	    break 2
	  fi
	fi
      done
      ;;
    esac
  done
  IFS="$ac_save_IFS"

fi
  if test "${ac_cv_path_install+set}" = set; then
    INSTALL="$ac_cv_path_install"
  else
    # As a last resort, use the slow shell script.  We don't cache a
    # path for INSTALL within a source directory, because that will
    # break other packages using the cache if that directory is
    # removed, or if the path is relative.
    INSTALL="$ac_install_sh"
  fi
fi
echo "$ac_t""$INSTALL" 1>&6

# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'

test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'

# Extract the first word of "ranlib", so it can be a program name with args.
set dummy ranlib; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:1488: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$RANLIB"; then
  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
else
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  for ac_dir in $PATH; do
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_RANLIB="ranlib"
      break
    fi
  done
  IFS="$ac_save_ifs"
  test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
fi
fi
RANLIB="$ac_cv_prog_RANLIB"
if test -n "$RANLIB"; then
  echo "$ac_t""$RANLIB" 1>&6
else
  echo "$ac_t""no" 1>&6
fi


# Decide whether to use libtool,
# and if so whether to build shared, static, or both flavors of library.
LTSHARED="no"
# Check whether --enable-shared or --disable-shared was given.
if test "${enable_shared+set}" = set; then
  enableval="$enable_shared"
  LTSHARED="$enableval"
fi

LTSTATIC="no"
# Check whether --enable-static or --disable-static was given.
if test "${enable_static+set}" = set; then
  enableval="$enable_static"
  LTSTATIC="$enableval"
fi

if test "x$LTSHARED" != xno  -o  "x$LTSTATIC" != xno; then
  USELIBTOOL="yes"
  LIBTOOL="./libtool"
  O="lo"
  A="la"
  LN='$(LIBTOOL) --mode=link $(CC)'
  INSTALL_LIB='$(LIBTOOL) --mode=install ${INSTALL}'
  INSTALL_PROGRAM="\$(LIBTOOL) --mode=install $INSTALL_PROGRAM"
else
  USELIBTOOL="no"
  LIBTOOL=""
  O="o"
  A="a"
  LN='$(CC)'
  INSTALL_LIB="$INSTALL_DATA"
fi






# Configure libtool if needed.
if test $USELIBTOOL = yes; then
  disable_shared=
  disable_static=
  if test "x$LTSHARED" = xno; then
    disable_shared="--disable-shared"
  fi
  if test "x$LTSTATIC" = xno; then
    disable_static="--disable-static"
  fi
  $srcdir/ltconfig $disable_shared $disable_static $srcdir/ltmain.sh
fi

# Select memory manager depending on user input.
# If no "-enable-maxmem", use jmemnobs
MEMORYMGR='jmemnobs.$(O)'
MAXMEM="no"
# Check whether --enable-maxmem or --disable-maxmem was given.
if test "${enable_maxmem+set}" = set; then
  enableval="$enable_maxmem"
  MAXMEM="$enableval"
fi

# support --with-maxmem for backwards compatibility with IJG V5.
# Check whether --with-maxmem or --without-maxmem was given.
if test "${with_maxmem+set}" = set; then
  withval="$with_maxmem"
  MAXMEM="$withval"
fi

if test "x$MAXMEM" = xyes; then
  MAXMEM=1
fi
if test "x$MAXMEM" != xno; then
  if test -n "`echo $MAXMEM | sed 's/[0-9]//g'`"; then
    { echo "configure: error: non-numeric argument to --enable-maxmem" 1>&2; exit 1; }
  fi
  DEFAULTMAXMEM=`expr $MAXMEM \* 1048576`
cat >> confdefs.h <<EOF
#define DEFAULT_MAX_MEM ${DEFAULTMAXMEM}
EOF

echo $ac_n "checking for 'tmpfile()'""... $ac_c" 1>&6
echo "configure:1596: checking for 'tmpfile()'" >&5
cat > conftest.$ac_ext <<EOF
#line 1598 "configure"
#include "confdefs.h"
#include <stdio.h>
int main() {
 FILE * tfile = tmpfile(); 
; return 0; }
EOF
if { (eval echo configure:1605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  rm -rf conftest*
  echo "$ac_t""yes" 1>&6
MEMORYMGR='jmemansi.$(O)'
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  echo "$ac_t""no" 1>&6

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩福利视频网| 成人福利电影精品一区二区在线观看| 亚洲乱码国产乱码精品精小说 | 成人欧美一区二区三区小说 | 亚洲曰韩产成在线| 成人欧美一区二区三区白人| 欧美激情一区二区在线| 久久久久久久电影| 国产精品久久一卡二卡| 国产欧美一二三区| 国产精品久久久久aaaa| 国产高清亚洲一区| 丰满少妇在线播放bd日韩电影| 国产精品主播直播| 成人动漫视频在线| 日本韩国一区二区三区视频| 色8久久人人97超碰香蕉987| 欧美日韩精品欧美日韩精品一综合| 欧美性高清videossexo| 91精品国产综合久久久久| 日韩一区二区三区电影在线观看 | 欧美自拍偷拍午夜视频| 欧美日韩中文另类| 欧美一区二区在线播放| 久久综合色综合88| 国产精品传媒入口麻豆| 一区二区三区高清在线| 青青草原综合久久大伊人精品优势| 麻豆一区二区99久久久久| 国产激情偷乱视频一区二区三区| www.欧美.com| 欧美日韩你懂得| 久久欧美一区二区| 亚洲欧美一区二区三区国产精品| 午夜一区二区三区在线观看| 青青草伊人久久| 成人深夜在线观看| 欧美日韩国产首页在线观看| 精品欧美一区二区在线观看| 国产精品美女www爽爽爽| 亚洲综合网站在线观看| 国产在线麻豆精品观看| 在线视频你懂得一区二区三区| 在线不卡一区二区| 欧美激情在线看| 亚洲电影视频在线| 国产成人av自拍| 欧美日韩的一区二区| 国产视频一区不卡| 日韩高清在线观看| 91丝袜美女网| 日韩美女一区二区三区四区| 一区精品在线播放| 久久er99精品| 欧美性受极品xxxx喷水| 久久男人中文字幕资源站| 一区二区三区在线视频免费| 国产在线精品不卡| 欧美精品丝袜中出| 国产精品短视频| 九色综合狠狠综合久久| 91福利区一区二区三区| 国产欧美日本一区视频| 肉色丝袜一区二区| 欧洲精品一区二区三区在线观看| 久久99精品国产麻豆不卡| 色国产精品一区在线观看| 久久这里只有精品首页| 日韩国产欧美三级| 一本久道久久综合中文字幕| 国产亚洲欧洲一区高清在线观看| 亚洲成av人片一区二区三区| 波多野结衣在线一区| 欧美mv和日韩mv的网站| 亚洲成人www| 色播五月激情综合网| 国产精品理论片在线观看| 久久国产精品一区二区| 欧美另类高清zo欧美| 亚洲欧美电影院| 成人性生交大片免费看在线播放| 91精品国产综合久久久久久久 | 亚洲综合男人的天堂| 成人av网在线| 国产欧美综合在线观看第十页| 青娱乐精品视频| 欧美日韩国产免费| 一区二区三区不卡视频 | 日韩欧美你懂的| 午夜a成v人精品| 欧美视频精品在线| 一区二区三区日韩在线观看| 成人av免费网站| 国产精品欧美精品| 成人美女视频在线观看| 久久久精品综合| 国产精品456露脸| 久久精品一二三| 国产成人在线色| 国产精品美女久久久久久久网站| 国产一区二区三区香蕉| 2022国产精品视频| 国产精品1024久久| 国产午夜亚洲精品不卡| 国产99久久精品| 中文子幕无线码一区tr| 成人av影视在线观看| 国产精品传媒入口麻豆| 一本一本大道香蕉久在线精品| 亚洲人成精品久久久久| 欧美中文字幕一区| 午夜精品久久久久久不卡8050| 欧美日韩一区在线观看| 午夜电影网亚洲视频| 欧美一区三区四区| 国产在线精品一区在线观看麻豆| 久久人人爽人人爽| 99久久伊人久久99| 一区二区三区久久久| 欧美视频一区二区三区| 婷婷亚洲久悠悠色悠在线播放 | 国产精品不卡视频| 91久久国产最好的精华液| 亚洲va在线va天堂| 欧美一级电影网站| 风间由美一区二区av101| 亚洲欧洲av在线| 在线亚洲免费视频| 精品综合久久久久久8888| 国产精品美女一区二区| 欧美色国产精品| 精品一二线国产| 国产精品久久久爽爽爽麻豆色哟哟| 91免费在线播放| 天天射综合影视| 国产日韩欧美精品综合| 色综合久久天天| 人人超碰91尤物精品国产| 久久久亚洲欧洲日产国码αv| jiyouzz国产精品久久| 亚洲国产一区二区在线播放| 日韩你懂的在线播放| 成人自拍视频在线| 午夜国产精品一区| 国产精品天美传媒| 欧美日韩国产综合一区二区| 国产一区二区视频在线播放| 亚洲日本护士毛茸茸| 日韩一二在线观看| 成人av在线影院| 麻豆传媒一区二区三区| 国产精品国产三级国产普通话99| 欧美日韩精品欧美日韩精品一| 韩国精品久久久| 亚洲精品国产品国语在线app| 日韩久久久精品| 91在线一区二区三区| 久久国产精品第一页| 亚洲欧美色图小说| 精品99一区二区| 欧美午夜宅男影院| 夫妻av一区二区| 麻豆91免费看| 亚洲午夜视频在线| 欧美韩国日本不卡| 日韩无一区二区| 在线免费观看视频一区| 国产精品一级二级三级| 五月天中文字幕一区二区| 中文字幕一区日韩精品欧美| 欧美电影免费观看高清完整版| 91电影在线观看| 99国产欧美另类久久久精品| 另类小说欧美激情| 亚洲国产综合在线| 中文字幕一区在线观看| 国产亚洲一区二区在线观看| 欧美一区二区观看视频| 色偷偷88欧美精品久久久 | 久久久久久免费网| 91精品国产色综合久久| 欧美在线观看一区| 99精品视频在线免费观看| 国产91精品欧美| 久久国产精品免费| 免费av成人在线| 五月综合激情日本mⅴ| 亚洲最新在线观看| 亚洲人成在线观看一区二区| 国产欧美1区2区3区| www一区二区| 日韩欧美在线观看一区二区三区| 欧美视频一区在线观看| 欧洲av一区二区嗯嗯嗯啊| 91一区在线观看| 99精品国产91久久久久久| 99热在这里有精品免费| av男人天堂一区| 91影视在线播放| 色综合久久88色综合天天6|