Changeset 3785


Ignore:
Timestamp:
05/28/08 15:30:59 (5 years ago)
Author:
alanbach-guest
Message:

[svn-inject] Applying Debian modifications to trunk

Location:
pkg/viola/main/xulrunner/trunk
Files:
48 added
54 edited

Legend:

Unmodified
Added
Removed
  • pkg/viola/main/xulrunner/trunk/build/unix/mozilla-config.in

    r3781 r3785  
    2323    nspr 
    2424    js 
    25     jsj 
    2625    gfx 
    2726EOF 
     
    6160      ;; 
    6261    --cflags) 
    63       if test "%includedir%" != /usr/include ; then 
    64         includes="-I%includedir%" 
    65       fi 
    6662      echo_cflags=yes 
    6763      ;; 
     
    7571      echo_idlflags=yes 
    7672      ;; 
    77     xpcom|js|nspr|gfx|jsj) 
     73    xpcom|js|nspr|gfx) 
    7874      echo_components="$echo_components $1" 
    7975      echo_libraries="$echo_libraries $1" 
     
    106102    nspr_cflags="%FULL_NSPR_CFLAGS%" 
    107103    for n in $echo_components; do 
    108         component_includes="$component_includes -I%includedir%/$n" 
     104        case "$n" in 
     105        js) 
     106               component_includes="$component_includes -I/usr/include/mozjs" 
     107            ;; 
     108        nspr) 
     109            ;; 
     110        *) 
     111               component_includes="$component_includes -I%includedir% \ 
     112                                   -I%includedir%/$n" 
     113            ;; 
     114        esac 
    109115    done 
    110116    echo $component_includes $includes $nspr_cflags 
     
    134140            libs="$libs $_js_libs" 
    135141            ;; 
    136         jsj) 
    137             libs="$libs -ljsj $_js_libs $_xpcom_libs" 
    138             ;; 
    139142        esac 
    140143    done 
    141     echo -L%libdir% $libs 
     144    echo $libs 
    142145fi 
  • pkg/viola/main/xulrunner/trunk/config/autoconf.mk.in

    r3781 r3785  
    8686 
    8787MOZ_JS_LIBS                = @MOZ_JS_LIBS@ 
     88ENABLE_JS_BINARY        = @ENABLE_JS_BINARY@ 
     89HAVE_READLINE           = @HAVE_READLINE@ 
     90READLINE_LIBS           = @READLINE_LIBS@ 
    8891 
    8992MOZ_DEBUG       = @MOZ_DEBUG@ 
     
    219222MOZ_NATIVE_JPEG = @SYSTEM_JPEG@ 
    220223MOZ_NATIVE_PNG  = @SYSTEM_PNG@ 
     224APNG            = @APNG@ 
    221225MOZ_TREE_CAIRO = @MOZ_TREE_CAIRO@ 
    222226 
  • pkg/viola/main/xulrunner/trunk/config/config.mk

    r3781 r3785  
    509509JAVA_IFACES_PKG_NAME = org/mozilla/interfaces 
    510510 
    511 REQ_INCLUDES    = -I$(srcdir) -I. $(foreach d,$(REQUIRES),-I$(DIST)/include/$d) -I$(DIST)/include  
     511REQ_INCLUDES    = $(foreach d,$(REQUIRES),-I$(DIST)/include/$d) -I$(DIST)/include 
    512512ifdef LIBXUL_SDK 
    513513REQ_INCLUDES_SDK = $(foreach d,$(REQUIRES),-I$(LIBXUL_SDK)/include/$d) -I$(LIBXUL_SDK)/include 
  • pkg/viola/main/xulrunner/trunk/config/rules.mk

    r3781 r3785  
    156156endif 
    157157 
     158ifdef SO_VERSION 
     159UNVERSIONED_LIBRARY     := $(notdir $(SHARED_LIBRARY)) 
     160 
     161ifeq ($(strip $(SHARED_LIBRARY)),$(strip $(SDK_LIBRARY))) 
     162SDK_LIBRARY             := $(SHARED_LIBRARY) 
     163endif 
     164 
     165SHARED_LIBRARY          := $(SHARED_LIBRARY).$(SO_VERSION) 
     166 
     167MKSHLINKS               = rm -f $(1)/$(UNVERSIONED_LIBRARY); ln -s $(SHARED_LIBRARY) $(1)/$(UNVERSIONED_LIBRARY) 
     168endif 
     169 
    158170ifeq ($(OS_ARCH),OS2) 
    159171DEF_FILE                := $(SHARED_LIBRARY:.dll=.def) 
     
    265277 
    266278ifndef TARGETS 
    267 TARGETS                 = $(LIBRARY) $(SHARED_LIBRARY) $(PROGRAM) $(SIMPLE_PROGRAMS) $(HOST_LIBRARY) $(HOST_PROGRAM) $(HOST_SIMPLE_PROGRAMS) $(JAVA_LIBRARY) 
     279TARGETS                 = $(LIBRARY) $(UNVERSIONED_LIBRARY) $(SHARED_LIBRARY) $(PROGRAM) $(SIMPLE_PROGRAMS) $(HOST_LIBRARY) $(HOST_PROGRAM) $(HOST_SIMPLE_PROGRAMS) $(JAVA_LIBRARY) 
    268280endif 
    269281 
     
    308320ALL_TRASH = \ 
    309321        $(GARBAGE) $(TARGETS) $(OBJS) $(PROGOBJS) LOGS TAGS a.out \ 
    310         $(OBJS:.$(OBJ_SUFFIX)=.s) $(OBJS:.$(OBJ_SUFFIX)=.ii) \ 
     322        $(filter-out $(ASFILES),$(OBJS:.$(OBJ_SUFFIX)=.s)) $(OBJS:.$(OBJ_SUFFIX)=.ii) \ 
    311323        $(OBJS:.$(OBJ_SUFFIX)=.i) \ 
    312324        $(HOST_PROGOBJS) $(HOST_OBJS) $(IMPORT_LIBRARY) $(DEF_FILE)\ 
     
    476488ifeq ($(OS_ARCH),NetBSD) 
    477489ifneq (,$(filter arc cobalt hpcmips mipsco newsmips pmax sgimips,$(OS_TEST))) 
    478 ifeq ($(MODULE),layout) 
    479 OS_CFLAGS += -Wa,-xgot 
    480 OS_CXXFLAGS += -Wa,-xgot 
    481 endif 
    482 endif 
    483 endif 
    484  
    485 ifeq ($(OS_ARCH),Linux) 
    486 ifneq (,$(filter mips mipsel,$(OS_TEST))) 
    487490ifeq ($(MODULE),layout) 
    488491OS_CFLAGS += -Wa,-xgot 
     
    542545 
    543546# 
     547# GNU doesn't have path length limitation 
     548# 
     549 
     550ifeq ($(OS_ARCH),GNU) 
     551OS_CPPFLAGS += -DPATH_MAX=1024 -DMAXPATHLEN=1024 
     552endif 
     553 
     554# 
    544555# MINGW32 
    545556# 
     
    718729 
    719730############################################## 
    720 libs:: $(SUBMAKEFILES) $(MAKE_DIRS) $(HOST_LIBRARY) $(LIBRARY) $(SHARED_LIBRARY) $(IMPORT_LIBRARY) $(HOST_PROGRAM) $(PROGRAM) $(HOST_SIMPLE_PROGRAMS) $(SIMPLE_PROGRAMS) $(JAVA_LIBRARY) 
     731libs:: $(SUBMAKEFILES) $(MAKE_DIRS) $(HOST_LIBRARY) $(LIBRARY) $(UNVERSIONED_LIBRARY) $(SHARED_LIBRARY) $(IMPORT_LIBRARY) $(HOST_PROGRAM) $(PROGRAM) $(HOST_SIMPLE_PROGRAMS) $(SIMPLE_PROGRAMS) $(JAVA_LIBRARY) 
    721732ifndef NO_DIST_INSTALL 
    722733ifdef LIBRARY 
     
    748759else 
    749760        $(INSTALL) $(IFLAGS2) $(SHARED_LIBRARY) $(DIST)/lib 
     761        $(call MKSHLINKS,$(DIST)/lib) 
    750762endif 
    751763        $(INSTALL) $(IFLAGS2) $(SHARED_LIBRARY) $(FINAL_TARGET) 
     764        $(call MKSHLINKS,$(FINAL_TARGET)) 
    752765ifdef BEOS_ADDON_WORKAROUND 
    753766        ( cd $(FINAL_TARGET) && $(CC) -nostart -o $(SHARED_LIBRARY).stub $(SHARED_LIBRARY) ) 
     
    946959        $(CCC) $(WRAP_MALLOC_CFLAGS) $(CXXFLAGS) -o $@ $< $(WIN32_EXE_LDFLAGS) $(SOLARIS_JEMALLOC_LDFLAGS) $(LDFLAGS) $(LIBS_DIR) $(LIBS) $(OS_LIBS) $(EXTRA_LIBS) $(WRAP_MALLOC_LIB) $(PROFILER_LIBS) $(BIN_FLAGS) 
    947960else 
    948         $(CC) $(WRAP_MALLOC_CFLAGS) $(CFLAGS) $(OUTOPTION)$@ $< $(WIN32_EXE_LDFLAGS) $(SOLARIS_JEMALLOC_LDFLAGS) $(LDFLAGS) $(LIBS_DIR) $(LIBS) $(OS_LIBS) $(EXTRA_LIBS) $(WRAP_MALLOC_LIB) $(PROFILER_LIBS) $(BIN_FLAGS) 
     961        $(CC) $(WRAP_MALLOC_CFLAGS) $(CFLAGS) $(OUTOPTION)$@ $< $(WIN32_EXE_LDFLAGS) $(SOLARIS_JEMALLOC_LDFLAGS) $(LDFLAGS) $(LIBS_DIR) $(LIBS) $(OS_LIBS) $(EXTRA_LIBS) $(WRAP_MALLOC_LIB) $(PROFILER_LIBS) $(BIN_FLAGS) $(PROG_LIBS) 
    949962endif # CPP_PROG_LINK 
    950963endif # WINNT && !GNU_CC 
     
    11021115# symlinks back to the originals. The symlinks are a no-op for stabs debugging, 
    11031116# so no need to conditionalize on OS version or debugging format. 
     1117$(UNVERSIONED_LIBRARY): $(SHARED_LIBRARY) 
     1118        $(call MKSHLINKS,.) 
    11041119 
    11051120$(SHARED_LIBRARY): $(OBJS) $(LOBJS) $(DEF_FILE) $(RESFILE) $(SHARED_LIBRARY_LIBS) $(EXTRA_DEPS) $(DSO_LDOPTS_DEPS) Makefile Makefile.in 
  • pkg/viola/main/xulrunner/trunk/configure

    r3781 r3785  
    278278  --enable-js-ultrasparc  Use UltraSPARC optimizations in JS" 
    279279ac_help="$ac_help 
     280  --enable-js-binary      Build the standalone JS program" 
     281ac_help="$ac_help 
     282  --with-readline[=PFX] 
     283                              Use libreadline [installed at prefix PFX]" 
     284ac_help="$ac_help 
    280285  --enable-debug[=DBG]    Enable building with developer debug info 
    281286                          (Using compiler flags DBG)" 
     
    9971002 
    9981003echo $ac_n "checking host system type""... $ac_c" 1>&6 
    999 echo "configure:1000: checking host system type" >&5 
     1004echo "configure:1005: checking host system type" >&5 
    10001005 
    10011006host_alias=$host 
     
    10181023 
    10191024echo $ac_n "checking target system type""... $ac_c" 1>&6 
    1020 echo "configure:1021: checking target system type" >&5 
     1025echo "configure:1026: checking target system type" >&5 
    10211026 
    10221027target_alias=$target 
     
    10361041 
    10371042echo $ac_n "checking build system type""... $ac_c" 1>&6 
    1038 echo "configure:1039: checking build system type" >&5 
     1043echo "configure:1044: checking build system type" >&5 
    10391044 
    10401045build_alias=$build 
     
    11111116 
    11121117MISSING_X= 
    1113 for ac_prog in gawk mawk nawk awk 
     1118for ac_prog in mawk gawk nawk awk 
    11141119do 
    11151120# Extract the first word of "$ac_prog", so it can be a program name with args. 
    11161121set dummy $ac_prog; ac_word=$2 
    11171122echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1118 echo "configure:1119: checking for $ac_word" >&5 
     1123echo "configure:1124: checking for $ac_word" >&5 
    11191124if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then 
    11201125  echo $ac_n "(cached) $ac_c" 1>&6 
     
    12381243 
    12391244    echo $ac_n "checking for host c compiler""... $ac_c" 1>&6 
    1240 echo "configure:1241: checking for host c compiler" >&5 
     1245echo "configure:1246: checking for host c compiler" >&5 
    12411246    for ac_prog in $HOST_CC gcc cc /usr/ucb/cc cl icc 
    12421247do 
     
    12441249set dummy $ac_prog; ac_word=$2 
    12451250echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1246 echo "configure:1247: checking for $ac_word" >&5 
     1251echo "configure:1252: checking for $ac_word" >&5 
    12471252if eval "test \"`echo '$''{'ac_cv_prog_HOST_CC'+set}'`\" = set"; then 
    12481253  echo $ac_n "(cached) $ac_c" 1>&6 
     
    12791284    echo "$ac_t""$HOST_CC" 1>&6 
    12801285    echo $ac_n "checking for host c++ compiler""... $ac_c" 1>&6 
    1281 echo "configure:1282: checking for host c++ compiler" >&5 
     1286echo "configure:1287: checking for host c++ compiler" >&5 
    12821287    for ac_prog in $HOST_CXX $CCC c++ g++ gcc CC cxx cc++ cl icc 
    12831288do 
     
    12851290set dummy $ac_prog; ac_word=$2 
    12861291echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1287 echo "configure:1288: checking for $ac_word" >&5 
     1292echo "configure:1293: checking for $ac_word" >&5 
    12881293if eval "test \"`echo '$''{'ac_cv_prog_HOST_CXX'+set}'`\" = set"; then 
    12891294  echo $ac_n "(cached) $ac_c" 1>&6 
     
    13341339set dummy $ac_prog; ac_word=$2 
    13351340echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1336 echo "configure:1337: checking for $ac_word" >&5 
     1341echo "configure:1342: checking for $ac_word" >&5 
    13371342if eval "test \"`echo '$''{'ac_cv_prog_HOST_RANLIB'+set}'`\" = set"; then 
    13381343  echo $ac_n "(cached) $ac_c" 1>&6 
     
    13691374set dummy $ac_prog; ac_word=$2 
    13701375echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1371 echo "configure:1372: checking for $ac_word" >&5 
     1376echo "configure:1377: checking for $ac_word" >&5 
    13721377if eval "test \"`echo '$''{'ac_cv_prog_HOST_AR'+set}'`\" = set"; then 
    13731378  echo $ac_n "(cached) $ac_c" 1>&6 
     
    14041409 
    14051410    echo $ac_n "checking whether the host c compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works""... $ac_c" 1>&6 
    1406 echo "configure:1407: checking whether the host c compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works" >&5 
     1411echo "configure:1412: checking whether the host c compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works" >&5 
    14071412    cat > conftest.$ac_ext <<EOF 
    1408 #line 1409 "configure" 
     1413#line 1414 "configure" 
    14091414#include "confdefs.h" 
    14101415 
     
    14131418; return 0; } 
    14141419EOF 
    1415 if { (eval echo configure:1416: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     1420if { (eval echo configure:1421: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    14161421  rm -rf conftest* 
    14171422  ac_cv_prog_hostcc_works=1 echo "$ac_t""yes" 1>&6 
     
    14281433 
    14291434    echo $ac_n "checking whether the host c++ compiler ($HOST_CXX $HOST_CXXFLAGS $HOST_LDFLAGS) works""... $ac_c" 1>&6 
    1430 echo "configure:1431: checking whether the host c++ compiler ($HOST_CXX $HOST_CXXFLAGS $HOST_LDFLAGS) works" >&5 
     1435echo "configure:1436: checking whether the host c++ compiler ($HOST_CXX $HOST_CXXFLAGS $HOST_LDFLAGS) works" >&5 
    14311436    cat > conftest.$ac_ext <<EOF 
    1432 #line 1433 "configure" 
     1437#line 1438 "configure" 
    14331438#include "confdefs.h" 
    14341439 
     
    14371442; return 0; } 
    14381443EOF 
    1439 if { (eval echo configure:1440: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     1444if { (eval echo configure:1445: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    14401445  rm -rf conftest* 
    14411446  ac_cv_prog_hostcxx_works=1 echo "$ac_t""yes" 1>&6 
     
    14661471set dummy $ac_prog; ac_word=$2 
    14671472echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1468 echo "configure:1469: checking for $ac_word" >&5 
     1473echo "configure:1474: checking for $ac_word" >&5 
    14691474if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 
    14701475  echo $ac_n "(cached) $ac_c" 1>&6 
     
    15001505set dummy gcc; ac_word=$2 
    15011506echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1502 echo "configure:1503: checking for $ac_word" >&5 
     1507echo "configure:1508: checking for $ac_word" >&5 
    15031508if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 
    15041509  echo $ac_n "(cached) $ac_c" 1>&6 
     
    15301535set dummy cc; ac_word=$2 
    15311536echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1532 echo "configure:1533: checking for $ac_word" >&5 
     1537echo "configure:1538: checking for $ac_word" >&5 
    15331538if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 
    15341539  echo $ac_n "(cached) $ac_c" 1>&6 
     
    15811586set dummy cl; ac_word=$2 
    15821587echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1583 echo "configure:1584: checking for $ac_word" >&5 
     1588echo "configure:1589: checking for $ac_word" >&5 
    15841589if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 
    15851590  echo $ac_n "(cached) $ac_c" 1>&6 
     
    16131618 
    16141619echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 
    1615 echo "configure:1616: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 
     1620echo "configure:1621: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 
    16161621 
    16171622ac_ext=c 
     
    16241629cat > conftest.$ac_ext << EOF 
    16251630 
    1626 #line 1627 "configure" 
     1631#line 1632 "configure" 
    16271632#include "confdefs.h" 
    16281633 
    16291634main(){return(0);} 
    16301635EOF 
    1631 if { (eval echo configure:1632: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     1636if { (eval echo configure:1637: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    16321637  ac_cv_prog_cc_works=yes 
    16331638  # If we can't run a trivial program, we are probably using a cross compiler. 
     
    16551660fi 
    16561661echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 
    1657 echo "configure:1658: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 
     1662echo "configure:1663: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 
    16581663echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 
    16591664cross_compiling=$ac_cv_prog_cc_cross 
    16601665 
    16611666echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 
    1662 echo "configure:1663: checking whether we are using GNU C" >&5 
     1667echo "configure:1668: checking whether we are using GNU C" >&5 
    16631668if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 
    16641669  echo $ac_n "(cached) $ac_c" 1>&6 
     
    16691674#endif 
    16701675EOF 
    1671 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1672: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
     1676if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1677: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
    16721677  ac_cv_prog_gcc=yes 
    16731678else 
     
    16881693CFLAGS= 
    16891694echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 
    1690 echo "configure:1691: checking whether ${CC-cc} accepts -g" >&5 
     1695echo "configure:1696: checking whether ${CC-cc} accepts -g" >&5 
    16911696if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 
    16921697  echo $ac_n "(cached) $ac_c" 1>&6 
     
    17241729set dummy $ac_prog; ac_word=$2 
    17251730echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1726 echo "configure:1727: checking for $ac_word" >&5 
     1731echo "configure:1732: checking for $ac_word" >&5 
    17271732if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then 
    17281733  echo $ac_n "(cached) $ac_c" 1>&6 
     
    17601765set dummy $ac_prog; ac_word=$2 
    17611766echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1762 echo "configure:1763: checking for $ac_word" >&5 
     1767echo "configure:1768: checking for $ac_word" >&5 
    17631768if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then 
    17641769  echo $ac_n "(cached) $ac_c" 1>&6 
     
    17921797 
    17931798echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 
    1794 echo "configure:1795: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 
     1799echo "configure:1800: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 
    17951800 
    17961801ac_ext=C 
     
    18031808cat > conftest.$ac_ext << EOF 
    18041809 
    1805 #line 1806 "configure" 
     1810#line 1811 "configure" 
    18061811#include "confdefs.h" 
    18071812 
    18081813int main(){return(0);} 
    18091814EOF 
    1810 if { (eval echo configure:1811: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     1815if { (eval echo configure:1816: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    18111816  ac_cv_prog_cxx_works=yes 
    18121817  # If we can't run a trivial program, we are probably using a cross compiler. 
     
    18341839fi 
    18351840echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 
    1836 echo "configure:1837: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 
     1841echo "configure:1842: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 
    18371842echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6 
    18381843cross_compiling=$ac_cv_prog_cxx_cross 
    18391844 
    18401845echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 
    1841 echo "configure:1842: checking whether we are using GNU C++" >&5 
     1846echo "configure:1847: checking whether we are using GNU C++" >&5 
    18421847if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 
    18431848  echo $ac_n "(cached) $ac_c" 1>&6 
     
    18481853#endif 
    18491854EOF 
    1850 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1851: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
     1855if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1856: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
    18511856  ac_cv_prog_gxx=yes 
    18521857else 
     
    18671872CXXFLAGS= 
    18681873echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 
    1869 echo "configure:1870: checking whether ${CXX-g++} accepts -g" >&5 
     1874echo "configure:1875: checking whether ${CXX-g++} accepts -g" >&5 
    18701875if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 
    18711876  echo $ac_n "(cached) $ac_c" 1>&6 
     
    18981903fi 
    18991904 
    1900 for ac_declaration in \ 
    1901    ''\ 
    1902    '#include <stdlib.h>' \ 
    1903    'extern "C" void std::exit (int) throw (); using std::exit;' \ 
    1904    'extern "C" void std::exit (int); using std::exit;' \ 
    1905    'extern "C" void exit (int) throw ();' \ 
    1906    'extern "C" void exit (int);' \ 
    1907    'void exit (int);' 
    1908 do 
    1909   cat > conftest.$ac_ext <<EOF 
    1910 #line 1911 "configure" 
    1911 #include "confdefs.h" 
    1912 #include <stdlib.h> 
    1913 $ac_declaration 
    1914 int main() { 
    1915 exit (42); 
    1916 ; return 0; } 
    1917 EOF 
    1918 if { (eval echo configure:1919: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1919   : 
    1920 else 
    1921   echo "configure: failed program was:" >&5 
    1922   cat conftest.$ac_ext >&5 
    1923   rm -rf conftest* 
    1924   continue 
    1925 fi 
    1926 rm -f conftest* 
    1927   cat > conftest.$ac_ext <<EOF 
    1928 #line 1929 "configure" 
    1929 #include "confdefs.h" 
    1930 $ac_declaration 
    1931 int main() { 
    1932 exit (42); 
    1933 ; return 0; } 
    1934 EOF 
    1935 if { (eval echo configure:1936: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1936   rm -rf conftest* 
    1937   break 
    1938 else 
    1939   echo "configure: failed program was:" >&5 
    1940   cat conftest.$ac_ext >&5 
    1941 fi 
    1942 rm -f conftest* 
    1943 done 
    1944 if test -n "$ac_declaration"; then 
    1945   echo '#ifdef __cplusplus' >>confdefs.h 
    1946   echo $ac_declaration      >>confdefs.h 
    1947   echo '#endif'             >>confdefs.h 
    1948 fi 
    1949  
    1950  
    19511905 
    19521906    case "$build:$target" in 
     
    19621916set dummy $ac_prog; ac_word=$2 
    19631917echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1964 echo "configure:1965: checking for $ac_word" >&5 
     1918echo "configure:1919: checking for $ac_word" >&5 
    19651919if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 
    19661920  echo $ac_n "(cached) $ac_c" 1>&6 
     
    19971951set dummy $ac_prog; ac_word=$2 
    19981952echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    1999 echo "configure:2000: checking for $ac_word" >&5 
     1953echo "configure:1954: checking for $ac_word" >&5 
    20001954if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 
    20011955  echo $ac_n "(cached) $ac_c" 1>&6 
     
    20321986set dummy $ac_prog; ac_word=$2 
    20331987echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2034 echo "configure:2035: checking for $ac_word" >&5 
     1988echo "configure:1989: checking for $ac_word" >&5 
    20351989if eval "test \"`echo '$''{'ac_cv_path_AS'+set}'`\" = set"; then 
    20361990  echo $ac_n "(cached) $ac_c" 1>&6 
     
    20732027set dummy $ac_prog; ac_word=$2 
    20742028echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2075 echo "configure:2076: checking for $ac_word" >&5 
     2029echo "configure:2030: checking for $ac_word" >&5 
    20762030if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then 
    20772031  echo $ac_n "(cached) $ac_c" 1>&6 
     
    21082062set dummy $ac_prog; ac_word=$2 
    21092063echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2110 echo "configure:2111: checking for $ac_word" >&5 
     2064echo "configure:2065: checking for $ac_word" >&5 
    21112065if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 
    21122066  echo $ac_n "(cached) $ac_c" 1>&6 
     
    21432097set dummy $ac_prog; ac_word=$2 
    21442098echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2145 echo "configure:2146: checking for $ac_word" >&5 
     2099echo "configure:2100: checking for $ac_word" >&5 
    21462100if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then 
    21472101  echo $ac_n "(cached) $ac_c" 1>&6 
     
    21812135set dummy gcc; ac_word=$2 
    21822136echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2183 echo "configure:2184: checking for $ac_word" >&5 
     2137echo "configure:2138: checking for $ac_word" >&5 
    21842138if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 
    21852139  echo $ac_n "(cached) $ac_c" 1>&6 
     
    22112165set dummy cc; ac_word=$2 
    22122166echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2213 echo "configure:2214: checking for $ac_word" >&5 
     2167echo "configure:2168: checking for $ac_word" >&5 
    22142168if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 
    22152169  echo $ac_n "(cached) $ac_c" 1>&6 
     
    22622216set dummy cl; ac_word=$2 
    22632217echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2264 echo "configure:2265: checking for $ac_word" >&5 
     2218echo "configure:2219: checking for $ac_word" >&5 
    22652219if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 
    22662220  echo $ac_n "(cached) $ac_c" 1>&6 
     
    22942248 
    22952249echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 
    2296 echo "configure:2297: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 
     2250echo "configure:2251: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 
    22972251 
    22982252ac_ext=c 
     
    23052259cat > conftest.$ac_ext << EOF 
    23062260 
    2307 #line 2308 "configure" 
     2261#line 2262 "configure" 
    23082262#include "confdefs.h" 
    23092263 
    23102264main(){return(0);} 
    23112265EOF 
    2312 if { (eval echo configure:2313: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2266if { (eval echo configure:2267: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    23132267  ac_cv_prog_cc_works=yes 
    23142268  # If we can't run a trivial program, we are probably using a cross compiler. 
     
    23362290fi 
    23372291echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 
    2338 echo "configure:2339: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 
     2292echo "configure:2293: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 
    23392293echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 
    23402294cross_compiling=$ac_cv_prog_cc_cross 
    23412295 
    23422296echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 
    2343 echo "configure:2344: checking whether we are using GNU C" >&5 
     2297echo "configure:2298: checking whether we are using GNU C" >&5 
    23442298if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 
    23452299  echo $ac_n "(cached) $ac_c" 1>&6 
     
    23502304#endif 
    23512305EOF 
    2352 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2353: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
     2306if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2307: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
    23532307  ac_cv_prog_gcc=yes 
    23542308else 
     
    23692323CFLAGS= 
    23702324echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 
    2371 echo "configure:2372: checking whether ${CC-cc} accepts -g" >&5 
     2325echo "configure:2326: checking whether ${CC-cc} accepts -g" >&5 
    23722326if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 
    23732327  echo $ac_n "(cached) $ac_c" 1>&6 
     
    24052359set dummy $ac_prog; ac_word=$2 
    24062360echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2407 echo "configure:2408: checking for $ac_word" >&5 
     2361echo "configure:2362: checking for $ac_word" >&5 
    24082362if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then 
    24092363  echo $ac_n "(cached) $ac_c" 1>&6 
     
    24372391 
    24382392echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 
    2439 echo "configure:2440: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 
     2393echo "configure:2394: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 
    24402394 
    24412395ac_ext=C 
     
    24482402cat > conftest.$ac_ext << EOF 
    24492403 
    2450 #line 2451 "configure" 
     2404#line 2405 "configure" 
    24512405#include "confdefs.h" 
    24522406 
    24532407int main(){return(0);} 
    24542408EOF 
    2455 if { (eval echo configure:2456: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     2409if { (eval echo configure:2410: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    24562410  ac_cv_prog_cxx_works=yes 
    24572411  # If we can't run a trivial program, we are probably using a cross compiler. 
     
    24792433fi 
    24802434echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 
    2481 echo "configure:2482: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 
     2435echo "configure:2436: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 
    24822436echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6 
    24832437cross_compiling=$ac_cv_prog_cxx_cross 
    24842438 
    24852439echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 
    2486 echo "configure:2487: checking whether we are using GNU C++" >&5 
     2440echo "configure:2441: checking whether we are using GNU C++" >&5 
    24872441if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 
    24882442  echo $ac_n "(cached) $ac_c" 1>&6 
     
    24932447#endif 
    24942448EOF 
    2495 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:2496: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
     2449if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:2450: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 
    24962450  ac_cv_prog_gxx=yes 
    24972451else 
     
    25122466CXXFLAGS= 
    25132467echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 
    2514 echo "configure:2515: checking whether ${CXX-g++} accepts -g" >&5 
     2468echo "configure:2469: checking whether ${CXX-g++} accepts -g" >&5 
    25152469if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 
    25162470  echo $ac_n "(cached) $ac_c" 1>&6 
     
    25432497fi 
    25442498 
    2545 for ac_declaration in \ 
    2546    ''\ 
    2547    '#include <stdlib.h>' \ 
    2548    'extern "C" void std::exit (int) throw (); using std::exit;' \ 
    2549    'extern "C" void std::exit (int); using std::exit;' \ 
    2550    'extern "C" void exit (int) throw ();' \ 
    2551    'extern "C" void exit (int);' \ 
    2552    'void exit (int);' 
    2553 do 
    2554   cat > conftest.$ac_ext <<EOF 
    2555 #line 2556 "configure" 
    2556 #include "confdefs.h" 
    2557 #include <stdlib.h> 
    2558 $ac_declaration 
    2559 int main() { 
    2560 exit (42); 
    2561 ; return 0; } 
    2562 EOF 
    2563 if { (eval echo configure:2564: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    2564   : 
    2565 else 
    2566   echo "configure: failed program was:" >&5 
    2567   cat conftest.$ac_ext >&5 
    2568   rm -rf conftest* 
    2569   continue 
    2570 fi 
    2571 rm -f conftest* 
    2572   cat > conftest.$ac_ext <<EOF 
    2573 #line 2574 "configure" 
    2574 #include "confdefs.h" 
    2575 $ac_declaration 
    2576 int main() { 
    2577 exit (42); 
    2578 ; return 0; } 
    2579 EOF 
    2580 if { (eval echo configure:2581: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    2581   rm -rf conftest* 
    2582   break 
    2583 else 
    2584   echo "configure: failed program was:" >&5 
    2585   cat conftest.$ac_ext >&5 
    2586 fi 
    2587 rm -f conftest* 
    2588 done 
    2589 if test -n "$ac_declaration"; then 
    2590   echo '#ifdef __cplusplus' >>confdefs.h 
    2591   echo $ac_declaration      >>confdefs.h 
    2592   echo '#endif'             >>confdefs.h 
    2593 fi 
    2594  
    2595  
    25962499    # Extract the first word of "ranlib", so it can be a program name with args. 
    25972500set dummy ranlib; ac_word=$2 
    25982501echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2599 echo "configure:2600: checking for $ac_word" >&5 
     2502echo "configure:2503: checking for $ac_word" >&5 
    26002503if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 
    26012504  echo $ac_n "(cached) $ac_c" 1>&6 
     
    26292532set dummy $ac_prog; ac_word=$2 
    26302533echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2631 echo "configure:2632: checking for $ac_word" >&5 
     2534echo "configure:2535: checking for $ac_word" >&5 
    26322535if eval "test \"`echo '$''{'ac_cv_path_AS'+set}'`\" = set"; then 
    26332536  echo $ac_n "(cached) $ac_c" 1>&6 
     
    26702573set dummy $ac_prog; ac_word=$2 
    26712574echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2672 echo "configure:2673: checking for $ac_word" >&5 
     2575echo "configure:2576: checking for $ac_word" >&5 
    26732576if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 
    26742577  echo $ac_n "(cached) $ac_c" 1>&6 
     
    27052608set dummy $ac_prog; ac_word=$2 
    27062609echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2707 echo "configure:2708: checking for $ac_word" >&5 
     2610echo "configure:2611: checking for $ac_word" >&5 
    27082611if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then 
    27092612  echo $ac_n "(cached) $ac_c" 1>&6 
     
    27402643set dummy $ac_prog; ac_word=$2 
    27412644echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2742 echo "configure:2743: checking for $ac_word" >&5 
     2645echo "configure:2646: checking for $ac_word" >&5 
    27432646if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 
    27442647  echo $ac_n "(cached) $ac_c" 1>&6 
     
    27752678set dummy $ac_prog; ac_word=$2 
    27762679echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2777 echo "configure:2778: checking for $ac_word" >&5 
     2680echo "configure:2681: checking for $ac_word" >&5 
    27782681if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then 
    27792682  echo $ac_n "(cached) $ac_c" 1>&6 
     
    29082811set dummy $ac_prog; ac_word=$2 
    29092812echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    2910 echo "configure:2911: checking for $ac_word" >&5 
     2813echo "configure:2814: checking for $ac_word" >&5 
    29112814if eval "test \"`echo '$''{'ac_cv_prog_MIDL'+set}'`\" = set"; then 
    29122815  echo $ac_n "(cached) $ac_c" 1>&6 
     
    29502853 
    29512854        cat > conftest.$ac_ext <<EOF 
    2952 #line 2953 "configure" 
     2855#line 2856 "configure" 
    29532856#include "confdefs.h" 
    29542857#include <stdio.h> 
     
    29572860; return 0; } 
    29582861EOF 
    2959 if { (eval echo configure:2960: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     2862if { (eval echo configure:2863: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    29602863  : 
    29612864else 
     
    29752878 
    29762879        cat > conftest.$ac_ext <<EOF 
    2977 #line 2978 "configure" 
     2880#line 2881 "configure" 
    29782881#include "confdefs.h" 
    29792882#include <new.h> 
     
    29822885; return 0; } 
    29832886EOF 
    2984 if { (eval echo configure:2985: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     2887if { (eval echo configure:2888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    29852888  : 
    29862889else 
     
    30973000         # Add flags if necessary 
    30983001         echo $ac_n "checking for midl flags""... $ac_c" 1>&6 
    3099 echo "configure:3100: checking for midl flags" >&5 
     3002echo "configure:3003: checking for midl flags" >&5 
    31003003         if test \( "$_MIDL_MAJOR_VERSION" -gt "6" \) -o \( "$_MIDL_MAJOR_VERSION" = "6" -a "$_MIDL_MINOR_VERSION" -gt "0" \) -o \( "$_MIDL_MAJOR_VERSION" = "6" -a "$_MIDL_MINOR_VERSION" = "00" -a "$_MIDL_REV_VERSION" -gt "359" \); then 
    31013004             # Starting with MIDL version 6.0.359, the MIDL compiler 
     
    31193022        _W32API_MINOR_VERSION=`echo $W32API_VERSION | $AWK -F\. '{ print $2 }'` 
    31203023        echo $ac_n "checking for w32api version >= $W32API_VERSION""... $ac_c" 1>&6 
    3121 echo "configure:3122: checking for w32api version >= $W32API_VERSION" >&5 
     3024echo "configure:3025: checking for w32api version >= $W32API_VERSION" >&5 
    31223025        cat > conftest.$ac_ext <<EOF 
    3123 #line 3124 "configure" 
     3026#line 3027 "configure" 
    31243027#include "confdefs.h" 
    31253028#include <w32api.h> 
     
    31333036; return 0; } 
    31343037EOF 
    3135 if { (eval echo configure:3136: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     3038if { (eval echo configure:3039: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    31363039  rm -rf conftest* 
    31373040   res=yes  
     
    31493052        # Check windres version 
    31503053        echo $ac_n "checking for windres version >= $WINDRES_VERSION""... $ac_c" 1>&6 
    3151 echo "configure:3152: checking for windres version >= $WINDRES_VERSION" >&5 
     3054echo "configure:3055: checking for windres version >= $WINDRES_VERSION" >&5 
    31523055        _WINDRES_VERSION=`${WINDRES} --version 2>&1 | grep -i windres 2>/dev/null | $AWK '{ print $3 }'` 
    31533056        echo "$ac_t""$_WINDRES_VERSION" 1>&6 
     
    31883091    if test "x$CC" != xcc; then 
    31893092  echo $ac_n "checking whether $CC and cc understand -c and -o together""... $ac_c" 1>&6 
    3190 echo "configure:3191: checking whether $CC and cc understand -c and -o together" >&5 
     3093echo "configure:3094: checking whether $CC and cc understand -c and -o together" >&5 
    31913094else 
    31923095  echo $ac_n "checking whether cc understands -c and -o together""... $ac_c" 1>&6 
    3193 echo "configure:3194: checking whether cc understands -c and -o together" >&5 
     3096echo "configure:3097: checking whether cc understands -c and -o together" >&5 
    31943097fi 
    31953098set dummy $CC; ac_cc="`echo $2 | 
     
    32033106# existing .o file with -o, though they will create one. 
    32043107ac_try='${CC-cc} -c conftest.c -o conftest.o 1>&5' 
    3205 if { (eval echo configure:3206: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } && 
    3206    test -f conftest.o && { (eval echo configure:3207: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; 
     3108if { (eval echo configure:3109: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } && 
     3109   test -f conftest.o && { (eval echo configure:3110: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; 
    32073110then 
    32083111  eval ac_cv_prog_cc_${ac_cc}_c_o=yes 
    32093112  if test "x$CC" != xcc; then 
    32103113    # Test first that cc exists at all. 
    3211     if { ac_try='cc -c conftest.c 1>&5'; { (eval echo configure:3212: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then 
     3114    if { ac_try='cc -c conftest.c 1>&5'; { (eval echo configure:3115: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then 
    32123115      ac_try='cc -c conftest.c -o conftest.o 1>&5' 
    3213       if { (eval echo configure:3214: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } && 
    3214          test -f conftest.o && { (eval echo configure:3215: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; 
     3116      if { (eval echo configure:3117: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } && 
     3117         test -f conftest.o && { (eval echo configure:3118: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; 
    32153118      then 
    32163119        # cc works too. 
     
    32483151 
    32493152echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 
    3250 echo "configure:3251: checking how to run the C preprocessor" >&5 
     3153echo "configure:3154: checking how to run the C preprocessor" >&5 
    32513154# On Suns, sometimes $CPP names a directory. 
    32523155if test -n "$CPP" && test -d "$CPP"; then 
     
    32633166  # not just through cpp. 
    32643167  cat > conftest.$ac_ext <<EOF 
    3265 #line 3266 "configure" 
     3168#line 3169 "configure" 
    32663169#include "confdefs.h" 
    32673170#include <assert.h> 
     
    32693172EOF 
    32703173ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    3271 { (eval echo configure:3272: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     3174{ (eval echo configure:3175: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    32723175ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    32733176if test -z "$ac_err"; then 
     
    32803183  CPP="${CC-cc} -E -traditional-cpp" 
    32813184  cat > conftest.$ac_ext <<EOF 
    3282 #line 3283 "configure" 
     3185#line 3186 "configure" 
    32833186#include "confdefs.h" 
    32843187#include <assert.h> 
     
    32863189EOF 
    32873190ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    3288 { (eval echo configure:3289: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     3191{ (eval echo configure:3192: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    32893192ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    32903193if test -z "$ac_err"; then 
     
    32973200  CPP="${CC-cc} -nologo -E" 
    32983201  cat > conftest.$ac_ext <<EOF 
    3299 #line 3300 "configure" 
     3202#line 3203 "configure" 
    33003203#include "confdefs.h" 
    33013204#include <assert.h> 
     
    33033206EOF 
    33043207ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    3305 { (eval echo configure:3306: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     3208{ (eval echo configure:3209: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    33063209ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    33073210if test -z "$ac_err"; then 
     
    33283231 
    33293232echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6 
    3330 echo "configure:3331: checking how to run the C++ preprocessor" >&5 
     3233echo "configure:3234: checking how to run the C++ preprocessor" >&5 
    33313234if test -z "$CXXCPP"; then 
    33323235if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then 
     
    33413244  CXXCPP="${CXX-g++} -E" 
    33423245  cat > conftest.$ac_ext <<EOF 
    3343 #line 3344 "configure" 
     3246#line 3247 "configure" 
    33443247#include "confdefs.h" 
    33453248#include <stdlib.h> 
    33463249EOF 
    33473250ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    3348 { (eval echo configure:3349: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     3251{ (eval echo configure:3252: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    33493252ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    33503253if test -z "$ac_err"; then 
     
    34013304# ./install, which can be erroneously created by make from ./install.sh. 
    34023305echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 
    3403 echo "configure:3404: checking for a BSD compatible install" >&5 
     3306echo "configure:3307: checking for a BSD compatible install" >&5 
    34043307if test -z "$INSTALL"; then 
    34053308if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 
     
    34543357 
    34553358echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 
    3456 echo "configure:3457: checking whether ln -s works" >&5 
     3359echo "configure:3360: checking whether ln -s works" >&5 
    34573360if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 
    34583361  echo $ac_n "(cached) $ac_c" 1>&6 
     
    34793382set dummy $ac_prog; ac_word=$2 
    34803383echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3481 echo "configure:3482: checking for $ac_word" >&5 
     3384echo "configure:3385: checking for $ac_word" >&5 
    34823385if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then 
    34833386  echo $ac_n "(cached) $ac_c" 1>&6 
     
    35203423if test -z "$TINDERBOX_SKIP_PERL_VERSION_CHECK"; then 
    35213424echo $ac_n "checking for minimum required perl version >= $PERL_VERSION""... $ac_c" 1>&6 
    3522 echo "configure:3523: checking for minimum required perl version >= $PERL_VERSION" >&5 
     3425echo "configure:3426: checking for minimum required perl version >= $PERL_VERSION" >&5 
    35233426_perl_version=`PERL_VERSION=$PERL_VERSION $PERL -e 'print "$]"; if ($] >= $ENV{PERL_VERSION}) { exit(0); } else { exit(1); }' 2>&5` 
    35243427_perl_res=$? 
     
    35313434 
    35323435echo $ac_n "checking for full perl installation""... $ac_c" 1>&6 
    3533 echo "configure:3534: checking for full perl installation" >&5 
     3436echo "configure:3437: checking for full perl installation" >&5 
    35343437_perl_archlib=`$PERL -e 'use Config; if ( -d $Config{archlib} ) { exit(0); } else { exit(1); }' 2>&5` 
    35353438_perl_res=$? 
     
    35463449set dummy $ac_prog; ac_word=$2 
    35473450echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3548 echo "configure:3549: checking for $ac_word" >&5 
     3451echo "configure:3452: checking for $ac_word" >&5 
    35493452if eval "test \"`echo '$''{'ac_cv_path_PYTHON'+set}'`\" = set"; then 
    35503453  echo $ac_n "(cached) $ac_c" 1>&6 
     
    35913494set dummy $ac_prog; ac_word=$2 
    35923495echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3593 echo "configure:3594: checking for $ac_word" >&5 
     3496echo "configure:3497: checking for $ac_word" >&5 
    35943497if eval "test \"`echo '$''{'ac_cv_path_NSINSTALL_BIN'+set}'`\" = set"; then 
    35953498  echo $ac_n "(cached) $ac_c" 1>&6 
     
    36363539set dummy doxygen; ac_word=$2 
    36373540echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3638 echo "configure:3639: checking for $ac_word" >&5 
     3541echo "configure:3542: checking for $ac_word" >&5 
    36393542if eval "test \"`echo '$''{'ac_cv_path_DOXYGEN'+set}'`\" = set"; then 
    36403543  echo $ac_n "(cached) $ac_c" 1>&6 
     
    36723575set dummy whoami; ac_word=$2 
    36733576echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3674 echo "configure:3675: checking for $ac_word" >&5 
     3577echo "configure:3578: checking for $ac_word" >&5 
    36753578if eval "test \"`echo '$''{'ac_cv_path_WHOAMI'+set}'`\" = set"; then 
    36763579  echo $ac_n "(cached) $ac_c" 1>&6 
     
    37083611set dummy autoconf; ac_word=$2 
    37093612echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3710 echo "configure:3711: checking for $ac_word" >&5 
     3613echo "configure:3614: checking for $ac_word" >&5 
    37113614if eval "test \"`echo '$''{'ac_cv_path_AUTOCONF'+set}'`\" = set"; then 
    37123615  echo $ac_n "(cached) $ac_c" 1>&6 
     
    37443647set dummy unzip; ac_word=$2 
    37453648echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3746 echo "configure:3747: checking for $ac_word" >&5 
     3649echo "configure:3650: checking for $ac_word" >&5 
    37473650if eval "test \"`echo '$''{'ac_cv_path_UNZIP'+set}'`\" = set"; then 
    37483651  echo $ac_n "(cached) $ac_c" 1>&6 
     
    37823685set dummy $ac_prog; ac_word=$2 
    37833686echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3784 echo "configure:3785: checking for $ac_word" >&5 
     3687echo "configure:3688: checking for $ac_word" >&5 
    37853688if eval "test \"`echo '$''{'ac_cv_path_ZIP'+set}'`\" = set"; then 
    37863689  echo $ac_n "(cached) $ac_c" 1>&6 
     
    38233726set dummy makedepend; ac_word=$2 
    38243727echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3825 echo "configure:3826: checking for $ac_word" >&5 
     3728echo "configure:3729: checking for $ac_word" >&5 
    38263729if eval "test \"`echo '$''{'ac_cv_path_SYSTEM_MAKEDEPEND'+set}'`\" = set"; then 
    38273730  echo $ac_n "(cached) $ac_c" 1>&6 
     
    38583761set dummy xargs; ac_word=$2 
    38593762echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3860 echo "configure:3861: checking for $ac_word" >&5 
     3763echo "configure:3764: checking for $ac_word" >&5 
    38613764if eval "test \"`echo '$''{'ac_cv_path_XARGS'+set}'`\" = set"; then 
    38623765  echo $ac_n "(cached) $ac_c" 1>&6 
     
    39193822set dummy $ac_prog; ac_word=$2 
    39203823echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3921 echo "configure:3922: checking for $ac_word" >&5 
     3824echo "configure:3825: checking for $ac_word" >&5 
    39223825if eval "test \"`echo '$''{'ac_cv_path_PBBUILD'+set}'`\" = set"; then 
    39233826  echo $ac_n "(cached) $ac_c" 1>&6 
     
    39693872set dummy sdp; ac_word=$2 
    39703873echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    3971 echo "configure:3972: checking for $ac_word" >&5 
     3874echo "configure:3875: checking for $ac_word" >&5 
    39723875if eval "test \"`echo '$''{'ac_cv_path_SDP'+set}'`\" = set"; then 
    39733876  echo $ac_n "(cached) $ac_c" 1>&6 
     
    40903993   
    40913994  echo $ac_n "checking for valid compiler/Mac OS X SDK combination""... $ac_c" 1>&6 
    4092 echo "configure:4093: checking for valid compiler/Mac OS X SDK combination" >&5 
     3995echo "configure:3996: checking for valid compiler/Mac OS X SDK combination" >&5 
    40933996  ac_ext=C 
    40943997# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 
     
    40994002 
    41004003  cat > conftest.$ac_ext <<EOF 
    4101 #line 4102 "configure" 
     4004#line 4005 "configure" 
    41024005#include "confdefs.h" 
    41034006#include <new> 
     
    41074010; return 0; } 
    41084011EOF 
    4109 if { (eval echo configure:4110: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     4012if { (eval echo configure:4013: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    41104013  rm -rf conftest* 
    41114014  result=no 
     
    41384041set dummy $ac_prog; ac_word=$2 
    41394042echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    4140 echo "configure:4141: checking for $ac_word" >&5 
     4043echo "configure:4044: checking for $ac_word" >&5 
    41414044if eval "test \"`echo '$''{'ac_cv_path_MAKE'+set}'`\" = set"; then 
    41424045  echo $ac_n "(cached) $ac_c" 1>&6 
     
    41814084set dummy $ac_prog; ac_word=$2 
    41824085echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    4183 echo "configure:4184: checking for $ac_word" >&5 
     4086echo "configure:4087: checking for $ac_word" >&5 
    41844087if eval "test \"`echo '$''{'ac_cv_path_MAKE'+set}'`\" = set"; then 
    41854088  echo $ac_n "(cached) $ac_c" 1>&6 
     
    42494152# --without-x overrides everything else, but does not touch the cache. 
    42504153echo $ac_n "checking for X""... $ac_c" 1>&6 
    4251 echo "configure:4252: checking for X" >&5 
     4154echo "configure:4155: checking for X" >&5 
    42524155 
    42534156# Check whether --with-x or --without-x was given. 
     
    43114214  # First, try using that file with no special directory specified. 
    43124215cat > conftest.$ac_ext <<EOF 
    4313 #line 4314 "configure" 
     4216#line 4217 "configure" 
    43144217#include "confdefs.h" 
    43154218#include <$x_direct_test_include> 
    43164219EOF 
    43174220ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4318 { (eval echo configure:4319: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4221{ (eval echo configure:4222: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    43194222ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    43204223if test -z "$ac_err"; then 
     
    43854288  LIBS="-l$x_direct_test_library $LIBS" 
    43864289cat > conftest.$ac_ext <<EOF 
    4387 #line 4388 "configure" 
     4290#line 4291 "configure" 
    43884291#include "confdefs.h" 
    43894292 
     
    43924295; return 0; } 
    43934296EOF 
    4394 if { (eval echo configure:4395: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4297if { (eval echo configure:4298: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    43954298  rm -rf conftest* 
    43964299  LIBS="$ac_save_LIBS" 
     
    44984401    "SunOS 5"*) 
    44994402      echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6 
    4500 echo "configure:4501: checking whether -R must be followed by a space" >&5 
     4403echo "configure:4404: checking whether -R must be followed by a space" >&5 
    45014404      ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries" 
    45024405      cat > conftest.$ac_ext <<EOF 
    4503 #line 4504 "configure" 
     4406#line 4407 "configure" 
    45044407#include "confdefs.h" 
    45054408 
     
    45084411; return 0; } 
    45094412EOF 
    4510 if { (eval echo configure:4511: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4413if { (eval echo configure:4414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    45114414  rm -rf conftest* 
    45124415  ac_R_nospace=yes 
     
    45244427        LIBS="$ac_xsave_LIBS -R $x_libraries" 
    45254428        cat > conftest.$ac_ext <<EOF 
    4526 #line 4527 "configure" 
     4429#line 4430 "configure" 
    45274430#include "confdefs.h" 
    45284431 
     
    45314434; return 0; } 
    45324435EOF 
    4533 if { (eval echo configure:4534: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4436if { (eval echo configure:4437: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    45344437  rm -rf conftest* 
    45354438  ac_R_space=yes 
     
    45634466    # the Alpha needs dnet_stub (dnet does not exist). 
    45644467    echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6 
    4565 echo "configure:4566: checking for dnet_ntoa in -ldnet" >&5 
     4468echo "configure:4469: checking for dnet_ntoa in -ldnet" >&5 
    45664469ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'` 
    45674470if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    45714474LIBS="-ldnet  $LIBS" 
    45724475cat > conftest.$ac_ext <<EOF 
    4573 #line 4574 "configure" 
     4476#line 4477 "configure" 
    45744477#include "confdefs.h" 
    45754478/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    45824485; return 0; } 
    45834486EOF 
    4584 if { (eval echo configure:4585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4487if { (eval echo configure:4488: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    45854488  rm -rf conftest* 
    45864489  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    46044507    if test $ac_cv_lib_dnet_dnet_ntoa = no; then 
    46054508      echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6 
    4606 echo "configure:4607: checking for dnet_ntoa in -ldnet_stub" >&5 
     4509echo "configure:4510: checking for dnet_ntoa in -ldnet_stub" >&5 
    46074510ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'` 
    46084511if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    46124515LIBS="-ldnet_stub  $LIBS" 
    46134516cat > conftest.$ac_ext <<EOF 
    4614 #line 4615 "configure" 
     4517#line 4518 "configure" 
    46154518#include "confdefs.h" 
    46164519/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    46234526; return 0; } 
    46244527EOF 
    4625 if { (eval echo configure:4626: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4528if { (eval echo configure:4529: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    46264529  rm -rf conftest* 
    46274530  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    46524555    # on Irix 5.2, according to dickey@clark.net. 
    46534556    echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 
    4654 echo "configure:4655: checking for gethostbyname" >&5 
     4557echo "configure:4558: checking for gethostbyname" >&5 
    46554558if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 
    46564559  echo $ac_n "(cached) $ac_c" 1>&6 
    46574560else 
    46584561  cat > conftest.$ac_ext <<EOF 
    4659 #line 4660 "configure" 
     4562#line 4563 "configure" 
    46604563#include "confdefs.h" 
    46614564/* System header to define __stub macros and hopefully few prototypes, 
     
    46804583; return 0; } 
    46814584EOF 
    4682 if { (eval echo configure:4683: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4585if { (eval echo configure:4586: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    46834586  rm -rf conftest* 
    46844587  eval "ac_cv_func_gethostbyname=yes" 
     
    47014604    if test $ac_cv_func_gethostbyname = no; then 
    47024605      echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 
    4703 echo "configure:4704: checking for gethostbyname in -lnsl" >&5 
     4606echo "configure:4607: checking for gethostbyname in -lnsl" >&5 
    47044607ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` 
    47054608if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    47094612LIBS="-lnsl  $LIBS" 
    47104613cat > conftest.$ac_ext <<EOF 
    4711 #line 4712 "configure" 
     4614#line 4615 "configure" 
    47124615#include "confdefs.h" 
    47134616/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    47204623; return 0; } 
    47214624EOF 
    4722 if { (eval echo configure:4723: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4625if { (eval echo configure:4626: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    47234626  rm -rf conftest* 
    47244627  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    47504653    # We assume that if connect needs -lnsl, so does gethostbyname. 
    47514654    echo $ac_n "checking for connect""... $ac_c" 1>&6 
    4752 echo "configure:4753: checking for connect" >&5 
     4655echo "configure:4656: checking for connect" >&5 
    47534656if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then 
    47544657  echo $ac_n "(cached) $ac_c" 1>&6 
    47554658else 
    47564659  cat > conftest.$ac_ext <<EOF 
    4757 #line 4758 "configure" 
     4660#line 4661 "configure" 
    47584661#include "confdefs.h" 
    47594662/* System header to define __stub macros and hopefully few prototypes, 
     
    47784681; return 0; } 
    47794682EOF 
    4780 if { (eval echo configure:4781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4683if { (eval echo configure:4684: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    47814684  rm -rf conftest* 
    47824685  eval "ac_cv_func_connect=yes" 
     
    47994702    if test $ac_cv_func_connect = no; then 
    48004703      echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6 
    4801 echo "configure:4802: checking for connect in -lsocket" >&5 
     4704echo "configure:4705: checking for connect in -lsocket" >&5 
    48024705ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'` 
    48034706if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    48074710LIBS="-lsocket $X_EXTRA_LIBS $LIBS" 
    48084711cat > conftest.$ac_ext <<EOF 
    4809 #line 4810 "configure" 
     4712#line 4713 "configure" 
    48104713#include "confdefs.h" 
    48114714/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    48184721; return 0; } 
    48194722EOF 
    4820 if { (eval echo configure:4821: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4723if { (eval echo configure:4724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    48214724  rm -rf conftest* 
    48224725  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    48424745    # gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX. 
    48434746    echo $ac_n "checking for remove""... $ac_c" 1>&6 
    4844 echo "configure:4845: checking for remove" >&5 
     4747echo "configure:4748: checking for remove" >&5 
    48454748if eval "test \"`echo '$''{'ac_cv_func_remove'+set}'`\" = set"; then 
    48464749  echo $ac_n "(cached) $ac_c" 1>&6 
    48474750else 
    48484751  cat > conftest.$ac_ext <<EOF 
    4849 #line 4850 "configure" 
     4752#line 4753 "configure" 
    48504753#include "confdefs.h" 
    48514754/* System header to define __stub macros and hopefully few prototypes, 
     
    48704773; return 0; } 
    48714774EOF 
    4872 if { (eval echo configure:4873: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4775if { (eval echo configure:4776: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    48734776  rm -rf conftest* 
    48744777  eval "ac_cv_func_remove=yes" 
     
    48914794    if test $ac_cv_func_remove = no; then 
    48924795      echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6 
    4893 echo "configure:4894: checking for remove in -lposix" >&5 
     4796echo "configure:4797: checking for remove in -lposix" >&5 
    48944797ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'` 
    48954798if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    48994802LIBS="-lposix  $LIBS" 
    49004803cat > conftest.$ac_ext <<EOF 
    4901 #line 4902 "configure" 
     4804#line 4805 "configure" 
    49024805#include "confdefs.h" 
    49034806/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    49104813; return 0; } 
    49114814EOF 
    4912 if { (eval echo configure:4913: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4815if { (eval echo configure:4816: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    49134816  rm -rf conftest* 
    49144817  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    49344837    # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. 
    49354838    echo $ac_n "checking for shmat""... $ac_c" 1>&6 
    4936 echo "configure:4937: checking for shmat" >&5 
     4839echo "configure:4840: checking for shmat" >&5 
    49374840if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then 
    49384841  echo $ac_n "(cached) $ac_c" 1>&6 
    49394842else 
    49404843  cat > conftest.$ac_ext <<EOF 
    4941 #line 4942 "configure" 
     4844#line 4845 "configure" 
    49424845#include "confdefs.h" 
    49434846/* System header to define __stub macros and hopefully few prototypes, 
     
    49624865; return 0; } 
    49634866EOF 
    4964 if { (eval echo configure:4965: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4867if { (eval echo configure:4868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    49654868  rm -rf conftest* 
    49664869  eval "ac_cv_func_shmat=yes" 
     
    49834886    if test $ac_cv_func_shmat = no; then 
    49844887      echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6 
    4985 echo "configure:4986: checking for shmat in -lipc" >&5 
     4888echo "configure:4889: checking for shmat in -lipc" >&5 
    49864889ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'` 
    49874890if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    49914894LIBS="-lipc  $LIBS" 
    49924895cat > conftest.$ac_ext <<EOF 
    4993 #line 4994 "configure" 
     4896#line 4897 "configure" 
    49944897#include "confdefs.h" 
    49954898/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    50024905; return 0; } 
    50034906EOF 
    5004 if { (eval echo configure:5005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4907if { (eval echo configure:4908: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    50054908  rm -rf conftest* 
    50064909  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    50354938  #  --interran@uluru.Stanford.EDU, kb@cs.umb.edu. 
    50364939  echo $ac_n "checking for IceConnectionNumber in -lICE""... $ac_c" 1>&6 
    5037 echo "configure:5038: checking for IceConnectionNumber in -lICE" >&5 
     4940echo "configure:4941: checking for IceConnectionNumber in -lICE" >&5 
    50384941ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'` 
    50394942if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    50434946LIBS="-lICE $X_EXTRA_LIBS $LIBS" 
    50444947cat > conftest.$ac_ext <<EOF 
    5045 #line 5046 "configure" 
     4948#line 4949 "configure" 
    50464949#include "confdefs.h" 
    50474950/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    50544957; return 0; } 
    50554958EOF 
    5056 if { (eval echo configure:5057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4959if { (eval echo configure:4960: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    50574960  rm -rf conftest* 
    50584961  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    51435046        linux*)       OS_ARCH=Linux OS_TARGET=Linux ;; 
    51445047        kfreebsd*-gnu) OS_ARCH=GNU_kFreeBSD OS_TARGET=GNU_kFreeBSD ;; 
     5048        gnu*)         OS_ARCH=GNU ;; 
    51455049        solaris*)     OS_ARCH=SunOS OS_RELEASE=5 ;; 
    51465050        mingw*)       OS_ARCH=WINNT ;; 
     
    54505354    DSO_CFLAGS='' 
    54515355    DSO_PIC_CFLAGS='-fPIC' 
     5356    ASFLAGS="$ASFLAGS -fPIC" 
    54525357    _MOZ_RTTI_FLAGS_ON=${_COMPILER_PREFIX}-frtti 
    54535358    _MOZ_RTTI_FLAGS_OFF=${_COMPILER_PREFIX}-fno-rtti 
     
    55225427if test "$GNU_CC"; then 
    55235428  echo $ac_n "checking whether ld has archive extraction flags""... $ac_c" 1>&6 
    5524 echo "configure:5525: checking whether ld has archive extraction flags" >&5 
     5429echo "configure:5430: checking whether ld has archive extraction flags" >&5 
    55255430  if eval "test \"`echo '$''{'ac_cv_mkshlib_force_and_unforce'+set}'`\" = set"; then 
    55265431  echo $ac_n "(cached) $ac_c" 1>&6 
     
    55395444      LIBS=$unforce 
    55405445      cat > conftest.$ac_ext <<EOF 
    5541 #line 5542 "configure" 
     5446#line 5447 "configure" 
    55425447#include "confdefs.h" 
    55435448 
     
    55465451; return 0; } 
    55475452EOF 
    5548 if { (eval echo configure:5549: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     5453if { (eval echo configure:5454: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    55495454  rm -rf conftest* 
    55505455  ac_cv_mkshlib_force_and_unforce=$line; break 
     
    55795484 
    55805485echo $ac_n "checking that static assertion macros used in autoconf tests work""... $ac_c" 1>&6 
    5581 echo "configure:5582: checking that static assertion macros used in autoconf tests work" >&5 
     5486echo "configure:5487: checking that static assertion macros used in autoconf tests work" >&5 
    55825487if eval "test \"`echo '$''{'ac_cv_static_assertion_macros_work'+set}'`\" = set"; then 
    55835488  echo $ac_n "(cached) $ac_c" 1>&6 
     
    55935498  ac_cv_static_assertion_macros_work="yes" 
    55945499  cat > conftest.$ac_ext <<EOF 
    5595 #line 5596 "configure" 
     5500#line 5501 "configure" 
    55965501#include "confdefs.h" 
    55975502$configure_static_assert_macros 
     
    56005505; return 0; } 
    56015506EOF 
    5602 if { (eval echo configure:5603: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5507if { (eval echo configure:5508: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    56035508  : 
    56045509else 
     
    56105515rm -f conftest* 
    56115516  cat > conftest.$ac_ext <<EOF 
    5612 #line 5613 "configure" 
     5517#line 5518 "configure" 
    56135518#include "confdefs.h" 
    56145519$configure_static_assert_macros 
     
    56175522; return 0; } 
    56185523EOF 
    5619 if { (eval echo configure:5620: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5524if { (eval echo configure:5525: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    56205525  rm -rf conftest* 
    56215526  ac_cv_static_assertion_macros_work="no" 
     
    56335538 
    56345539  cat > conftest.$ac_ext <<EOF 
    5635 #line 5636 "configure" 
     5540#line 5541 "configure" 
    56365541#include "confdefs.h" 
    56375542$configure_static_assert_macros 
     
    56405545; return 0; } 
    56415546EOF 
    5642 if { (eval echo configure:5643: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5547if { (eval echo configure:5548: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    56435548  : 
    56445549else 
     
    56505555rm -f conftest* 
    56515556  cat > conftest.$ac_ext <<EOF 
    5652 #line 5653 "configure" 
     5557#line 5558 "configure" 
    56535558#include "confdefs.h" 
    56545559$configure_static_assert_macros 
     
    56575562; return 0; } 
    56585563EOF 
    5659 if { (eval echo configure:5660: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5564if { (eval echo configure:5565: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    56605565  rm -rf conftest* 
    56615566  ac_cv_static_assertion_macros_work="no" 
     
    56925597 
    56935598echo $ac_n "checking for 64-bit OS""... $ac_c" 1>&6 
    5694 echo "configure:5695: checking for 64-bit OS" >&5 
     5599echo "configure:5600: checking for 64-bit OS" >&5 
    56955600cat > conftest.$ac_ext <<EOF 
    5696 #line 5697 "configure" 
     5601#line 5602 "configure" 
    56975602#include "confdefs.h" 
    56985603$configure_static_assert_macros 
     
    57015606; return 0; } 
    57025607EOF 
    5703 if { (eval echo configure:5704: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5608if { (eval echo configure:5609: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    57045609  rm -rf conftest* 
    57055610  result="yes" 
     
    57935698    ;; 
    57945699 
    5795 *-linux*|*-kfreebsd*-gnu) 
     5700*-linux*|*-kfreebsd*-gnu|*-gnu*) 
    57965701    HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX" 
    57975702    HOST_NSPR_MDCPUCFG='\"md/_linux.cfg\"' 
     
    58745779 
    58755780            echo $ac_n "checking for VisualAge C++ compiler version >= 5.0.2.0""... $ac_c" 1>&6 
    5876 echo "configure:5877: checking for VisualAge C++ compiler version >= 5.0.2.0" >&5 
     5781echo "configure:5782: checking for VisualAge C++ compiler version >= 5.0.2.0" >&5 
    58775782            cat > conftest.$ac_ext <<EOF 
    5878 #line 5879 "configure" 
     5783#line 5784 "configure" 
    58795784#include "confdefs.h" 
    58805785 
     
    58855790; return 0; } 
    58865791EOF 
    5887 if { (eval echo configure:5888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5792if { (eval echo configure:5793: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    58885793  rm -rf conftest* 
    58895794  _BAD_COMPILER= 
     
    59235828ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    59245829echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    5925 echo "configure:5926: checking for $ac_hdr" >&5 
     5830echo "configure:5831: checking for $ac_hdr" >&5 
    59265831if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    59275832  echo $ac_n "(cached) $ac_c" 1>&6 
    59285833else 
    59295834  cat > conftest.$ac_ext <<EOF 
    5930 #line 5931 "configure" 
     5835#line 5836 "configure" 
    59315836#include "confdefs.h" 
    59325837#include <$ac_hdr> 
    59335838EOF 
    59345839ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    5935 { (eval echo configure:5936: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     5840{ (eval echo configure:5841: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    59365841ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    59375842if test -z "$ac_err"; then 
     
    59755880    if test "$COMPILE_ENVIRONMENT"; then 
    59765881        echo $ac_n "checking for main in -lbind""... $ac_c" 1>&6 
    5977 echo "configure:5978: checking for main in -lbind" >&5 
     5882echo "configure:5883: checking for main in -lbind" >&5 
    59785883ac_lib_var=`echo bind'_'main | sed 'y%./+-%__p_%'` 
    59795884if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    59835888LIBS="-lbind  $LIBS" 
    59845889cat > conftest.$ac_ext <<EOF 
    5985 #line 5986 "configure" 
     5890#line 5891 "configure" 
    59865891#include "confdefs.h" 
    59875892 
     
    59905895; return 0; } 
    59915896EOF 
    5992 if { (eval echo configure:5993: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     5897if { (eval echo configure:5898: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    59935898  rm -rf conftest* 
    59945899  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    60115916 
    60125917        echo $ac_n "checking for main in -lzeta""... $ac_c" 1>&6 
    6013 echo "configure:6014: checking for main in -lzeta" >&5 
     5918echo "configure:5919: checking for main in -lzeta" >&5 
    60145919ac_lib_var=`echo zeta'_'main | sed 'y%./+-%__p_%'` 
    60155920if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    60195924LIBS="-lzeta  $LIBS" 
    60205925cat > conftest.$ac_ext <<EOF 
    6021 #line 6022 "configure" 
     5926#line 5927 "configure" 
    60225927#include "confdefs.h" 
    60235928 
     
    60265931; return 0; } 
    60275932EOF 
    6028 if { (eval echo configure:6029: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     5933if { (eval echo configure:5934: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    60295934  rm -rf conftest* 
    60305935  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    60956000 
    60966001        echo $ac_n "checking for -dead_strip option to ld""... $ac_c" 1>&6 
    6097 echo "configure:6098: checking for -dead_strip option to ld" >&5 
     6002echo "configure:6003: checking for -dead_strip option to ld" >&5 
    60986003    _SAVE_LDFLAGS=$LDFLAGS 
    60996004    LDFLAGS="$LDFLAGS -Wl,-dead_strip" 
    61006005    cat > conftest.$ac_ext <<EOF 
    6101 #line 6102 "configure" 
     6006#line 6007 "configure" 
    61026007#include "confdefs.h" 
    61036008 
     
    61066011; return 0; } 
    61076012EOF 
    6108 if { (eval echo configure:6109: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     6013if { (eval echo configure:6014: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    61096014  rm -rf conftest* 
    61106015  _HAVE_DEAD_STRIP=1 
     
    62596164    ;; 
    62606165    mips*) 
    6261         CFLAGS="$CFLAGS -Wa,-xgot" 
    6262         CXXFLAGS="$CXXFLAGS -Wa,-xgot" 
     6166        MOZ_DEBUG_FLAGS="-g" # We want inlining 
    62636167    ;; 
    62646168    esac 
     
    66316535ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    66326536echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    6633 echo "configure:6634: checking for $ac_hdr" >&5 
     6537echo "configure:6538: checking for $ac_hdr" >&5 
    66346538if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    66356539  echo $ac_n "(cached) $ac_c" 1>&6 
    66366540else 
    66376541  cat > conftest.$ac_ext <<EOF 
    6638 #line 6639 "configure" 
     6542#line 6543 "configure" 
    66396543#include "confdefs.h" 
    66406544#include <$ac_hdr> 
    66416545EOF 
    66426546ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    6643 { (eval echo configure:6644: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     6547{ (eval echo configure:6548: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    66446548ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    66456549if test -z "$ac_err"; then 
     
    66806584ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    66816585echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    6682 echo "configure:6683: checking for $ac_hdr" >&5 
     6586echo "configure:6587: checking for $ac_hdr" >&5 
    66836587if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    66846588  echo $ac_n "(cached) $ac_c" 1>&6 
    66856589else 
    66866590  cat > conftest.$ac_ext <<EOF 
    6687 #line 6688 "configure" 
     6591#line 6592 "configure" 
    66886592#include "confdefs.h" 
    66896593#include <$ac_hdr> 
    66906594EOF 
    66916595ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    6692 { (eval echo configure:6693: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     6596{ (eval echo configure:6597: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    66936597ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    66946598if test -z "$ac_err"; then 
     
    69366840 
    69376841        echo $ac_n "checking for __declspec(dllexport)""... $ac_c" 1>&6 
    6938 echo "configure:6939: checking for __declspec(dllexport)" >&5 
     6842echo "configure:6843: checking for __declspec(dllexport)" >&5 
    69396843if eval "test \"`echo '$''{'ac_os2_declspec'+set}'`\" = set"; then 
    69406844  echo $ac_n "(cached) $ac_c" 1>&6 
    69416845else 
    69426846  cat > conftest.$ac_ext <<EOF 
    6943 #line 6944 "configure" 
     6847#line 6848 "configure" 
    69446848#include "confdefs.h" 
    69456849__declspec(dllexport) void ac_os2_declspec(void) {} 
     
    69486852; return 0; } 
    69496853EOF 
    6950 if { (eval echo configure:6951: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     6854if { (eval echo configure:6855: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    69516855  rm -rf conftest* 
    69526856  ac_os2_declspec="yes" 
     
    71347038           LDFLAGS="-M /usr/lib/ld/map.noexstk $LDFLAGS"  
    71357039           cat > conftest.$ac_ext <<EOF 
    7136 #line 7137 "configure" 
     7040#line 7041 "configure" 
    71377041#include "confdefs.h" 
    71387042#include <stdio.h> 
     
    71417045; return 0; } 
    71427046EOF 
    7143 if { (eval echo configure:7144: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     7047if { (eval echo configure:7048: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    71447048  : 
    71457049else 
     
    71707074        CXX_VERSION=`$CXX -V 2>&1 | grep '^CC:' 2>/dev/null | $AWK -F\: '{ print $2 }'` 
    71717075       echo $ac_n "checking for Forte compiler version >= WS6U2""... $ac_c" 1>&6 
    7172 echo "configure:7173: checking for Forte compiler version >= WS6U2" >&5 
     7076echo "configure:7077: checking for Forte compiler version >= WS6U2" >&5 
    71737077        
    71747078       ac_ext=C 
     
    71807084 
    71817085       cat > conftest.$ac_ext <<EOF 
    7182 #line 7183 "configure" 
     7086#line 7087 "configure" 
    71837087#include "confdefs.h" 
    71847088 
     
    71897093; return 0; } 
    71907094EOF 
    7191 if { (eval echo configure:7192: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7095if { (eval echo configure:7096: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    71927096  rm -rf conftest* 
    71937097  _BAD_COMPILER= 
     
    72997203 
    73007204case "$target" in 
    7301     *-linux*|*-kfreebsd*-gnu) 
     7205    *-linux*|*-kfreebsd*-gnu|*-gnu*) 
    73027206        MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,--version-script -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-version-script' 
    73037207        ;; 
     
    73407244 
    73417245echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 
    7342 echo "configure:7343: checking for ANSI C header files" >&5 
     7246echo "configure:7247: checking for ANSI C header files" >&5 
    73437247if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 
    73447248  echo $ac_n "(cached) $ac_c" 1>&6 
    73457249else 
    73467250  cat > conftest.$ac_ext <<EOF 
    7347 #line 7348 "configure" 
     7251#line 7252 "configure" 
    73487252#include "confdefs.h" 
    73497253#include <stdlib.h> 
     
    73537257EOF 
    73547258ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    7355 { (eval echo configure:7356: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     7259{ (eval echo configure:7260: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    73567260ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    73577261if test -z "$ac_err"; then 
     
    73707274  # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 
    73717275cat > conftest.$ac_ext <<EOF 
    7372 #line 7373 "configure" 
     7276#line 7277 "configure" 
    73737277#include "confdefs.h" 
    73747278#include <string.h> 
     
    73887292  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 
    73897293cat > conftest.$ac_ext <<EOF 
    7390 #line 7391 "configure" 
     7294#line 7295 "configure" 
    73917295#include "confdefs.h" 
    73927296#include <stdlib.h> 
     
    74097313else 
    74107314  cat > conftest.$ac_ext <<EOF 
    7411 #line 7412 "configure" 
     7315#line 7316 "configure" 
    74127316#include "confdefs.h" 
    74137317#include <ctype.h> 
     
    74207324 
    74217325EOF 
    7422 if { (eval echo configure:7423: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     7326if { (eval echo configure:7327: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    74237327then 
    74247328  : 
     
    74447348 
    74457349echo $ac_n "checking for working const""... $ac_c" 1>&6 
    7446 echo "configure:7447: checking for working const" >&5 
     7350echo "configure:7351: checking for working const" >&5 
    74477351if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 
    74487352  echo $ac_n "(cached) $ac_c" 1>&6 
    74497353else 
    74507354  cat > conftest.$ac_ext <<EOF 
    7451 #line 7452 "configure" 
     7355#line 7356 "configure" 
    74527356#include "confdefs.h" 
    74537357 
     
    74987402; return 0; } 
    74997403EOF 
    7500 if { (eval echo configure:7501: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7404if { (eval echo configure:7405: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    75017405  rm -rf conftest* 
    75027406  ac_cv_c_const=yes 
     
    75197423 
    75207424echo $ac_n "checking for mode_t""... $ac_c" 1>&6 
    7521 echo "configure:7522: checking for mode_t" >&5 
     7425echo "configure:7426: checking for mode_t" >&5 
    75227426if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then 
    75237427  echo $ac_n "(cached) $ac_c" 1>&6 
    75247428else 
    75257429  cat > conftest.$ac_ext <<EOF 
    7526 #line 7527 "configure" 
     7430#line 7431 "configure" 
    75277431#include "confdefs.h" 
    75287432#include <sys/types.h> 
     
    75527456 
    75537457echo $ac_n "checking for off_t""... $ac_c" 1>&6 
    7554 echo "configure:7555: checking for off_t" >&5 
     7458echo "configure:7459: checking for off_t" >&5 
    75557459if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then 
    75567460  echo $ac_n "(cached) $ac_c" 1>&6 
    75577461else 
    75587462  cat > conftest.$ac_ext <<EOF 
    7559 #line 7560 "configure" 
     7463#line 7464 "configure" 
    75607464#include "confdefs.h" 
    75617465#include <sys/types.h> 
     
    75857489 
    75867490echo $ac_n "checking for pid_t""... $ac_c" 1>&6 
    7587 echo "configure:7588: checking for pid_t" >&5 
     7491echo "configure:7492: checking for pid_t" >&5 
    75887492if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then 
    75897493  echo $ac_n "(cached) $ac_c" 1>&6 
    75907494else 
    75917495  cat > conftest.$ac_ext <<EOF 
    7592 #line 7593 "configure" 
     7496#line 7497 "configure" 
    75937497#include "confdefs.h" 
    75947498#include <sys/types.h> 
     
    76187522 
    76197523echo $ac_n "checking for size_t""... $ac_c" 1>&6 
    7620 echo "configure:7621: checking for size_t" >&5 
     7524echo "configure:7525: checking for size_t" >&5 
    76217525if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 
    76227526  echo $ac_n "(cached) $ac_c" 1>&6 
    76237527else 
    76247528  cat > conftest.$ac_ext <<EOF 
    7625 #line 7626 "configure" 
     7529#line 7530 "configure" 
    76267530#include "confdefs.h" 
    76277531#include <sys/types.h> 
     
    76517555 
    76527556echo $ac_n "checking for st_blksize in struct stat""... $ac_c" 1>&6 
    7653 echo "configure:7654: checking for st_blksize in struct stat" >&5 
     7557echo "configure:7558: checking for st_blksize in struct stat" >&5 
    76547558if eval "test \"`echo '$''{'ac_cv_struct_st_blksize'+set}'`\" = set"; then 
    76557559  echo $ac_n "(cached) $ac_c" 1>&6 
    76567560else 
    76577561  cat > conftest.$ac_ext <<EOF 
    7658 #line 7659 "configure" 
     7562#line 7563 "configure" 
    76597563#include "confdefs.h" 
    76607564#include <sys/types.h> 
     
    76647568; return 0; } 
    76657569EOF 
    7666 if { (eval echo configure:7667: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7570if { (eval echo configure:7571: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    76677571  rm -rf conftest* 
    76687572  ac_cv_struct_st_blksize=yes 
     
    76857589 
    76867590echo $ac_n "checking for siginfo_t""... $ac_c" 1>&6 
    7687 echo "configure:7688: checking for siginfo_t" >&5 
     7591echo "configure:7592: checking for siginfo_t" >&5 
    76887592if eval "test \"`echo '$''{'ac_cv_siginfo_t'+set}'`\" = set"; then 
    76897593  echo $ac_n "(cached) $ac_c" 1>&6 
    76907594else 
    76917595  cat > conftest.$ac_ext <<EOF 
    7692 #line 7693 "configure" 
     7596#line 7597 "configure" 
    76937597#include "confdefs.h" 
    76947598#define _POSIX_C_SOURCE 199506L 
     
    76987602; return 0; } 
    76997603EOF 
    7700 if { (eval echo configure:7701: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7604if { (eval echo configure:7605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    77017605  rm -rf conftest* 
    77027606  ac_cv_siginfo_t=true 
     
    77327636 
    77337637echo $ac_n "checking for int16_t""... $ac_c" 1>&6 
    7734 echo "configure:7735: checking for int16_t" >&5 
     7638echo "configure:7639: checking for int16_t" >&5 
    77357639if eval "test \"`echo '$''{'ac_cv_int16_t'+set}'`\" = set"; then 
    77367640  echo $ac_n "(cached) $ac_c" 1>&6 
    77377641else 
    77387642  cat > conftest.$ac_ext <<EOF 
    7739 #line 7740 "configure" 
     7643#line 7644 "configure" 
    77407644#include "confdefs.h" 
    77417645#include <stdio.h> 
     
    77457649; return 0; } 
    77467650EOF 
    7747 if { (eval echo configure:7748: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7651if { (eval echo configure:7652: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    77487652  rm -rf conftest* 
    77497653  ac_cv_int16_t=true 
     
    77677671fi 
    77687672echo $ac_n "checking for int32_t""... $ac_c" 1>&6 
    7769 echo "configure:7770: checking for int32_t" >&5 
     7673echo "configure:7674: checking for int32_t" >&5 
    77707674if eval "test \"`echo '$''{'ac_cv_int32_t'+set}'`\" = set"; then 
    77717675  echo $ac_n "(cached) $ac_c" 1>&6 
    77727676else 
    77737677  cat > conftest.$ac_ext <<EOF 
    7774 #line 7775 "configure" 
     7678#line 7679 "configure" 
    77757679#include "confdefs.h" 
    77767680#include <stdio.h> 
     
    77807684; return 0; } 
    77817685EOF 
    7782 if { (eval echo configure:7783: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7686if { (eval echo configure:7687: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    77837687  rm -rf conftest* 
    77847688  ac_cv_int32_t=true 
     
    78027706fi 
    78037707echo $ac_n "checking for int64_t""... $ac_c" 1>&6 
    7804 echo "configure:7805: checking for int64_t" >&5 
     7708echo "configure:7709: checking for int64_t" >&5 
    78057709if eval "test \"`echo '$''{'ac_cv_int64_t'+set}'`\" = set"; then 
    78067710  echo $ac_n "(cached) $ac_c" 1>&6 
    78077711else 
    78087712  cat > conftest.$ac_ext <<EOF 
    7809 #line 7810 "configure" 
     7713#line 7714 "configure" 
    78107714#include "confdefs.h" 
    78117715#include <stdio.h> 
     
    78157719; return 0; } 
    78167720EOF 
    7817 if { (eval echo configure:7818: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7721if { (eval echo configure:7722: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    78187722  rm -rf conftest* 
    78197723  ac_cv_int64_t=true 
     
    78377741fi 
    78387742echo $ac_n "checking for int64""... $ac_c" 1>&6 
    7839 echo "configure:7840: checking for int64" >&5 
     7743echo "configure:7744: checking for int64" >&5 
    78407744if eval "test \"`echo '$''{'ac_cv_int64'+set}'`\" = set"; then 
    78417745  echo $ac_n "(cached) $ac_c" 1>&6 
    78427746else 
    78437747  cat > conftest.$ac_ext <<EOF 
    7844 #line 7845 "configure" 
     7748#line 7749 "configure" 
    78457749#include "confdefs.h" 
    78467750#include <stdio.h> 
     
    78507754; return 0; } 
    78517755EOF 
    7852 if { (eval echo configure:7853: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7756if { (eval echo configure:7757: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    78537757  rm -rf conftest* 
    78547758  ac_cv_int64=true 
     
    78727776fi 
    78737777echo $ac_n "checking for uint""... $ac_c" 1>&6 
    7874 echo "configure:7875: checking for uint" >&5 
     7778echo "configure:7779: checking for uint" >&5 
    78757779if eval "test \"`echo '$''{'ac_cv_uint'+set}'`\" = set"; then 
    78767780  echo $ac_n "(cached) $ac_c" 1>&6 
    78777781else 
    78787782  cat > conftest.$ac_ext <<EOF 
    7879 #line 7880 "configure" 
     7783#line 7784 "configure" 
    78807784#include "confdefs.h" 
    78817785#include <stdio.h> 
     
    78857789; return 0; } 
    78867790EOF 
    7887 if { (eval echo configure:7888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7791if { (eval echo configure:7792: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    78887792  rm -rf conftest* 
    78897793  ac_cv_uint=true 
     
    79077811fi 
    79087812echo $ac_n "checking for uint_t""... $ac_c" 1>&6 
    7909 echo "configure:7910: checking for uint_t" >&5 
     7813echo "configure:7814: checking for uint_t" >&5 
    79107814if eval "test \"`echo '$''{'ac_cv_uint_t'+set}'`\" = set"; then 
    79117815  echo $ac_n "(cached) $ac_c" 1>&6 
    79127816else 
    79137817  cat > conftest.$ac_ext <<EOF 
    7914 #line 7915 "configure" 
     7818#line 7819 "configure" 
    79157819#include "confdefs.h" 
    79167820#include <stdio.h> 
     
    79207824; return 0; } 
    79217825EOF 
    7922 if { (eval echo configure:7923: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7826if { (eval echo configure:7827: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    79237827  rm -rf conftest* 
    79247828  ac_cv_uint_t=true 
     
    79427846fi 
    79437847echo $ac_n "checking for uint16_t""... $ac_c" 1>&6 
    7944 echo "configure:7945: checking for uint16_t" >&5 
     7848echo "configure:7849: checking for uint16_t" >&5 
    79457849if eval "test \"`echo '$''{'ac_cv_uint16_t'+set}'`\" = set"; then 
    79467850  echo $ac_n "(cached) $ac_c" 1>&6 
    79477851else 
    79487852  cat > conftest.$ac_ext <<EOF 
    7949 #line 7950 "configure" 
     7853#line 7854 "configure" 
    79507854#include "confdefs.h" 
    79517855#include <stdio.h> 
     
    79557859; return 0; } 
    79567860EOF 
    7957 if { (eval echo configure:7958: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7861if { (eval echo configure:7862: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    79587862  rm -rf conftest* 
    79597863  ac_cv_uint16_t=true 
     
    79867890 
    79877891echo $ac_n "checking for uname.domainname""... $ac_c" 1>&6 
    7988 echo "configure:7989: checking for uname.domainname" >&5 
     7892echo "configure:7893: checking for uname.domainname" >&5 
    79897893if eval "test \"`echo '$''{'ac_cv_have_uname_domainname_field'+set}'`\" = set"; then 
    79907894  echo $ac_n "(cached) $ac_c" 1>&6 
    79917895else 
    79927896  cat > conftest.$ac_ext <<EOF 
    7993 #line 7994 "configure" 
     7897#line 7898 "configure" 
    79947898#include "confdefs.h" 
    79957899#include <sys/utsname.h> 
     
    79997903; return 0; } 
    80007904EOF 
    8001 if { (eval echo configure:8002: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7905if { (eval echo configure:7906: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    80027906  rm -rf conftest* 
    80037907  ac_cv_have_uname_domainname_field=true 
     
    80237927 
    80247928echo $ac_n "checking for uname.__domainname""... $ac_c" 1>&6 
    8025 echo "configure:8026: checking for uname.__domainname" >&5 
     7929echo "configure:7930: checking for uname.__domainname" >&5 
    80267930if eval "test \"`echo '$''{'ac_cv_have_uname_us_domainname_field'+set}'`\" = set"; then 
    80277931  echo $ac_n "(cached) $ac_c" 1>&6 
    80287932else 
    80297933  cat > conftest.$ac_ext <<EOF 
    8030 #line 8031 "configure" 
     7934#line 7935 "configure" 
    80317935#include "confdefs.h" 
    80327936#include <sys/utsname.h> 
     
    80367940; return 0; } 
    80377941EOF 
    8038 if { (eval echo configure:8039: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7942if { (eval echo configure:7943: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    80397943  rm -rf conftest* 
    80407944  ac_cv_have_uname_us_domainname_field=true 
     
    80697973 
    80707974echo $ac_n "checking for usable wchar_t (2 bytes, unsigned)""... $ac_c" 1>&6 
    8071 echo "configure:8072: checking for usable wchar_t (2 bytes, unsigned)" >&5 
     7975echo "configure:7976: checking for usable wchar_t (2 bytes, unsigned)" >&5 
    80727976if eval "test \"`echo '$''{'ac_cv_have_usable_wchar_v2'+set}'`\" = set"; then 
    80737977  echo $ac_n "(cached) $ac_c" 1>&6 
    80747978else 
    80757979  cat > conftest.$ac_ext <<EOF 
    8076 #line 8077 "configure" 
     7980#line 7981 "configure" 
    80777981#include "confdefs.h" 
    80787982#include <stddef.h> 
     
    80837987; return 0; } 
    80847988EOF 
    8085 if { (eval echo configure:8086: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     7989if { (eval echo configure:7990: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    80867990  rm -rf conftest* 
    80877991  ac_cv_have_usable_wchar_v2="yes" 
     
    81168020 
    81178021    echo $ac_n "checking for compiler -fshort-wchar option""... $ac_c" 1>&6 
    8118 echo "configure:8119: checking for compiler -fshort-wchar option" >&5 
     8022echo "configure:8023: checking for compiler -fshort-wchar option" >&5 
    81198023if eval "test \"`echo '$''{'ac_cv_have_usable_wchar_option_v2'+set}'`\" = set"; then 
    81208024  echo $ac_n "(cached) $ac_c" 1>&6 
    81218025else 
    81228026  cat > conftest.$ac_ext <<EOF 
    8123 #line 8124 "configure" 
     8027#line 8028 "configure" 
    81248028#include "confdefs.h" 
    81258029#include <stddef.h> 
     
    81308034; return 0; } 
    81318035EOF 
    8132 if { (eval echo configure:8133: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     8036if { (eval echo configure:8037: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    81338037  rm -rf conftest* 
    81348038  ac_cv_have_usable_wchar_option_v2="yes" 
     
    81648068if test "$GNU_CC"; then 
    81658069  echo $ac_n "checking for visibility(hidden) attribute""... $ac_c" 1>&6 
    8166 echo "configure:8167: checking for visibility(hidden) attribute" >&5 
     8070echo "configure:8071: checking for visibility(hidden) attribute" >&5 
    81678071if eval "test \"`echo '$''{'ac_cv_visibility_hidden'+set}'`\" = set"; then 
    81688072  echo $ac_n "(cached) $ac_c" 1>&6 
     
    81898093 
    81908094    echo $ac_n "checking for visibility(default) attribute""... $ac_c" 1>&6 
    8191 echo "configure:8192: checking for visibility(default) attribute" >&5 
     8095echo "configure:8096: checking for visibility(default) attribute" >&5 
    81928096if eval "test \"`echo '$''{'ac_cv_visibility_default'+set}'`\" = set"; then 
    81938097  echo $ac_n "(cached) $ac_c" 1>&6 
     
    82148118 
    82158119      echo $ac_n "checking for visibility pragma support""... $ac_c" 1>&6 
    8216 echo "configure:8217: checking for visibility pragma support" >&5 
     8120echo "configure:8121: checking for visibility pragma support" >&5 
    82178121if eval "test \"`echo '$''{'ac_cv_visibility_pragma'+set}'`\" = set"; then 
    82188122  echo $ac_n "(cached) $ac_c" 1>&6 
     
    82398143      if test "$ac_cv_visibility_pragma" = "yes"; then 
    82408144        echo $ac_n "checking For gcc visibility bug with class-level attributes (GCC bug 26905)""... $ac_c" 1>&6 
    8241 echo "configure:8242: checking For gcc visibility bug with class-level attributes (GCC bug 26905)" >&5 
     8145echo "configure:8146: checking For gcc visibility bug with class-level attributes (GCC bug 26905)" >&5 
    82428146if eval "test \"`echo '$''{'ac_cv_have_visibility_class_bug'+set}'`\" = set"; then 
    82438147  echo $ac_n "(cached) $ac_c" 1>&6 
     
    82678171 
    82688172        echo $ac_n "checking For x86_64 gcc visibility bug with builtins (GCC bug 20297)""... $ac_c" 1>&6 
    8269 echo "configure:8270: checking For x86_64 gcc visibility bug with builtins (GCC bug 20297)" >&5 
     8173echo "configure:8174: checking For x86_64 gcc visibility bug with builtins (GCC bug 20297)" >&5 
    82708174if eval "test \"`echo '$''{'ac_cv_have_visibility_builtin_bug'+set}'`\" = set"; then 
    82718175  echo $ac_n "(cached) $ac_c" 1>&6 
     
    83158219ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    83168220echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6 
    8317 echo "configure:8318: checking for $ac_hdr that defines DIR" >&5 
     8221echo "configure:8222: checking for $ac_hdr that defines DIR" >&5 
    83188222if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then 
    83198223  echo $ac_n "(cached) $ac_c" 1>&6 
    83208224else 
    83218225  cat > conftest.$ac_ext <<EOF 
    8322 #line 8323 "configure" 
     8226#line 8227 "configure" 
    83238227#include "confdefs.h" 
    83248228#include <sys/types.h> 
     
    83288232; return 0; } 
    83298233EOF 
    8330 if { (eval echo configure:8331: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     8234if { (eval echo configure:8235: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    83318235  rm -rf conftest* 
    83328236  eval "ac_cv_header_dirent_$ac_safe=yes" 
     
    83538257if test $ac_header_dirent = dirent.h; then 
    83548258echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6 
    8355 echo "configure:8356: checking for opendir in -ldir" >&5 
     8259echo "configure:8260: checking for opendir in -ldir" >&5 
    83568260ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'` 
    83578261if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    83618265LIBS="-ldir  $LIBS" 
    83628266cat > conftest.$ac_ext <<EOF 
    8363 #line 8364 "configure" 
     8267#line 8268 "configure" 
    83648268#include "confdefs.h" 
    83658269/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    83728276; return 0; } 
    83738277EOF 
    8374 if { (eval echo configure:8375: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     8278if { (eval echo configure:8279: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    83758279  rm -rf conftest* 
    83768280  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    83948298else 
    83958299echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 
    8396 echo "configure:8397: checking for opendir in -lx" >&5 
     8300echo "configure:8301: checking for opendir in -lx" >&5 
    83978301ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'` 
    83988302if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    84028306LIBS="-lx  $LIBS" 
    84038307cat > conftest.$ac_ext <<EOF 
    8404 #line 8405 "configure" 
     8308#line 8309 "configure" 
    84058309#include "confdefs.h" 
    84068310/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    84138317; return 0; } 
    84148318EOF 
    8415 if { (eval echo configure:8416: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     8319if { (eval echo configure:8320: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    84168320  rm -rf conftest* 
    84178321  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    84458349ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    84468350echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8447 echo "configure:8448: checking for $ac_hdr" >&5 
     8351echo "configure:8352: checking for $ac_hdr" >&5 
    84488352if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    84498353  echo $ac_n "(cached) $ac_c" 1>&6 
    84508354else 
    84518355  cat > conftest.$ac_ext <<EOF 
    8452 #line 8453 "configure" 
     8356#line 8357 "configure" 
    84538357#include "confdefs.h" 
    84548358#include <$ac_hdr> 
    84558359EOF 
    84568360ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8457 { (eval echo configure:8458: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8361{ (eval echo configure:8362: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    84588362ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    84598363if test -z "$ac_err"; then 
     
    84858389ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    84868390echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8487 echo "configure:8488: checking for $ac_hdr" >&5 
     8391echo "configure:8392: checking for $ac_hdr" >&5 
    84888392if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    84898393  echo $ac_n "(cached) $ac_c" 1>&6 
    84908394else 
    84918395  cat > conftest.$ac_ext <<EOF 
    8492 #line 8493 "configure" 
     8396#line 8397 "configure" 
    84938397#include "confdefs.h" 
    84948398#include <$ac_hdr> 
    84958399EOF 
    84968400ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8497 { (eval echo configure:8498: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8401{ (eval echo configure:8402: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    84988402ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    84998403if test -z "$ac_err"; then 
     
    85258429ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    85268430echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8527 echo "configure:8528: checking for $ac_hdr" >&5 
     8431echo "configure:8432: checking for $ac_hdr" >&5 
    85288432if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    85298433  echo $ac_n "(cached) $ac_c" 1>&6 
    85308434else 
    85318435  cat > conftest.$ac_ext <<EOF 
    8532 #line 8533 "configure" 
     8436#line 8437 "configure" 
    85338437#include "confdefs.h" 
    85348438#include <$ac_hdr> 
    85358439EOF 
    85368440ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8537 { (eval echo configure:8538: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8441{ (eval echo configure:8442: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    85388442ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    85398443if test -z "$ac_err"; then 
     
    85658469ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    85668470echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8567 echo "configure:8568: checking for $ac_hdr" >&5 
     8471echo "configure:8472: checking for $ac_hdr" >&5 
    85688472if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    85698473  echo $ac_n "(cached) $ac_c" 1>&6 
    85708474else 
    85718475  cat > conftest.$ac_ext <<EOF 
    8572 #line 8573 "configure" 
     8476#line 8477 "configure" 
    85738477#include "confdefs.h" 
    85748478#include <$ac_hdr> 
    85758479EOF 
    85768480ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8577 { (eval echo configure:8578: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8481{ (eval echo configure:8482: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    85788482ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    85798483if test -z "$ac_err"; then 
     
    86058509ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    86068510echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8607 echo "configure:8608: checking for $ac_hdr" >&5 
     8511echo "configure:8512: checking for $ac_hdr" >&5 
    86088512if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    86098513  echo $ac_n "(cached) $ac_c" 1>&6 
    86108514else 
    86118515  cat > conftest.$ac_ext <<EOF 
    8612 #line 8613 "configure" 
     8516#line 8517 "configure" 
    86138517#include "confdefs.h" 
    86148518#include <$ac_hdr> 
    86158519EOF 
    86168520ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8617 { (eval echo configure:8618: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8521{ (eval echo configure:8522: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    86188522ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    86198523if test -z "$ac_err"; then 
     
    86468550ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    86478551echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8648 echo "configure:8649: checking for $ac_hdr" >&5 
     8552echo "configure:8553: checking for $ac_hdr" >&5 
    86498553if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    86508554  echo $ac_n "(cached) $ac_c" 1>&6 
    86518555else 
    86528556  cat > conftest.$ac_ext <<EOF 
    8653 #line 8654 "configure" 
     8557#line 8558 "configure" 
    86548558#include "confdefs.h" 
    86558559#include <$ac_hdr> 
    86568560EOF 
    86578561ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8658 { (eval echo configure:8659: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8562{ (eval echo configure:8563: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    86598563ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    86608564if test -z "$ac_err"; then 
     
    86878591ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    86888592echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8689 echo "configure:8690: checking for $ac_hdr" >&5 
     8593echo "configure:8594: checking for $ac_hdr" >&5 
    86908594if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    86918595  echo $ac_n "(cached) $ac_c" 1>&6 
    86928596else 
    86938597  cat > conftest.$ac_ext <<EOF 
    8694 #line 8695 "configure" 
     8598#line 8599 "configure" 
    86958599#include "confdefs.h" 
    86968600#include <$ac_hdr> 
    86978601EOF 
    86988602ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8699 { (eval echo configure:8700: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8603{ (eval echo configure:8604: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    87008604ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    87018605if test -z "$ac_err"; then 
     
    87348638ac_safe=`echo "new" | sed 'y%./+-%__p_%'` 
    87358639echo $ac_n "checking for new""... $ac_c" 1>&6 
    8736 echo "configure:8737: checking for new" >&5 
     8640echo "configure:8641: checking for new" >&5 
    87378641if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    87388642  echo $ac_n "(cached) $ac_c" 1>&6 
    87398643else 
    87408644  cat > conftest.$ac_ext <<EOF 
    8741 #line 8742 "configure" 
     8645#line 8646 "configure" 
    87428646#include "confdefs.h" 
    87438647#include <new> 
    87448648EOF 
    87458649ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8746 { (eval echo configure:8747: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8650{ (eval echo configure:8651: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    87478651ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    87488652if test -z "$ac_err"; then 
     
    87868690  ac_safe=`echo "sys/sdt.h" | sed 'y%./+-%__p_%'` 
    87878691echo $ac_n "checking for sys/sdt.h""... $ac_c" 1>&6 
    8788 echo "configure:8789: checking for sys/sdt.h" >&5 
     8692echo "configure:8693: checking for sys/sdt.h" >&5 
    87898693if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    87908694  echo $ac_n "(cached) $ac_c" 1>&6 
    87918695else 
    87928696  cat > conftest.$ac_ext <<EOF 
    8793 #line 8794 "configure" 
     8697#line 8698 "configure" 
    87948698#include "confdefs.h" 
    87958699#include <sys/sdt.h> 
    87968700EOF 
    87978701ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8798 { (eval echo configure:8799: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8702{ (eval echo configure:8703: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    87998703ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    88008704if test -z "$ac_err"; then 
     
    88368740ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    88378741echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    8838 echo "configure:8839: checking for $ac_hdr" >&5 
     8742echo "configure:8743: checking for $ac_hdr" >&5 
    88398743if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    88408744  echo $ac_n "(cached) $ac_c" 1>&6 
    88418745else 
    88428746  cat > conftest.$ac_ext <<EOF 
    8843 #line 8844 "configure" 
     8747#line 8748 "configure" 
    88448748#include "confdefs.h" 
    88458749#include <$ac_hdr> 
    88468750EOF 
    88478751ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    8848 { (eval echo configure:8849: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8752{ (eval echo configure:8753: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    88498753ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    88508754if test -z "$ac_err"; then 
     
    88808784*) 
    88818785        echo $ac_n "checking for gethostbyname_r in -lc_r""... $ac_c" 1>&6 
    8882 echo "configure:8883: checking for gethostbyname_r in -lc_r" >&5 
     8786echo "configure:8787: checking for gethostbyname_r in -lc_r" >&5 
    88838787ac_lib_var=`echo c_r'_'gethostbyname_r | sed 'y%./+-%__p_%'` 
    88848788if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    88888792LIBS="-lc_r  $LIBS" 
    88898793cat > conftest.$ac_ext <<EOF 
    8890 #line 8891 "configure" 
     8794#line 8795 "configure" 
    88918795#include "confdefs.h" 
    88928796/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    88998803; return 0; } 
    89008804EOF 
    8901 if { (eval echo configure:8902: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     8805if { (eval echo configure:8806: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    89028806  rm -rf conftest* 
    89038807  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    89368840*) 
    89378841    echo $ac_n "checking for atan in -lm""... $ac_c" 1>&6 
    8938 echo "configure:8939: checking for atan in -lm" >&5 
     8842echo "configure:8843: checking for atan in -lm" >&5 
    89398843ac_lib_var=`echo m'_'atan | sed 'y%./+-%__p_%'` 
    89408844if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    89448848LIBS="-lm  $LIBS" 
    89458849cat > conftest.$ac_ext <<EOF 
    8946 #line 8947 "configure" 
     8850#line 8851 "configure" 
    89478851#include "confdefs.h" 
    89488852/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    89558859; return 0; } 
    89568860EOF 
    8957 if { (eval echo configure:8958: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     8861if { (eval echo configure:8862: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    89588862  rm -rf conftest* 
    89598863  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    89838887 
    89848888    echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 
    8985 echo "configure:8986: checking for dlopen in -ldl" >&5 
     8889echo "configure:8890: checking for dlopen in -ldl" >&5 
    89868890ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 
    89878891if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    89918895LIBS="-ldl  $LIBS" 
    89928896cat > conftest.$ac_ext <<EOF 
    8993 #line 8994 "configure" 
     8897#line 8898 "configure" 
    89948898#include "confdefs.h" 
    89958899/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    90028906; return 0; } 
    90038907EOF 
    9004 if { (eval echo configure:9005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     8908if { (eval echo configure:8909: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    90058909  rm -rf conftest* 
    90068910  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    90198923  ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'` 
    90208924echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6 
    9021 echo "configure:9022: checking for dlfcn.h" >&5 
     8925echo "configure:8926: checking for dlfcn.h" >&5 
    90228926if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    90238927  echo $ac_n "(cached) $ac_c" 1>&6 
    90248928else 
    90258929  cat > conftest.$ac_ext <<EOF 
    9026 #line 9027 "configure" 
     8930#line 8931 "configure" 
    90278931#include "confdefs.h" 
    90288932#include <dlfcn.h> 
    90298933EOF 
    90308934ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    9031 { (eval echo configure:9032: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     8935{ (eval echo configure:8936: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    90328936ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    90338937if test -z "$ac_err"; then 
     
    90668970do 
    90678971echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    9068 echo "configure:9069: checking for $ac_func" >&5 
     8972echo "configure:8973: checking for $ac_func" >&5 
    90698973if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    90708974  echo $ac_n "(cached) $ac_c" 1>&6 
    90718975else 
    90728976  cat > conftest.$ac_ext <<EOF 
    9073 #line 9074 "configure" 
     8977#line 8978 "configure" 
    90748978#include "confdefs.h" 
    90758979/* System header to define __stub macros and hopefully few prototypes, 
     
    90948998; return 0; } 
    90958999EOF 
    9096 if { (eval echo configure:9097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9000if { (eval echo configure:9001: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    90979001  rm -rf conftest* 
    90989002  eval "ac_cv_func_$ac_func=yes" 
     
    91259029    *-aix*) 
    91269030        echo $ac_n "checking for demangle in -lC_r""... $ac_c" 1>&6 
    9127 echo "configure:9128: checking for demangle in -lC_r" >&5 
     9031echo "configure:9032: checking for demangle in -lC_r" >&5 
    91289032ac_lib_var=`echo C_r'_'demangle | sed 'y%./+-%__p_%'` 
    91299033if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    91339037LIBS="-lC_r  $LIBS" 
    91349038cat > conftest.$ac_ext <<EOF 
    9135 #line 9136 "configure" 
     9039#line 9040 "configure" 
    91369040#include "confdefs.h" 
    91379041/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    91449048; return 0; } 
    91459049EOF 
    9146 if { (eval echo configure:9147: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9050if { (eval echo configure:9051: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    91479051  rm -rf conftest* 
    91489052  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    91749078     *) 
    91759079        echo $ac_n "checking for demangle in -lC""... $ac_c" 1>&6 
    9176 echo "configure:9177: checking for demangle in -lC" >&5 
     9080echo "configure:9081: checking for demangle in -lC" >&5 
    91779081ac_lib_var=`echo C'_'demangle | sed 'y%./+-%__p_%'` 
    91789082if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    91829086LIBS="-lC  $LIBS" 
    91839087cat > conftest.$ac_ext <<EOF 
    9184 #line 9185 "configure" 
     9088#line 9089 "configure" 
    91859089#include "confdefs.h" 
    91869090/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    91939097; return 0; } 
    91949098EOF 
    9195 if { (eval echo configure:9196: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9099if { (eval echo configure:9100: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    91969100  rm -rf conftest* 
    91979101  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    92249128fi 
    92259129echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6 
    9226 echo "configure:9227: checking for socket in -lsocket" >&5 
     9130echo "configure:9131: checking for socket in -lsocket" >&5 
    92279131ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'` 
    92289132if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    92329136LIBS="-lsocket  $LIBS" 
    92339137cat > conftest.$ac_ext <<EOF 
    9234 #line 9235 "configure" 
     9138#line 9139 "configure" 
    92359139#include "confdefs.h" 
    92369140/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    92439147; return 0; } 
    92449148EOF 
    9245 if { (eval echo configure:9246: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9149if { (eval echo configure:9150: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    92469150  rm -rf conftest* 
    92479151  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    92889192        LDFLAGS="$XLDFLAGS $LDFLAGS" 
    92899193        echo $ac_n "checking for XDrawLines in -lX11""... $ac_c" 1>&6 
    9290 echo "configure:9291: checking for XDrawLines in -lX11" >&5 
     9194echo "configure:9195: checking for XDrawLines in -lX11" >&5 
    92919195ac_lib_var=`echo X11'_'XDrawLines | sed 'y%./+-%__p_%'` 
    92929196if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    92969200LIBS="-lX11 $XLIBS $LIBS" 
    92979201cat > conftest.$ac_ext <<EOF 
    9298 #line 9299 "configure" 
     9202#line 9203 "configure" 
    92999203#include "confdefs.h" 
    93009204/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    93079211; return 0; } 
    93089212EOF 
    9309 if { (eval echo configure:9310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9213if { (eval echo configure:9214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    93109214  rm -rf conftest* 
    93119215  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    93299233 
    93309234        echo $ac_n "checking for XextAddDisplay in -lXext""... $ac_c" 1>&6 
    9331 echo "configure:9332: checking for XextAddDisplay in -lXext" >&5 
     9235echo "configure:9236: checking for XextAddDisplay in -lXext" >&5 
    93329236ac_lib_var=`echo Xext'_'XextAddDisplay | sed 'y%./+-%__p_%'` 
    93339237if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    93379241LIBS="-lXext $XLIBS $LIBS" 
    93389242cat > conftest.$ac_ext <<EOF 
    9339 #line 9340 "configure" 
     9243#line 9244 "configure" 
    93409244#include "confdefs.h" 
    93419245/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    93489252; return 0; } 
    93499253EOF 
    9350 if { (eval echo configure:9351: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9254if { (eval echo configure:9255: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    93519255  rm -rf conftest* 
    93529256  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    93729276      
    93739277        echo $ac_n "checking for XtFree in -lXt""... $ac_c" 1>&6 
    9374 echo "configure:9375: checking for XtFree in -lXt" >&5 
     9278echo "configure:9279: checking for XtFree in -lXt" >&5 
    93759279ac_lib_var=`echo Xt'_'XtFree | sed 'y%./+-%__p_%'` 
    93769280if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    93809284LIBS="-lXt  $LIBS" 
    93819285cat > conftest.$ac_ext <<EOF 
    9382 #line 9383 "configure" 
     9286#line 9287 "configure" 
    93839287#include "confdefs.h" 
    93849288/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    93919295; return 0; } 
    93929296EOF 
    9393 if { (eval echo configure:9394: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9297if { (eval echo configure:9298: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    93949298  rm -rf conftest* 
    93959299  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    94129316        unset ac_cv_lib_Xt_XtFree 
    94139317            echo $ac_n "checking for IceFlush in -lICE""... $ac_c" 1>&6 
    9414 echo "configure:9415: checking for IceFlush in -lICE" >&5 
     9318echo "configure:9319: checking for IceFlush in -lICE" >&5 
    94159319ac_lib_var=`echo ICE'_'IceFlush | sed 'y%./+-%__p_%'` 
    94169320if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    94209324LIBS="-lICE $XT_LIBS $XLIBS $LIBS" 
    94219325cat > conftest.$ac_ext <<EOF 
    9422 #line 9423 "configure" 
     9326#line 9327 "configure" 
    94239327#include "confdefs.h" 
    94249328/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    94319335; return 0; } 
    94329336EOF 
    9433 if { (eval echo configure:9434: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9337if { (eval echo configure:9338: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    94349338  rm -rf conftest* 
    94359339  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    94529356 
    94539357            echo $ac_n "checking for SmcCloseConnection in -lSM""... $ac_c" 1>&6 
    9454 echo "configure:9455: checking for SmcCloseConnection in -lSM" >&5 
     9358echo "configure:9359: checking for SmcCloseConnection in -lSM" >&5 
    94559359ac_lib_var=`echo SM'_'SmcCloseConnection | sed 'y%./+-%__p_%'` 
    94569360if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    94609364LIBS="-lSM $XT_LIBS $XLIBS $LIBS" 
    94619365cat > conftest.$ac_ext <<EOF 
    9462 #line 9463 "configure" 
     9366#line 9367 "configure" 
    94639367#include "confdefs.h" 
    94649368/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    94719375; return 0; } 
    94729376EOF 
    9473 if { (eval echo configure:9474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9377if { (eval echo configure:9378: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    94749378  rm -rf conftest* 
    94759379  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    94929396  
    94939397        echo $ac_n "checking for XtFree in -lXt""... $ac_c" 1>&6 
    9494 echo "configure:9495: checking for XtFree in -lXt" >&5 
     9398echo "configure:9399: checking for XtFree in -lXt" >&5 
    94959399ac_lib_var=`echo Xt'_'XtFree | sed 'y%./+-%__p_%'` 
    94969400if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    95009404LIBS="-lXt $X_PRE_LIBS $XT_LIBS $XLIBS $LIBS" 
    95019405cat > conftest.$ac_ext <<EOF 
    9502 #line 9503 "configure" 
     9406#line 9407 "configure" 
    95039407#include "confdefs.h" 
    95049408/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    95119415; return 0; } 
    95129416EOF 
    9513 if { (eval echo configure:9514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9417if { (eval echo configure:9418: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    95149418  rm -rf conftest* 
    95159419  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    95459449 
    95469450                echo $ac_n "checking for XShmCreateImage in -lXext""... $ac_c" 1>&6 
    9547 echo "configure:9548: checking for XShmCreateImage in -lXext" >&5 
     9451echo "configure:9452: checking for XShmCreateImage in -lXext" >&5 
    95489452ac_lib_var=`echo Xext'_'XShmCreateImage | sed 'y%./+-%__p_%'` 
    95499453if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    95539457LIBS="-lXext $XLIBS $XEXT_LIBS $LIBS" 
    95549458cat > conftest.$ac_ext <<EOF 
    9555 #line 9556 "configure" 
     9459#line 9460 "configure" 
    95569460#include "confdefs.h" 
    95579461/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    95649468; return 0; } 
    95659469EOF 
    9566 if { (eval echo configure:9567: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9470if { (eval echo configure:9471: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    95679471  rm -rf conftest* 
    95689472  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    95869490    ac_safe=`echo "X11/extensions/XShm.h" | sed 'y%./+-%__p_%'` 
    95879491echo $ac_n "checking for X11/extensions/XShm.h""... $ac_c" 1>&6 
    9588 echo "configure:9589: checking for X11/extensions/XShm.h" >&5 
     9492echo "configure:9493: checking for X11/extensions/XShm.h" >&5 
    95899493if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    95909494  echo $ac_n "(cached) $ac_c" 1>&6 
    95919495else 
    95929496  cat > conftest.$ac_ext <<EOF 
    9593 #line 9594 "configure" 
     9497#line 9498 "configure" 
    95949498#include "confdefs.h" 
    95959499#include <X11/extensions/XShm.h> 
    95969500EOF 
    95979501ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    9598 { (eval echo configure:9599: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     9502{ (eval echo configure:9503: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    95999503ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    96009504if test -z "$ac_err"; then 
     
    96269530 
    96279531                echo $ac_n "checking for XieFloGeometry in -lXIE""... $ac_c" 1>&6 
    9628 echo "configure:9629: checking for XieFloGeometry in -lXIE" >&5 
     9532echo "configure:9533: checking for XieFloGeometry in -lXIE" >&5 
    96299533ac_lib_var=`echo XIE'_'XieFloGeometry | sed 'y%./+-%__p_%'` 
    96309534if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    96349538LIBS="-lXIE $XLIBS $XEXT_LIBS $LIBS" 
    96359539cat > conftest.$ac_ext <<EOF 
    9636 #line 9637 "configure" 
     9540#line 9541 "configure" 
    96379541#include "confdefs.h" 
    96389542/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    96459549; return 0; } 
    96469550EOF 
    9647 if { (eval echo configure:9648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9551if { (eval echo configure:9552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    96489552  rm -rf conftest* 
    96499553  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    96679571    ac_safe=`echo "X11/extensions/XIElib.h" | sed 'y%./+-%__p_%'` 
    96689572echo $ac_n "checking for X11/extensions/XIElib.h""... $ac_c" 1>&6 
    9669 echo "configure:9670: checking for X11/extensions/XIElib.h" >&5 
     9573echo "configure:9574: checking for X11/extensions/XIElib.h" >&5 
    96709574if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    96719575  echo $ac_n "(cached) $ac_c" 1>&6 
    96729576else 
    96739577  cat > conftest.$ac_ext <<EOF 
    9674 #line 9675 "configure" 
     9578#line 9579 "configure" 
    96759579#include "confdefs.h" 
    96769580#include <X11/extensions/XIElib.h> 
    96779581EOF 
    96789582ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    9679 { (eval echo configure:9680: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     9583{ (eval echo configure:9584: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    96809584ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    96819585if test -z "$ac_err"; then 
     
    97519655set dummy freetype-config; ac_word=$2 
    97529656echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    9753 echo "configure:9754: checking for $ac_word" >&5 
     9657echo "configure:9658: checking for $ac_word" >&5 
    97549658if eval "test \"`echo '$''{'ac_cv_path_FT2_CONFIG'+set}'`\" = set"; then 
    97559659  echo $ac_n "(cached) $ac_c" 1>&6 
     
    97879691min_ft_version=6.1.0 
    97889692echo $ac_n "checking for FreeType - version >= $min_ft_version""... $ac_c" 1>&6 
    9789 echo "configure:9790: checking for FreeType - version >= $min_ft_version" >&5 
     9693echo "configure:9694: checking for FreeType - version >= $min_ft_version" >&5 
    97909694no_ft="" 
    97919695if test "$FT2_CONFIG" = "no" ; then 
     
    98359739else 
    98369740  cat > conftest.$ac_ext <<EOF 
    9837 #line 9838 "configure" 
     9741#line 9742 "configure" 
    98389742#include "confdefs.h" 
    98399743 
     
    98619765 
    98629766EOF 
    9863 if { (eval echo configure:9864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     9767if { (eval echo configure:9768: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    98649768then 
    98659769  : 
     
    99119815 
    99129816        echo $ac_n "checking for FT_Bitmap_Size.y_ppem""... $ac_c" 1>&6 
    9913 echo "configure:9914: checking for FT_Bitmap_Size.y_ppem" >&5 
     9817echo "configure:9818: checking for FT_Bitmap_Size.y_ppem" >&5 
    99149818if eval "test \"`echo '$''{'ac_cv_member_FT_Bitmap_Size_y_ppem'+set}'`\" = set"; then 
    99159819  echo $ac_n "(cached) $ac_c" 1>&6 
    99169820else 
    99179821  cat > conftest.$ac_ext <<EOF 
    9918 #line 9919 "configure" 
     9822#line 9823 "configure" 
    99199823#include "confdefs.h" 
    99209824#include <ft2build.h> 
     
    99269830; return 0; } 
    99279831EOF 
    9928 if { (eval echo configure:9929: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     9832if { (eval echo configure:9833: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    99299833  rm -rf conftest* 
    99309834  ac_cv_member_FT_Bitmap_Size_y_ppem=yes 
     
    99529856do 
    99539857echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    9954 echo "configure:9955: checking for $ac_func" >&5 
     9858echo "configure:9859: checking for $ac_func" >&5 
    99559859if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    99569860  echo $ac_n "(cached) $ac_c" 1>&6 
    99579861else 
    99589862  cat > conftest.$ac_ext <<EOF 
    9959 #line 9960 "configure" 
     9863#line 9864 "configure" 
    99609864#include "confdefs.h" 
    99619865/* System header to define __stub macros and hopefully few prototypes, 
     
    99809884; return 0; } 
    99819885EOF 
    9982 if { (eval echo configure:9983: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     9886if { (eval echo configure:9887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    99839887  rm -rf conftest* 
    99849888  eval "ac_cv_func_$ac_func=yes" 
     
    100239927     
    100249928echo $ac_n "checking for pthread_create in -lpthreads""... $ac_c" 1>&6 
    10025 echo "configure:10026: checking for pthread_create in -lpthreads" >&5 
     9929echo "configure:9930: checking for pthread_create in -lpthreads" >&5 
    100269930echo " 
    100279931    #include <pthread.h> 
     
    100469950         
    100479951echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 
    10048 echo "configure:10049: checking for pthread_create in -lpthread" >&5 
     9952echo "configure:9953: checking for pthread_create in -lpthread" >&5 
    100499953echo " 
    100509954    #include <pthread.h> 
     
    100699973         
    100709974echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6 
    10071 echo "configure:10072: checking for pthread_create in -lc_r" >&5 
     9975echo "configure:9976: checking for pthread_create in -lc_r" >&5 
    100729976echo " 
    100739977    #include <pthread.h> 
     
    100929996         
    100939997echo $ac_n "checking for pthread_create in -lc""... $ac_c" 1>&6 
    10094 echo "configure:10095: checking for pthread_create in -lc" >&5 
     9998echo "configure:9999: checking for pthread_create in -lc" >&5 
    100959999echo " 
    1009610000    #include <pthread.h> 
     
    1015110055        ac_cv_have_dash_pthread=no 
    1015210056        echo $ac_n "checking whether ${CC-cc} accepts -pthread""... $ac_c" 1>&6 
    10153 echo "configure:10154: checking whether ${CC-cc} accepts -pthread" >&5 
     10057echo "configure:10058: checking whether ${CC-cc} accepts -pthread" >&5 
    1015410058        echo 'int main() { return 0; }' | cat > conftest.c 
    1015510059        ${CC-cc} -pthread -o conftest conftest.c > conftest.out 2>&1 
     
    1017410078    if test "$ac_cv_have_dash_pthread" = "no"; then 
    1017510079            echo $ac_n "checking whether ${CC-cc} accepts -pthreads""... $ac_c" 1>&6 
    10176 echo "configure:10177: checking whether ${CC-cc} accepts -pthreads" >&5 
     10080echo "configure:10081: checking whether ${CC-cc} accepts -pthreads" >&5 
    1017710081        echo 'int main() { return 0; }' | cat > conftest.c 
    1017810082            ${CC-cc} -pthreads -o conftest conftest.c > conftest.out 2>&1 
     
    1021910123                        ;; 
    1022010124 
    10221             *-*-linux*|*-*-kfreebsd*-gnu) 
     10125            *-*-linux*|*-*-kfreebsd*-gnu|*-*-gnu*) 
    1022210126                        cat >> confdefs.h <<\EOF 
    1022310127#define _REENTRANT 1 
     
    1026910173 
    1027010174echo $ac_n "checking whether mmap() sees write()s""... $ac_c" 1>&6 
    10271 echo "configure:10272: checking whether mmap() sees write()s" >&5 
     10175echo "configure:10176: checking whether mmap() sees write()s" >&5 
    1027210176 
    1027310177 
     
    1030810212else 
    1030910213  cat > conftest.$ac_ext <<EOF 
    10310 #line 10311 "configure" 
     10214#line 10215 "configure" 
    1031110215#include "confdefs.h" 
    1031210216$mmap_test_prog  
    1031310217EOF 
    10314 if { (eval echo configure:10315: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     10218if { (eval echo configure:10219: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    1031510219then 
    1031610220  result="yes" 
     
    1033710241if test $ac_cv_prog_gcc = yes; then 
    1033810242    echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&6 
    10339 echo "configure:10340: checking whether ${CC-cc} needs -traditional" >&5 
     10243echo "configure:10244: checking whether ${CC-cc} needs -traditional" >&5 
    1034010244if eval "test \"`echo '$''{'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then 
    1034110245  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1034310247    ac_pattern="Autoconf.*'x'" 
    1034410248  cat > conftest.$ac_ext <<EOF 
    10345 #line 10346 "configure" 
     10249#line 10250 "configure" 
    1034610250#include "confdefs.h" 
    1034710251#include <sgtty.h> 
     
    1036110265  if test $ac_cv_prog_gcc_traditional = no; then 
    1036210266    cat > conftest.$ac_ext <<EOF 
    10363 #line 10364 "configure" 
     10267#line 10268 "configure" 
    1036410268#include "confdefs.h" 
    1036510269#include <termio.h> 
     
    1038310287 
    1038410288echo $ac_n "checking for 8-bit clean memcmp""... $ac_c" 1>&6 
    10385 echo "configure:10386: checking for 8-bit clean memcmp" >&5 
     10289echo "configure:10290: checking for 8-bit clean memcmp" >&5 
    1038610290if eval "test \"`echo '$''{'ac_cv_func_memcmp_clean'+set}'`\" = set"; then 
    1038710291  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1039110295else 
    1039210296  cat > conftest.$ac_ext <<EOF 
    10393 #line 10394 "configure" 
     10297#line 10298 "configure" 
    1039410298#include "confdefs.h" 
    1039510299 
     
    1040110305 
    1040210306EOF 
    10403 if { (eval echo configure:10404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     10307if { (eval echo configure:10308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    1040410308then 
    1040510309  ac_cv_func_memcmp_clean=yes 
     
    1042110325do 
    1042210326echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    10423 echo "configure:10424: checking for $ac_func" >&5 
     10327echo "configure:10328: checking for $ac_func" >&5 
    1042410328if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    1042510329  echo $ac_n "(cached) $ac_c" 1>&6 
    1042610330else 
    1042710331  cat > conftest.$ac_ext <<EOF 
    10428 #line 10429 "configure" 
     10332#line 10333 "configure" 
    1042910333#include "confdefs.h" 
    1043010334/* System header to define __stub macros and hopefully few prototypes, 
     
    1044910353; return 0; } 
    1045010354EOF 
    10451 if { (eval echo configure:10452: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10355if { (eval echo configure:10356: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1045210356  rm -rf conftest* 
    1045310357  eval "ac_cv_func_$ac_func=yes" 
     
    1047610380do 
    1047710381echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    10478 echo "configure:10479: checking for $ac_func" >&5 
     10382echo "configure:10383: checking for $ac_func" >&5 
    1047910383if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    1048010384  echo $ac_n "(cached) $ac_c" 1>&6 
    1048110385else 
    1048210386  cat > conftest.$ac_ext <<EOF 
    10483 #line 10484 "configure" 
     10387#line 10388 "configure" 
    1048410388#include "confdefs.h" 
    1048510389/* System header to define __stub macros and hopefully few prototypes, 
     
    1050410408; return 0; } 
    1050510409EOF 
    10506 if { (eval echo configure:10507: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10410if { (eval echo configure:10411: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1050710411  rm -rf conftest* 
    1050810412  eval "ac_cv_func_$ac_func=yes" 
     
    1053310437do 
    1053410438echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    10535 echo "configure:10536: checking for $ac_func" >&5 
     10439echo "configure:10440: checking for $ac_func" >&5 
    1053610440if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    1053710441  echo $ac_n "(cached) $ac_c" 1>&6 
    1053810442else 
    1053910443  cat > conftest.$ac_ext <<EOF 
    10540 #line 10541 "configure" 
     10444#line 10445 "configure" 
    1054110445#include "confdefs.h" 
    1054210446/* System header to define __stub macros and hopefully few prototypes, 
     
    1056110465; return 0; } 
    1056210466EOF 
    10563 if { (eval echo configure:10564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10467if { (eval echo configure:10468: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1056410468  rm -rf conftest* 
    1056510469  eval "ac_cv_func_$ac_func=yes" 
     
    1059710501 
    1059810502echo $ac_n "checking for wcrtomb""... $ac_c" 1>&6 
    10599 echo "configure:10600: checking for wcrtomb" >&5 
     10503echo "configure:10504: checking for wcrtomb" >&5 
    1060010504if eval "test \"`echo '$''{'ac_cv_have_wcrtomb'+set}'`\" = set"; then 
    1060110505  echo $ac_n "(cached) $ac_c" 1>&6 
    1060210506else 
    1060310507  cat > conftest.$ac_ext <<EOF 
    10604 #line 10605 "configure" 
     10508#line 10509 "configure" 
    1060510509#include "confdefs.h" 
    1060610510#include <wchar.h> 
     
    1060910513; return 0; } 
    1061010514EOF 
    10611 if { (eval echo configure:10612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10515if { (eval echo configure:10516: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1061210516  rm -rf conftest* 
    1061310517  ac_cv_have_wcrtomb="yes" 
     
    1062910533fi 
    1063010534echo $ac_n "checking for mbrtowc""... $ac_c" 1>&6 
    10631 echo "configure:10632: checking for mbrtowc" >&5 
     10535echo "configure:10536: checking for mbrtowc" >&5 
    1063210536if eval "test \"`echo '$''{'ac_cv_have_mbrtowc'+set}'`\" = set"; then 
    1063310537  echo $ac_n "(cached) $ac_c" 1>&6 
    1063410538else 
    1063510539  cat > conftest.$ac_ext <<EOF 
    10636 #line 10637 "configure" 
     10540#line 10541 "configure" 
    1063710541#include "confdefs.h" 
    1063810542#include <wchar.h> 
     
    1064110545; return 0; } 
    1064210546EOF 
    10643 if { (eval echo configure:10644: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10547if { (eval echo configure:10548: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1064410548  rm -rf conftest* 
    1064510549  ac_cv_have_mbrtowc="yes" 
     
    1067010574 
    1067110575echo $ac_n "checking for res_ninit()""... $ac_c" 1>&6 
    10672 echo "configure:10673: checking for res_ninit()" >&5 
     10576echo "configure:10577: checking for res_ninit()" >&5 
    1067310577if eval "test \"`echo '$''{'ac_cv_func_res_ninit'+set}'`\" = set"; then 
    1067410578  echo $ac_n "(cached) $ac_c" 1>&6 
    1067510579else 
    1067610580  cat > conftest.$ac_ext <<EOF 
    10677 #line 10678 "configure" 
     10581#line 10582 "configure" 
    1067810582#include "confdefs.h" 
    1067910583 
     
    1068710591; return 0; } 
    1068810592EOF 
    10689 if { (eval echo configure:10690: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10593if { (eval echo configure:10594: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1069010594  rm -rf conftest* 
    1069110595  ac_cv_func_res_ninit=yes 
     
    1071710621 
    1071810622echo $ac_n "checking for gnu_get_libc_version()""... $ac_c" 1>&6 
    10719 echo "configure:10720: checking for gnu_get_libc_version()" >&5 
     10623echo "configure:10624: checking for gnu_get_libc_version()" >&5 
    1072010624if eval "test \"`echo '$''{'ac_cv_func_gnu_get_libc_version'+set}'`\" = set"; then 
    1072110625  echo $ac_n "(cached) $ac_c" 1>&6 
    1072210626else 
    1072310627  cat > conftest.$ac_ext <<EOF 
    10724 #line 10725 "configure" 
     10628#line 10629 "configure" 
    1072510629#include "confdefs.h" 
    1072610630 
     
    1073310637; return 0; } 
    1073410638EOF 
    10735 if { (eval echo configure:10736: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10639if { (eval echo configure:10640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1073610640  rm -rf conftest* 
    1073710641  ac_cv_func_gnu_get_libc_version=yes 
     
    1076210666     
    1076310667echo $ac_n "checking for iconv in -lc""... $ac_c" 1>&6 
    10764 echo "configure:10765: checking for iconv in -lc" >&5 
     10668echo "configure:10669: checking for iconv in -lc" >&5 
    1076510669ac_lib_var=`echo c'_'iconv | sed 'y%./+-%__p_%'` 
    1076610670if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1077010674LIBS="-lc  $LIBS" 
    1077110675cat > conftest.$ac_ext <<EOF 
    10772 #line 10773 "configure" 
     10676#line 10677 "configure" 
    1077310677#include "confdefs.h" 
    1077410678/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1078410688; return 0; } 
    1078510689EOF 
    10786 if { (eval echo configure:10787: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10690if { (eval echo configure:10691: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1078710691  rm -rf conftest* 
    1078810692  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1080310707  echo "$ac_t""no" 1>&6 
    1080410708echo $ac_n "checking for iconv in -liconv""... $ac_c" 1>&6 
    10805 echo "configure:10806: checking for iconv in -liconv" >&5 
     10709echo "configure:10710: checking for iconv in -liconv" >&5 
    1080610710ac_lib_var=`echo iconv'_'iconv | sed 'y%./+-%__p_%'` 
    1080710711if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1081110715LIBS="-liconv  $LIBS" 
    1081210716cat > conftest.$ac_ext <<EOF 
    10813 #line 10814 "configure" 
     10717#line 10718 "configure" 
    1081410718#include "confdefs.h" 
    1081510719/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1082510729; return 0; } 
    1082610730EOF 
    10827 if { (eval echo configure:10828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10731if { (eval echo configure:10732: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1082810732  rm -rf conftest* 
    1082910733  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1084410748  echo "$ac_t""no" 1>&6 
    1084510749echo $ac_n "checking for libiconv in -liconv""... $ac_c" 1>&6 
    10846 echo "configure:10847: checking for libiconv in -liconv" >&5 
     10750echo "configure:10751: checking for libiconv in -liconv" >&5 
    1084710751ac_lib_var=`echo iconv'_'libiconv | sed 'y%./+-%__p_%'` 
    1084810752if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1085210756LIBS="-liconv  $LIBS" 
    1085310757cat > conftest.$ac_ext <<EOF 
    10854 #line 10855 "configure" 
     10758#line 10759 "configure" 
    1085510759#include "confdefs.h" 
    1085610760/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1086610770; return 0; } 
    1086710771EOF 
    10868 if { (eval echo configure:10869: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10772if { (eval echo configure:10773: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1086910773  rm -rf conftest* 
    1087010774  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1089310797LIBS="$LIBS $_ICONV_LIBS" 
    1089410798echo $ac_n "checking for iconv()""... $ac_c" 1>&6 
    10895 echo "configure:10896: checking for iconv()" >&5 
     10799echo "configure:10800: checking for iconv()" >&5 
    1089610800if eval "test \"`echo '$''{'ac_cv_func_iconv'+set}'`\" = set"; then 
    1089710801  echo $ac_n "(cached) $ac_c" 1>&6 
    1089810802else 
    1089910803  cat > conftest.$ac_ext <<EOF 
    10900 #line 10901 "configure" 
     10804#line 10805 "configure" 
    1090110805#include "confdefs.h" 
    1090210806 
     
    1091210816; return 0; } 
    1091310817EOF 
    10914 if { (eval echo configure:10915: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10818if { (eval echo configure:10819: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1091510819  rm -rf conftest* 
    1091610820  ac_cv_func_iconv=yes 
     
    1093610840    LIBICONV="$_ICONV_LIBS" 
    1093710841    echo $ac_n "checking for iconv() with const input""... $ac_c" 1>&6 
    10938 echo "configure:10939: checking for iconv() with const input" >&5 
     10842echo "configure:10843: checking for iconv() with const input" >&5 
    1093910843if eval "test \"`echo '$''{'ac_cv_func_const_iconv'+set}'`\" = set"; then 
    1094010844  echo $ac_n "(cached) $ac_c" 1>&6 
    1094110845else 
    1094210846  cat > conftest.$ac_ext <<EOF 
    10943 #line 10944 "configure" 
     10847#line 10848 "configure" 
    1094410848#include "confdefs.h" 
    1094510849 
     
    1095610860; return 0; } 
    1095710861EOF 
    10958 if { (eval echo configure:10959: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     10862if { (eval echo configure:10863: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1095910863  rm -rf conftest* 
    1096010864  ac_cv_func_const_iconv=yes 
     
    1098510889 
    1098610890  echo $ac_n "checking for nl_langinfo and CODESET""... $ac_c" 1>&6 
    10987 echo "configure:10988: checking for nl_langinfo and CODESET" >&5 
     10891echo "configure:10892: checking for nl_langinfo and CODESET" >&5 
    1098810892if eval "test \"`echo '$''{'am_cv_langinfo_codeset'+set}'`\" = set"; then 
    1098910893  echo $ac_n "(cached) $ac_c" 1>&6 
    1099010894else 
    1099110895  cat > conftest.$ac_ext <<EOF 
    10992 #line 10993 "configure" 
     10896#line 10897 "configure" 
    1099310897#include "confdefs.h" 
    1099410898#include <langinfo.h> 
     
    1099710901; return 0; } 
    1099810902EOF 
    10999 if { (eval echo configure:11000: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     10903if { (eval echo configure:10904: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1100010904  rm -rf conftest* 
    1100110905  am_cv_langinfo_codeset=yes 
     
    1102910933 
    1103010934echo $ac_n "checking for an implementation of va_copy()""... $ac_c" 1>&6 
    11031 echo "configure:11032: checking for an implementation of va_copy()" >&5 
     10935echo "configure:10936: checking for an implementation of va_copy()" >&5 
    1103210936if eval "test \"`echo '$''{'ac_cv_va_copy'+set}'`\" = set"; then 
    1103310937  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1103910943else 
    1104010944  cat > conftest.$ac_ext <<EOF 
    11041 #line 11042 "configure" 
     10945#line 10946 "configure" 
    1104210946#include "confdefs.h" 
    1104310947 
     
    1105310957        int main() { f (0, 42); return 0; } 
    1105410958EOF 
    11055 if { (eval echo configure:11056: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     10959if { (eval echo configure:10960: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    1105610960then 
    1105710961  ac_cv_va_copy=yes 
     
    1107010974echo "$ac_t""$ac_cv_va_copy" 1>&6 
    1107110975echo $ac_n "checking for an implementation of __va_copy()""... $ac_c" 1>&6 
    11072 echo "configure:11073: checking for an implementation of __va_copy()" >&5 
     10976echo "configure:10977: checking for an implementation of __va_copy()" >&5 
    1107310977if eval "test \"`echo '$''{'ac_cv___va_copy'+set}'`\" = set"; then 
    1107410978  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1108010984else 
    1108110985  cat > conftest.$ac_ext <<EOF 
    11082 #line 11083 "configure" 
     10986#line 10987 "configure" 
    1108310987#include "confdefs.h" 
    1108410988 
     
    1109410998        int main() { f (0, 42); return 0; } 
    1109510999EOF 
    11096 if { (eval echo configure:11097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     11000if { (eval echo configure:11001: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    1109711001then 
    1109811002  ac_cv___va_copy=yes 
     
    1111111015echo "$ac_t""$ac_cv___va_copy" 1>&6 
    1111211016echo $ac_n "checking whether va_lists can be copied by value""... $ac_c" 1>&6 
    11113 echo "configure:11114: checking whether va_lists can be copied by value" >&5 
     11017echo "configure:11018: checking whether va_lists can be copied by value" >&5 
    1111411018if eval "test \"`echo '$''{'ac_cv_va_val_copy'+set}'`\" = set"; then 
    1111511019  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1112111025else 
    1112211026  cat > conftest.$ac_ext <<EOF 
    11123 #line 11124 "configure" 
     11027#line 11028 "configure" 
    1112411028#include "confdefs.h" 
    1112511029 
     
    1113511039        int main() { f (0, 42); return 0; } 
    1113611040EOF 
    11137 if { (eval echo configure:11138: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     11041if { (eval echo configure:11042: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    1113811042then 
    1113911043  ac_cv_va_val_copy=yes 
     
    1123411138 
    1123511139  echo $ac_n "checking for C++ exceptions flag""... $ac_c" 1>&6 
    11236 echo "configure:11237: checking for C++ exceptions flag" >&5 
     11140echo "configure:11141: checking for C++ exceptions flag" >&5 
    1123711141 
    1123811142    if eval "test \"`echo '$''{'ac_cv_cxx_exceptions_flags'+set}'`\" = set"; then 
     
    1126911173if test "$GNU_CC"; then 
    1127011174  echo $ac_n "checking for gcc 3.0 ABI""... $ac_c" 1>&6 
    11271 echo "configure:11272: checking for gcc 3.0 ABI" >&5 
     11175echo "configure:11176: checking for gcc 3.0 ABI" >&5 
    1127211176if eval "test \"`echo '$''{'ac_cv_gcc_three_abi'+set}'`\" = set"; then 
    1127311177  echo $ac_n "(cached) $ac_c" 1>&6 
    1127411178else 
    1127511179  cat > conftest.$ac_ext <<EOF 
    11276 #line 11277 "configure" 
     11180#line 11181 "configure" 
    1127711181#include "confdefs.h" 
    1127811182 
     
    1128711191; return 0; } 
    1128811192EOF 
    11289 if { (eval echo configure:11290: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11193if { (eval echo configure:11194: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1129011194  rm -rf conftest* 
    1129111195  ac_cv_gcc_three_abi="yes" 
     
    1131111215 
    1131211216echo $ac_n "checking for C++ \"explicit\" keyword""... $ac_c" 1>&6 
    11313 echo "configure:11314: checking for C++ \"explicit\" keyword" >&5 
     11217echo "configure:11218: checking for C++ \"explicit\" keyword" >&5 
    1131411218if eval "test \"`echo '$''{'ac_cv_cpp_explicit'+set}'`\" = set"; then 
    1131511219  echo $ac_n "(cached) $ac_c" 1>&6 
    1131611220else 
    1131711221  cat > conftest.$ac_ext <<EOF 
    11318 #line 11319 "configure" 
     11222#line 11223 "configure" 
    1131911223#include "confdefs.h" 
    1132011224class X { 
     
    1132611230; return 0; } 
    1132711231EOF 
    11328 if { (eval echo configure:11329: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11232if { (eval echo configure:11233: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1132911233  rm -rf conftest* 
    1133011234  ac_cv_cpp_explicit=yes 
     
    1134711251 
    1134811252echo $ac_n "checking for C++ \"typename\" keyword""... $ac_c" 1>&6 
    11349 echo "configure:11350: checking for C++ \"typename\" keyword" >&5 
     11253echo "configure:11254: checking for C++ \"typename\" keyword" >&5 
    1135011254if eval "test \"`echo '$''{'ac_cv_cpp_typename'+set}'`\" = set"; then 
    1135111255  echo $ac_n "(cached) $ac_c" 1>&6 
    1135211256else 
    1135311257  cat > conftest.$ac_ext <<EOF 
    11354 #line 11355 "configure" 
     11258#line 11259 "configure" 
    1135511259#include "confdefs.h" 
    1135611260class param { 
     
    1137111275; return 0; } 
    1137211276EOF 
    11373 if { (eval echo configure:11374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11277if { (eval echo configure:11278: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1137411278  rm -rf conftest* 
    1137511279  ac_cv_cpp_typename=yes 
     
    1139211296 
    1139311297echo $ac_n "checking for modern C++ template specialization syntax support""... $ac_c" 1>&6 
    11394 echo "configure:11395: checking for modern C++ template specialization syntax support" >&5 
     11298echo "configure:11299: checking for modern C++ template specialization syntax support" >&5 
    1139511299if eval "test \"`echo '$''{'ac_cv_cpp_modern_specialize_template_syntax'+set}'`\" = set"; then 
    1139611300  echo $ac_n "(cached) $ac_c" 1>&6 
    1139711301else 
    1139811302  cat > conftest.$ac_ext <<EOF 
    11399 #line 11400 "configure" 
     11303#line 11304 "configure" 
    1140011304#include "confdefs.h" 
    1140111305template <class T> struct X { int a; }; 
     
    1140711311; return 0; } 
    1140811312EOF 
    11409 if { (eval echo configure:11410: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11313if { (eval echo configure:11314: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1141011314  rm -rf conftest* 
    1141111315  ac_cv_cpp_modern_specialize_template_syntax=yes 
     
    1142911333 
    1143011334echo $ac_n "checking whether partial template specialization works""... $ac_c" 1>&6 
    11431 echo "configure:11432: checking whether partial template specialization works" >&5 
     11335echo "configure:11336: checking whether partial template specialization works" >&5 
    1143211336if eval "test \"`echo '$''{'ac_cv_cpp_partial_specialization'+set}'`\" = set"; then 
    1143311337  echo $ac_n "(cached) $ac_c" 1>&6 
    1143411338else 
    1143511339  cat > conftest.$ac_ext <<EOF 
    11436 #line 11437 "configure" 
     11340#line 11341 "configure" 
    1143711341#include "confdefs.h" 
    1143811342template <class T> class Foo {}; 
     
    1144211346; return 0; } 
    1144311347EOF 
    11444 if { (eval echo configure:11445: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11348if { (eval echo configure:11349: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1144511349  rm -rf conftest* 
    1144611350  ac_cv_cpp_partial_specialization=yes 
     
    1146311367 
    1146411368echo $ac_n "checking whether operators must be re-defined for templates derived from templates""... $ac_c" 1>&6 
    11465 echo "configure:11466: checking whether operators must be re-defined for templates derived from templates" >&5 
     11369echo "configure:11370: checking whether operators must be re-defined for templates derived from templates" >&5 
    1146611370if eval "test \"`echo '$''{'ac_cv_need_derived_template_operators'+set}'`\" = set"; then 
    1146711371  echo $ac_n "(cached) $ac_c" 1>&6 
    1146811372else 
    1146911373  cat > conftest.$ac_ext <<EOF 
    11470 #line 11471 "configure" 
     11374#line 11375 "configure" 
    1147111375#include "confdefs.h" 
    1147211376template <class T> class Base { }; 
     
    1148011384; return 0; } 
    1148111385EOF 
    11482 if { (eval echo configure:11483: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11386if { (eval echo configure:11387: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1148311387  rm -rf conftest* 
    1148411388  ac_cv_need_derived_template_operators=no 
     
    1150211406 
    1150311407echo $ac_n "checking whether we need to cast a derived template to pass as its base class""... $ac_c" 1>&6 
    11504 echo "configure:11505: checking whether we need to cast a derived template to pass as its base class" >&5 
     11408echo "configure:11409: checking whether we need to cast a derived template to pass as its base class" >&5 
    1150511409if eval "test \"`echo '$''{'ac_cv_need_cpp_template_cast_to_base'+set}'`\" = set"; then 
    1150611410  echo $ac_n "(cached) $ac_c" 1>&6 
    1150711411else 
    1150811412  cat > conftest.$ac_ext <<EOF 
    11509 #line 11510 "configure" 
     11413#line 11414 "configure" 
    1151011414#include "confdefs.h" 
    1151111415template <class T> class Base { }; 
     
    1151611420; return 0; } 
    1151711421EOF 
    11518 if { (eval echo configure:11519: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11422if { (eval echo configure:11423: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1151911423  rm -rf conftest* 
    1152011424  ac_cv_need_cpp_template_cast_to_base=no 
     
    1153711441 
    1153811442echo $ac_n "checking whether the compiler can resolve const ambiguities for templates""... $ac_c" 1>&6 
    11539 echo "configure:11540: checking whether the compiler can resolve const ambiguities for templates" >&5 
     11443echo "configure:11444: checking whether the compiler can resolve const ambiguities for templates" >&5 
    1154011444if eval "test \"`echo '$''{'ac_cv_can_resolve_const_ambiguity'+set}'`\" = set"; then 
    1154111445  echo $ac_n "(cached) $ac_c" 1>&6 
    1154211446else 
    1154311447  cat > conftest.$ac_ext <<EOF 
    11544 #line 11545 "configure" 
     11448#line 11449 "configure" 
    1154511449#include "confdefs.h" 
    1154611450 
     
    1156311467; return 0; } 
    1156411468EOF 
    11565 if { (eval echo configure:11566: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11469if { (eval echo configure:11470: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1156611470  rm -rf conftest* 
    1156711471  ac_cv_can_resolve_const_ambiguity=yes 
     
    1158511489 
    1158611490echo $ac_n "checking whether the C++ \"using\" keyword can change access""... $ac_c" 1>&6 
    11587 echo "configure:11588: checking whether the C++ \"using\" keyword can change access" >&5 
     11491echo "configure:11492: checking whether the C++ \"using\" keyword can change access" >&5 
    1158811492if eval "test \"`echo '$''{'ac_cv_cpp_access_changing_using2'+set}'`\" = set"; then 
    1158911493  echo $ac_n "(cached) $ac_c" 1>&6 
    1159011494else 
    1159111495  cat > conftest.$ac_ext <<EOF 
    11592 #line 11593 "configure" 
     11496#line 11497 "configure" 
    1159311497#include "confdefs.h" 
    1159411498class A { protected: int foo() { return 0; } }; 
     
    1159811502; return 0; } 
    1159911503EOF 
    11600 if { (eval echo configure:11601: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11504if { (eval echo configure:11505: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1160111505  rm -rf conftest* 
    1160211506  cat > conftest.$ac_ext <<EOF 
    11603 #line 11604 "configure" 
     11507#line 11508 "configure" 
    1160411508#include "confdefs.h" 
    1160511509class A { public: int foo() { return 1; } }; 
     
    1160911513; return 0; } 
    1161011514EOF 
    11611 if { (eval echo configure:11612: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11515if { (eval echo configure:11516: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1161211516  rm -rf conftest* 
    1161311517  ac_cv_cpp_access_changing_using2=no 
     
    1163711541 
    1163811542echo $ac_n "checking whether the C++ \"using\" keyword resolves ambiguity""... $ac_c" 1>&6 
    11639 echo "configure:11640: checking whether the C++ \"using\" keyword resolves ambiguity" >&5 
     11543echo "configure:11544: checking whether the C++ \"using\" keyword resolves ambiguity" >&5 
    1164011544if eval "test \"`echo '$''{'ac_cv_cpp_ambiguity_resolving_using'+set}'`\" = set"; then 
    1164111545  echo $ac_n "(cached) $ac_c" 1>&6 
    1164211546else 
    1164311547  cat > conftest.$ac_ext <<EOF 
    11644 #line 11645 "configure" 
     11548#line 11549 "configure" 
    1164511549#include "confdefs.h" 
    1164611550class X {  
     
    1165811562; return 0; } 
    1165911563EOF 
    11660 if { (eval echo configure:11661: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11564if { (eval echo configure:11565: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1166111565  rm -rf conftest* 
    1166211566  ac_cv_cpp_ambiguity_resolving_using=yes 
     
    1167911583 
    1168011584echo $ac_n "checking for \"std::\" namespace""... $ac_c" 1>&6 
    11681 echo "configure:11682: checking for \"std::\" namespace" >&5 
     11585echo "configure:11586: checking for \"std::\" namespace" >&5 
    1168211586if eval "test \"`echo '$''{'ac_cv_cpp_namespace_std'+set}'`\" = set"; then 
    1168311587  echo $ac_n "(cached) $ac_c" 1>&6 
    1168411588else 
    1168511589  cat > conftest.$ac_ext <<EOF 
    11686 #line 11687 "configure" 
     11590#line 11591 "configure" 
    1168711591#include "confdefs.h" 
    1168811592#include <algorithm> 
     
    1169111595; return 0; } 
    1169211596EOF 
    11693 if { (eval echo configure:11694: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11597if { (eval echo configure:11598: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1169411598  rm -rf conftest* 
    1169511599  ac_cv_cpp_namespace_std=yes 
     
    1171211616 
    1171311617echo $ac_n "checking whether standard template operator!=() is ambiguous""... $ac_c" 1>&6 
    11714 echo "configure:11715: checking whether standard template operator!=() is ambiguous" >&5 
     11618echo "configure:11619: checking whether standard template operator!=() is ambiguous" >&5 
    1171511619if eval "test \"`echo '$''{'ac_cv_cpp_unambiguous_std_notequal'+set}'`\" = set"; then 
    1171611620  echo $ac_n "(cached) $ac_c" 1>&6 
    1171711621else 
    1171811622  cat > conftest.$ac_ext <<EOF 
    11719 #line 11720 "configure" 
     11623#line 11624 "configure" 
    1172011624#include "confdefs.h" 
    1172111625#include <algorithm> 
     
    1172711631; return 0; } 
    1172811632EOF 
    11729 if { (eval echo configure:11730: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11633if { (eval echo configure:11634: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1173011634  rm -rf conftest* 
    1173111635  ac_cv_cpp_unambiguous_std_notequal=unambiguous 
     
    1174911653 
    1175011654echo $ac_n "checking for C++ reinterpret_cast""... $ac_c" 1>&6 
    11751 echo "configure:11752: checking for C++ reinterpret_cast" >&5 
     11655echo "configure:11656: checking for C++ reinterpret_cast" >&5 
    1175211656if eval "test \"`echo '$''{'ac_cv_cpp_reinterpret_cast'+set}'`\" = set"; then 
    1175311657  echo $ac_n "(cached) $ac_c" 1>&6 
    1175411658else 
    1175511659  cat > conftest.$ac_ext <<EOF 
    11756 #line 11757 "configure" 
     11660#line 11661 "configure" 
    1175711661#include "confdefs.h" 
    1175811662struct X { int i; }; 
     
    1176211666; return 0; } 
    1176311667EOF 
    11764 if { (eval echo configure:11765: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11668if { (eval echo configure:11669: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1176511669  rm -rf conftest* 
    1176611670  ac_cv_cpp_reinterpret_cast=yes 
     
    1178311687 
    1178411688echo $ac_n "checking for C++ dynamic_cast to void*""... $ac_c" 1>&6 
    11785 echo "configure:11786: checking for C++ dynamic_cast to void*" >&5 
     11689echo "configure:11690: checking for C++ dynamic_cast to void*" >&5 
    1178611690if eval "test \"`echo '$''{'ac_cv_cpp_dynamic_cast_void_ptr'+set}'`\" = set"; then 
    1178711691  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1179111695else 
    1179211696  cat > conftest.$ac_ext <<EOF 
    11793 #line 11794 "configure" 
     11697#line 11698 "configure" 
    1179411698#include "confdefs.h" 
     11699#ifdef __cplusplus 
     11700extern "C" void exit(int); 
     11701#endif 
    1179511702class X { int i; public: virtual ~X() { } }; 
    1179611703                            class Y { int j; public: virtual ~Y() { } }; 
     
    1180711714                            } 
    1180811715EOF 
    11809 if { (eval echo configure:11810: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     11716if { (eval echo configure:11717: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    1181011717then 
    1181111718  ac_cv_cpp_dynamic_cast_void_ptr=yes 
     
    1183111738 
    1183211739echo $ac_n "checking whether C++ requires implementation of unused virtual methods""... $ac_c" 1>&6 
    11833 echo "configure:11834: checking whether C++ requires implementation of unused virtual methods" >&5 
     11740echo "configure:11741: checking whether C++ requires implementation of unused virtual methods" >&5 
    1183411741if eval "test \"`echo '$''{'ac_cv_cpp_unused_required'+set}'`\" = set"; then 
    1183511742  echo $ac_n "(cached) $ac_c" 1>&6 
    1183611743else 
    1183711744  cat > conftest.$ac_ext <<EOF 
    11838 #line 11839 "configure" 
     11745#line 11746 "configure" 
    1183911746#include "confdefs.h" 
    1184011747class X {private: virtual void never_called();}; 
     
    1184311750; return 0; } 
    1184411751EOF 
    11845 if { (eval echo configure:11846: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     11752if { (eval echo configure:11753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1184611753  rm -rf conftest* 
    1184711754  ac_cv_cpp_unused_required=no 
     
    1186611773 
    1186711774echo $ac_n "checking for trouble comparing to zero near std::operator!=()""... $ac_c" 1>&6 
    11868 echo "configure:11869: checking for trouble comparing to zero near std::operator!=()" >&5 
     11775echo "configure:11776: checking for trouble comparing to zero near std::operator!=()" >&5 
    1186911776if eval "test \"`echo '$''{'ac_cv_trouble_comparing_to_zero'+set}'`\" = set"; then 
    1187011777  echo $ac_n "(cached) $ac_c" 1>&6 
    1187111778else 
    1187211779  cat > conftest.$ac_ext <<EOF 
    11873 #line 11874 "configure" 
     11780#line 11781 "configure" 
    1187411781#include "confdefs.h" 
    1187511782#include <algorithm> 
     
    1188211789; return 0; } 
    1188311790EOF 
    11884 if { (eval echo configure:11885: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11791if { (eval echo configure:11792: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1188511792  rm -rf conftest* 
    1188611793  ac_cv_trouble_comparing_to_zero=no 
     
    1191411821 
    1191511822echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 
    11916 echo "configure:11917: checking for LC_MESSAGES" >&5 
     11823echo "configure:11824: checking for LC_MESSAGES" >&5 
    1191711824if eval "test \"`echo '$''{'ac_cv_i18n_lc_messages'+set}'`\" = set"; then 
    1191811825  echo $ac_n "(cached) $ac_c" 1>&6 
    1191911826else 
    1192011827  cat > conftest.$ac_ext <<EOF 
    11921 #line 11922 "configure" 
     11828#line 11829 "configure" 
    1192211829#include "confdefs.h" 
    1192311830#include <locale.h> 
     
    1192611833; return 0; } 
    1192711834EOF 
    11928 if { (eval echo configure:11929: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     11835if { (eval echo configure:11836: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1192911836  rm -rf conftest* 
    1193011837  ac_cv_i18n_lc_messages=yes 
     
    1202911936set dummy nspr-config; ac_word=$2 
    1203011937echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    12031 echo "configure:12032: checking for $ac_word" >&5 
     11938echo "configure:11939: checking for $ac_word" >&5 
    1203211939if eval "test \"`echo '$''{'ac_cv_path_NSPR_CONFIG'+set}'`\" = set"; then 
    1203311940  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1206411971        min_nspr_version=4.7.0 
    1206511972        echo $ac_n "checking for NSPR - version >= $min_nspr_version""... $ac_c" 1>&6 
    12066 echo "configure:12067: checking for NSPR - version >= $min_nspr_version" >&5 
     11973echo "configure:11974: checking for NSPR - version >= $min_nspr_version" >&5 
    1206711974 
    1206811975        no_nspr="" 
     
    1211512022    CFLAGS="$CFLAGS $NSPR_CFLAGS" 
    1211612023    cat > conftest.$ac_ext <<EOF 
    12117 #line 12118 "configure" 
     12024#line 12025 "configure" 
    1211812025#include "confdefs.h" 
    1211912026#include "prlog.h" 
     
    1212412031; return 0; } 
    1212512032EOF 
    12126 if { (eval echo configure:12127: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     12033if { (eval echo configure:12034: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1212712034  rm -rf conftest* 
    1212812035  MOZ_NATIVE_NSPR=1 
     
    1220612113set dummy nss-config; ac_word=$2 
    1220712114echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    12208 echo "configure:12209: checking for $ac_word" >&5 
     12115echo "configure:12116: checking for $ac_word" >&5 
    1220912116if eval "test \"`echo '$''{'ac_cv_path_NSS_CONFIG'+set}'`\" = set"; then 
    1221012117  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1224112148        min_nss_version=3.12.0 
    1224212149        echo $ac_n "checking for NSS - version >= $min_nss_version""... $ac_c" 1>&6 
    12243 echo "configure:12244: checking for NSS - version >= $min_nss_version" >&5 
     12150echo "configure:12151: checking for NSS - version >= $min_nss_version" >&5 
    1224412151 
    1224512152        no_nss="" 
     
    1228912196 
    1229012197if test -n "$MOZ_NATIVE_NSS"; then 
    12291    NSS_LIBS="$NSS_LIBS -lcrmf" 
     12198   NSS_LIBS=`echo $NSS_LIBS | sed 's/-l/-lcrmf &/'` 
    1229212199else 
    1229312200   NSS_CFLAGS='-I$(LIBXUL_DIST)/include/nss' 
     
    1233212239else 
    1233312240    echo $ac_n "checking for jpeg_destroy_compress in -ljpeg""... $ac_c" 1>&6 
    12334 echo "configure:12335: checking for jpeg_destroy_compress in -ljpeg" >&5 
     12241echo "configure:12242: checking for jpeg_destroy_compress in -ljpeg" >&5 
    1233512242ac_lib_var=`echo jpeg'_'jpeg_destroy_compress | sed 'y%./+-%__p_%'` 
    1233612243if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1234012247LIBS="-ljpeg $JPEG_LIBS $LIBS" 
    1234112248cat > conftest.$ac_ext <<EOF 
    12342 #line 12343 "configure" 
     12249#line 12250 "configure" 
    1234312250#include "confdefs.h" 
    1234412251/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1235112258; return 0; } 
    1235212259EOF 
    12353 if { (eval echo configure:12354: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     12260if { (eval echo configure:12261: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1235412261  rm -rf conftest* 
    1235512262  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1237412281fi 
    1237512282 
    12376 if test "$SYSTEM_JPEG" = 1; then 
     12283if test "$SYSTEM_JPEG" = 0; then 
    1237712284    LIBS="$JPEG_LIBS $LIBS" 
    1237812285    cat > conftest.$ac_ext <<EOF 
    12379 #line 12380 "configure" 
     12286#line 12287 "configure" 
    1238012287#include "confdefs.h" 
    1238112288 #include <stdio.h> 
     
    1238812295; return 0; } 
    1238912296EOF 
    12390 if { (eval echo configure:12391: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     12297if { (eval echo configure:12298: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1239112298  rm -rf conftest* 
    1239212299  SYSTEM_JPEG=1 
     
    1242612333else 
    1242712334    echo $ac_n "checking for gzread in -lz""... $ac_c" 1>&6 
    12428 echo "configure:12429: checking for gzread in -lz" >&5 
     12335echo "configure:12336: checking for gzread in -lz" >&5 
    1242912336ac_lib_var=`echo z'_'gzread | sed 'y%./+-%__p_%'` 
    1243012337if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1243412341LIBS="-lz $ZLIB_LIBS $LIBS" 
    1243512342cat > conftest.$ac_ext <<EOF 
    12436 #line 12437 "configure" 
     12343#line 12344 "configure" 
    1243712344#include "confdefs.h" 
    1243812345/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1244512352; return 0; } 
    1244612353EOF 
    12447 if { (eval echo configure:12448: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     12354if { (eval echo configure:12355: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1244812355  rm -rf conftest* 
    1244912356  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1246712374 
    1246812375fi 
    12469 if test "$SYSTEM_ZLIB" = 1; then 
     12376if test "$SYSTEM_ZLIB" = 0; then 
    1247012377    LIBS="$ZLIB_LIBS $LIBS" 
    1247112378    cat > conftest.$ac_ext <<EOF 
    12472 #line 12473 "configure" 
     12379#line 12380 "configure" 
    1247312380#include "confdefs.h" 
    1247412381 #include <stdio.h> 
     
    1248112388; return 0; } 
    1248212389EOF 
    12483 if { (eval echo configure:12484: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     12390if { (eval echo configure:12391: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1248412391  rm -rf conftest* 
    1248512392  SYSTEM_ZLIB=1 
     
    1251912426else 
    1252012427    echo $ac_n "checking for BZ2_bzread in -lbz2""... $ac_c" 1>&6 
    12521 echo "configure:12522: checking for BZ2_bzread in -lbz2" >&5 
     12428echo "configure:12429: checking for BZ2_bzread in -lbz2" >&5 
    1252212429ac_lib_var=`echo bz2'_'BZ2_bzread | sed 'y%./+-%__p_%'` 
    1252312430if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1252712434LIBS="-lbz2 $BZ2_LIBS $LIBS" 
    1252812435cat > conftest.$ac_ext <<EOF 
    12529 #line 12530 "configure" 
     12436#line 12437 "configure" 
    1253012437#include "confdefs.h" 
    1253112438/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1253812445; return 0; } 
    1253912446EOF 
    12540 if { (eval echo configure:12541: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     12447if { (eval echo configure:12448: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1254112448  rm -rf conftest* 
    1254212449  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1258512492    LDFLAGS="-L${PNG_DIR}/lib $LDFLAGS" 
    1258612493fi 
     12494APNG=1 
    1258712495if test -z "$PNG_DIR" -o "$PNG_DIR" = no; then 
    1258812496    SYSTEM_PNG= 
     
    1259012498    _SAVE_PNG_LIBS=$PNG_LIBS 
    1259112499    echo $ac_n "checking for png_get_valid in -lpng""... $ac_c" 1>&6 
    12592 echo "configure:12593: checking for png_get_valid in -lpng" >&5 
     12500echo "configure:12501: checking for png_get_valid in -lpng" >&5 
    1259312501ac_lib_var=`echo png'_'png_get_valid | sed 'y%./+-%__p_%'` 
    1259412502if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1259812506LIBS="-lpng $PNG_LIBS $LIBS" 
    1259912507cat > conftest.$ac_ext <<EOF 
    12600 #line 12601 "configure" 
     12508#line 12509 "configure" 
    1260112509#include "confdefs.h" 
    1260212510/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1260912517; return 0; } 
    1261012518EOF 
    12611 if { (eval echo configure:12612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     12519if { (eval echo configure:12520: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1261212520  rm -rf conftest* 
    1261312521  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1263112539 
    1263212540    echo $ac_n "checking for png_get_acTL in -lpng""... $ac_c" 1>&6 
    12633 echo "configure:12634: checking for png_get_acTL in -lpng" >&5 
     12541echo "configure:12542: checking for png_get_acTL in -lpng" >&5 
    1263412542ac_lib_var=`echo png'_'png_get_acTL | sed 'y%./+-%__p_%'` 
    1263512543if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1263912547LIBS="-lpng $_SAVE_PNG_LIBS $LIBS" 
    1264012548cat > conftest.$ac_ext <<EOF 
    12641 #line 12642 "configure" 
     12549#line 12550 "configure" 
    1264212550#include "confdefs.h" 
    1264312551/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1265012558; return 0; } 
    1265112559EOF 
    12652 if { (eval echo configure:12653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     12560if { (eval echo configure:12561: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1265312561  rm -rf conftest* 
    1265412562  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1267512583else 
    1267612584  echo "$ac_t""no" 1>&6 
    12677 { echo "configure: error: --with-system-png won't work because the system's libpng doesn't have APNG support" 1>&2; exit 1; } 
    12678 fi 
    12679  
    12680 fi 
    12681 if test "$SYSTEM_PNG" = 1; then 
     12585echo "configure: warning: system's libpng doesn't have APNG support" 1>&2 
     12586                 APNG= 
     12587fi 
     12588 
     12589fi 
     12590if test "$SYSTEM_PNG" = 0; then 
    1268212591    LIBS="$PNG_LIBS $LIBS" 
    1268312592    cat > conftest.$ac_ext <<EOF 
    12684 #line 12685 "configure" 
     12593#line 12594 "configure" 
    1268512594#include "confdefs.h" 
    1268612595 #include <stdio.h> 
     
    1269612605; return 0; } 
    1269712606EOF 
    12698 if { (eval echo configure:12699: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     12607if { (eval echo configure:12608: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1269912608  rm -rf conftest* 
    1270012609  SYSTEM_PNG=1 
     
    1273812647set dummy pkg-config; ac_word=$2 
    1273912648echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    12740 echo "configure:12741: checking for $ac_word" >&5 
     12649echo "configure:12650: checking for $ac_word" >&5 
    1274112650if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1274212651  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1278212691     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1278312692        echo $ac_n "checking for hunspell""... $ac_c" 1>&6 
    12784 echo "configure:12785: checking for hunspell" >&5 
     12693echo "configure:12694: checking for hunspell" >&5 
    1278512694 
    1278612695        if $PKG_CONFIG --exists "hunspell" ; then 
     
    1278912698 
    1279012699            echo $ac_n "checking MOZ_HUNSPELL_CFLAGS""... $ac_c" 1>&6 
    12791 echo "configure:12792: checking MOZ_HUNSPELL_CFLAGS" >&5 
     12700echo "configure:12701: checking MOZ_HUNSPELL_CFLAGS" >&5 
    1279212701            MOZ_HUNSPELL_CFLAGS=`$PKG_CONFIG --cflags "hunspell"` 
    1279312702            echo "$ac_t""$MOZ_HUNSPELL_CFLAGS" 1>&6 
    1279412703 
    1279512704            echo $ac_n "checking MOZ_HUNSPELL_LIBS""... $ac_c" 1>&6 
    12796 echo "configure:12797: checking MOZ_HUNSPELL_LIBS" >&5 
     12705echo "configure:12706: checking MOZ_HUNSPELL_LIBS" >&5 
    1279712706            ## Remove evil flags like -Wl,--export-dynamic 
    1279812707            MOZ_HUNSPELL_LIBS="`$PKG_CONFIG --libs \"hunspell\" |sed s/-Wl,--export-dynamic//g`" 
     
    1316213071 
    1316313072echo $ac_n "checking if app-specific confvars.sh exists""... $ac_c" 1>&6 
    13164 echo "configure:13165: checking if app-specific confvars.sh exists" >&5 
     13073echo "configure:13074: checking if app-specific confvars.sh exists" >&5 
    1316513074if test -f "${srcdir}/${MOZ_BUILD_APP}/confvars.sh" ; then 
    1316613075  echo "$ac_t""${srcdir}/${MOZ_BUILD_APP}/confvars.sh" 1>&6 
     
    1340513314set dummy pkg-config; ac_word=$2 
    1340613315echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    13407 echo "configure:13408: checking for $ac_word" >&5 
     13316echo "configure:13317: checking for $ac_word" >&5 
    1340813317if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1340913318  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1344913358     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1345013359        echo $ac_n "checking for gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0""... $ac_c" 1>&6 
    13451 echo "configure:13452: checking for gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0" >&5 
     13360echo "configure:13361: checking for gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0" >&5 
    1345213361 
    1345313362        if $PKG_CONFIG --exists "gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0" ; then 
     
    1345613365 
    1345713366            echo $ac_n "checking MOZ_GTK2_CFLAGS""... $ac_c" 1>&6 
    13458 echo "configure:13459: checking MOZ_GTK2_CFLAGS" >&5 
     13367echo "configure:13368: checking MOZ_GTK2_CFLAGS" >&5 
    1345913368            MOZ_GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0"` 
    1346013369            echo "$ac_t""$MOZ_GTK2_CFLAGS" 1>&6 
    1346113370 
    1346213371            echo $ac_n "checking MOZ_GTK2_LIBS""... $ac_c" 1>&6 
    13463 echo "configure:13464: checking MOZ_GTK2_LIBS" >&5 
     13372echo "configure:13373: checking MOZ_GTK2_LIBS" >&5 
    1346413373            ## Remove evil flags like -Wl,--export-dynamic 
    1346513374            MOZ_GTK2_LIBS="`$PKG_CONFIG --libs \"gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0\" |sed s/-Wl,--export-dynamic//g`" 
     
    1352013429set dummy pkg-config; ac_word=$2 
    1352113430echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    13522 echo "configure:13523: checking for $ac_word" >&5 
     13431echo "configure:13432: checking for $ac_word" >&5 
    1352313432if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1352413433  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1356413473     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1356513474        echo $ac_n "checking for libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION""... $ac_c" 1>&6 
    13566 echo "configure:13567: checking for libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION" >&5 
     13475echo "configure:13476: checking for libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION" >&5 
    1356713476 
    1356813477        if $PKG_CONFIG --exists "libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION" ; then 
     
    1357113480 
    1357213481            echo $ac_n "checking MOZ_STARTUP_NOTIFICATION_CFLAGS""... $ac_c" 1>&6 
    13573 echo "configure:13574: checking MOZ_STARTUP_NOTIFICATION_CFLAGS" >&5 
     13482echo "configure:13483: checking MOZ_STARTUP_NOTIFICATION_CFLAGS" >&5 
    1357413483            MOZ_STARTUP_NOTIFICATION_CFLAGS=`$PKG_CONFIG --cflags "libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION"` 
    1357513484            echo "$ac_t""$MOZ_STARTUP_NOTIFICATION_CFLAGS" 1>&6 
    1357613485 
    1357713486            echo $ac_n "checking MOZ_STARTUP_NOTIFICATION_LIBS""... $ac_c" 1>&6 
    13578 echo "configure:13579: checking MOZ_STARTUP_NOTIFICATION_LIBS" >&5 
     13487echo "configure:13488: checking MOZ_STARTUP_NOTIFICATION_LIBS" >&5 
    1357913488            ## Remove evil flags like -Wl,--export-dynamic 
    1358013489            MOZ_STARTUP_NOTIFICATION_LIBS="`$PKG_CONFIG --libs \"libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1378813697set dummy pkg-config; ac_word=$2 
    1378913698echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    13790 echo "configure:13791: checking for $ac_word" >&5 
     13699echo "configure:13700: checking for $ac_word" >&5 
    1379113700if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1379213701  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1383213741     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1383313742        echo $ac_n "checking for xft""... $ac_c" 1>&6 
    13834 echo "configure:13835: checking for xft" >&5 
     13743echo "configure:13744: checking for xft" >&5 
    1383513744 
    1383613745        if $PKG_CONFIG --exists "xft" ; then 
     
    1383913748 
    1384013749            echo $ac_n "checking MOZ_XFT_CFLAGS""... $ac_c" 1>&6 
    13841 echo "configure:13842: checking MOZ_XFT_CFLAGS" >&5 
     13750echo "configure:13751: checking MOZ_XFT_CFLAGS" >&5 
    1384213751            MOZ_XFT_CFLAGS=`$PKG_CONFIG --cflags "xft"` 
    1384313752            echo "$ac_t""$MOZ_XFT_CFLAGS" 1>&6 
    1384413753 
    1384513754            echo $ac_n "checking MOZ_XFT_LIBS""... $ac_c" 1>&6 
    13846 echo "configure:13847: checking MOZ_XFT_LIBS" >&5 
     13755echo "configure:13756: checking MOZ_XFT_LIBS" >&5 
    1384713756            ## Remove evil flags like -Wl,--export-dynamic 
    1384813757            MOZ_XFT_LIBS="`$PKG_CONFIG --libs \"xft\" |sed s/-Wl,--export-dynamic//g`" 
     
    1388213791set dummy pkg-config; ac_word=$2 
    1388313792echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    13884 echo "configure:13885: checking for $ac_word" >&5 
     13793echo "configure:13794: checking for $ac_word" >&5 
    1388513794if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1388613795  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1392613835     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1392713836        echo $ac_n "checking for pango >= $PANGO_VERSION""... $ac_c" 1>&6 
    13928 echo "configure:13929: checking for pango >= $PANGO_VERSION" >&5 
     13837echo "configure:13838: checking for pango >= $PANGO_VERSION" >&5 
    1392913838 
    1393013839        if $PKG_CONFIG --exists "pango >= $PANGO_VERSION" ; then 
     
    1393313842 
    1393413843            echo $ac_n "checking _PANGOCHK_CFLAGS""... $ac_c" 1>&6 
    13935 echo "configure:13936: checking _PANGOCHK_CFLAGS" >&5 
     13844echo "configure:13845: checking _PANGOCHK_CFLAGS" >&5 
    1393613845            _PANGOCHK_CFLAGS=`$PKG_CONFIG --cflags "pango >= $PANGO_VERSION"` 
    1393713846            echo "$ac_t""$_PANGOCHK_CFLAGS" 1>&6 
    1393813847 
    1393913848            echo $ac_n "checking _PANGOCHK_LIBS""... $ac_c" 1>&6 
    13940 echo "configure:13941: checking _PANGOCHK_LIBS" >&5 
     13849echo "configure:13850: checking _PANGOCHK_LIBS" >&5 
    1394113850            ## Remove evil flags like -Wl,--export-dynamic 
    1394213851            _PANGOCHK_LIBS="`$PKG_CONFIG --libs \"pango >= $PANGO_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1397313882set dummy pkg-config; ac_word=$2 
    1397413883echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    13975 echo "configure:13976: checking for $ac_word" >&5 
     13884echo "configure:13885: checking for $ac_word" >&5 
    1397613885if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1397713886  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1401713926     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1401813927        echo $ac_n "checking for pango >= $PANGO_VERSION pangocairo >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION""... $ac_c" 1>&6 
    14019 echo "configure:14020: checking for pango >= $PANGO_VERSION pangocairo >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION" >&5 
     13928echo "configure:13929: checking for pango >= $PANGO_VERSION pangocairo >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION" >&5 
    1402013929 
    1402113930        if $PKG_CONFIG --exists "pango >= $PANGO_VERSION pangocairo >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION" ; then 
     
    1402413933 
    1402513934            echo $ac_n "checking MOZ_PANGO_CFLAGS""... $ac_c" 1>&6 
    14026 echo "configure:14027: checking MOZ_PANGO_CFLAGS" >&5 
     13935echo "configure:13936: checking MOZ_PANGO_CFLAGS" >&5 
    1402713936            MOZ_PANGO_CFLAGS=`$PKG_CONFIG --cflags "pango >= $PANGO_VERSION pangocairo >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION"` 
    1402813937            echo "$ac_t""$MOZ_PANGO_CFLAGS" 1>&6 
    1402913938 
    1403013939            echo $ac_n "checking MOZ_PANGO_LIBS""... $ac_c" 1>&6 
    14031 echo "configure:14032: checking MOZ_PANGO_LIBS" >&5 
     13940echo "configure:13941: checking MOZ_PANGO_LIBS" >&5 
    1403213941            ## Remove evil flags like -Wl,--export-dynamic 
    1403313942            MOZ_PANGO_LIBS="`$PKG_CONFIG --libs \"pango >= $PANGO_VERSION pangocairo >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1410614015set dummy pkg-config; ac_word=$2 
    1410714016echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    14108 echo "configure:14109: checking for $ac_word" >&5 
     14017echo "configure:14018: checking for $ac_word" >&5 
    1410914018if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1411014019  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1415014059     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1415114060        echo $ac_n "checking for gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION""... $ac_c" 1>&6 
    14152 echo "configure:14153: checking for gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION" >&5 
     14061echo "configure:14062: checking for gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION" >&5 
    1415314062 
    1415414063        if $PKG_CONFIG --exists "gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION" ; then 
     
    1415714066 
    1415814067            echo $ac_n "checking MOZ_GNOMEVFS_CFLAGS""... $ac_c" 1>&6 
    14159 echo "configure:14160: checking MOZ_GNOMEVFS_CFLAGS" >&5 
     14068echo "configure:14069: checking MOZ_GNOMEVFS_CFLAGS" >&5 
    1416014069            MOZ_GNOMEVFS_CFLAGS=`$PKG_CONFIG --cflags "gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION"` 
    1416114070            echo "$ac_t""$MOZ_GNOMEVFS_CFLAGS" 1>&6 
    1416214071 
    1416314072            echo $ac_n "checking MOZ_GNOMEVFS_LIBS""... $ac_c" 1>&6 
    14164 echo "configure:14165: checking MOZ_GNOMEVFS_LIBS" >&5 
     14073echo "configure:14074: checking MOZ_GNOMEVFS_LIBS" >&5 
    1416514074            ## Remove evil flags like -Wl,--export-dynamic 
    1416614075            MOZ_GNOMEVFS_LIBS="`$PKG_CONFIG --libs \"gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1421314122set dummy pkg-config; ac_word=$2 
    1421414123echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    14215 echo "configure:14216: checking for $ac_word" >&5 
     14124echo "configure:14125: checking for $ac_word" >&5 
    1421614125if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1421714126  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1425714166     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1425814167        echo $ac_n "checking for gconf-2.0 >= $GCONF_VERSION""... $ac_c" 1>&6 
    14259 echo "configure:14260: checking for gconf-2.0 >= $GCONF_VERSION" >&5 
     14168echo "configure:14169: checking for gconf-2.0 >= $GCONF_VERSION" >&5 
    1426014169 
    1426114170        if $PKG_CONFIG --exists "gconf-2.0 >= $GCONF_VERSION" ; then 
     
    1426414173 
    1426514174            echo $ac_n "checking MOZ_GCONF_CFLAGS""... $ac_c" 1>&6 
    14266 echo "configure:14267: checking MOZ_GCONF_CFLAGS" >&5 
     14175echo "configure:14176: checking MOZ_GCONF_CFLAGS" >&5 
    1426714176            MOZ_GCONF_CFLAGS=`$PKG_CONFIG --cflags "gconf-2.0 >= $GCONF_VERSION"` 
    1426814177            echo "$ac_t""$MOZ_GCONF_CFLAGS" 1>&6 
    1426914178 
    1427014179            echo $ac_n "checking MOZ_GCONF_LIBS""... $ac_c" 1>&6 
    14271 echo "configure:14272: checking MOZ_GCONF_LIBS" >&5 
     14180echo "configure:14181: checking MOZ_GCONF_LIBS" >&5 
    1427214181            ## Remove evil flags like -Wl,--export-dynamic 
    1427314182            MOZ_GCONF_LIBS="`$PKG_CONFIG --libs \"gconf-2.0 >= $GCONF_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1432414233set dummy pkg-config; ac_word=$2 
    1432514234echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    14326 echo "configure:14327: checking for $ac_word" >&5 
     14235echo "configure:14236: checking for $ac_word" >&5 
    1432714236if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1432814237  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1436814277     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1436914278        echo $ac_n "checking for libgnome-2.0 >= $LIBGNOME_VERSION""... $ac_c" 1>&6 
    14370 echo "configure:14371: checking for libgnome-2.0 >= $LIBGNOME_VERSION" >&5 
     14279echo "configure:14280: checking for libgnome-2.0 >= $LIBGNOME_VERSION" >&5 
    1437114280 
    1437214281        if $PKG_CONFIG --exists "libgnome-2.0 >= $LIBGNOME_VERSION" ; then 
     
    1437514284 
    1437614285            echo $ac_n "checking MOZ_LIBGNOME_CFLAGS""... $ac_c" 1>&6 
    14377 echo "configure:14378: checking MOZ_LIBGNOME_CFLAGS" >&5 
     14286echo "configure:14287: checking MOZ_LIBGNOME_CFLAGS" >&5 
    1437814287            MOZ_LIBGNOME_CFLAGS=`$PKG_CONFIG --cflags "libgnome-2.0 >= $LIBGNOME_VERSION"` 
    1437914288            echo "$ac_t""$MOZ_LIBGNOME_CFLAGS" 1>&6 
    1438014289 
    1438114290            echo $ac_n "checking MOZ_LIBGNOME_LIBS""... $ac_c" 1>&6 
    14382 echo "configure:14383: checking MOZ_LIBGNOME_LIBS" >&5 
     14291echo "configure:14292: checking MOZ_LIBGNOME_LIBS" >&5 
    1438314292            ## Remove evil flags like -Wl,--export-dynamic 
    1438414293            MOZ_LIBGNOME_LIBS="`$PKG_CONFIG --libs \"libgnome-2.0 >= $LIBGNOME_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1445814367set dummy pkg-config; ac_word=$2 
    1445914368echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    14460 echo "configure:14461: checking for $ac_word" >&5 
     14369echo "configure:14370: checking for $ac_word" >&5 
    1446114370if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1446214371  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1450214411     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1450314412        echo $ac_n "checking for libgnomeui-2.0 >= $GNOMEUI_VERSION""... $ac_c" 1>&6 
    14504 echo "configure:14505: checking for libgnomeui-2.0 >= $GNOMEUI_VERSION" >&5 
     14413echo "configure:14414: checking for libgnomeui-2.0 >= $GNOMEUI_VERSION" >&5 
    1450514414 
    1450614415        if $PKG_CONFIG --exists "libgnomeui-2.0 >= $GNOMEUI_VERSION" ; then 
     
    1450914418 
    1451014419            echo $ac_n "checking MOZ_GNOMEUI_CFLAGS""... $ac_c" 1>&6 
    14511 echo "configure:14512: checking MOZ_GNOMEUI_CFLAGS" >&5 
     14420echo "configure:14421: checking MOZ_GNOMEUI_CFLAGS" >&5 
    1451214421            MOZ_GNOMEUI_CFLAGS=`$PKG_CONFIG --cflags "libgnomeui-2.0 >= $GNOMEUI_VERSION"` 
    1451314422            echo "$ac_t""$MOZ_GNOMEUI_CFLAGS" 1>&6 
    1451414423 
    1451514424            echo $ac_n "checking MOZ_GNOMEUI_LIBS""... $ac_c" 1>&6 
    14516 echo "configure:14517: checking MOZ_GNOMEUI_LIBS" >&5 
     14425echo "configure:14426: checking MOZ_GNOMEUI_LIBS" >&5 
    1451714426            ## Remove evil flags like -Wl,--export-dynamic 
    1451814427            MOZ_GNOMEUI_LIBS="`$PKG_CONFIG --libs \"libgnomeui-2.0 >= $GNOMEUI_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1459114500set dummy pkg-config; ac_word=$2 
    1459214501echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    14593 echo "configure:14594: checking for $ac_word" >&5 
     14502echo "configure:14503: checking for $ac_word" >&5 
    1459414503if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1459514504  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1463514544     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1463614545        echo $ac_n "checking for dbus-glib-1 >= $DBUS_VERSION""... $ac_c" 1>&6 
    14637 echo "configure:14638: checking for dbus-glib-1 >= $DBUS_VERSION" >&5 
     14546echo "configure:14547: checking for dbus-glib-1 >= $DBUS_VERSION" >&5 
    1463814547 
    1463914548        if $PKG_CONFIG --exists "dbus-glib-1 >= $DBUS_VERSION" ; then 
     
    1464214551 
    1464314552            echo $ac_n "checking MOZ_DBUS_GLIB_CFLAGS""... $ac_c" 1>&6 
    14644 echo "configure:14645: checking MOZ_DBUS_GLIB_CFLAGS" >&5 
     14553echo "configure:14554: checking MOZ_DBUS_GLIB_CFLAGS" >&5 
    1464514554            MOZ_DBUS_GLIB_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_VERSION"` 
    1464614555            echo "$ac_t""$MOZ_DBUS_GLIB_CFLAGS" 1>&6 
    1464714556 
    1464814557            echo $ac_n "checking MOZ_DBUS_GLIB_LIBS""... $ac_c" 1>&6 
    14649 echo "configure:14650: checking MOZ_DBUS_GLIB_LIBS" >&5 
     14558echo "configure:14559: checking MOZ_DBUS_GLIB_LIBS" >&5 
    1465014559            ## Remove evil flags like -Wl,--export-dynamic 
    1465114560            MOZ_DBUS_GLIB_LIBS="`$PKG_CONFIG --libs \"dbus-glib-1 >= $DBUS_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1515015059set dummy java; ac_word=$2 
    1515115060echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15152 echo "configure:15153: checking for $ac_word" >&5 
     15061echo "configure:15062: checking for $ac_word" >&5 
    1515315062if eval "test \"`echo '$''{'ac_cv_path_JAVA'+set}'`\" = set"; then 
    1515415063  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1518615095set dummy javac; ac_word=$2 
    1518715096echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15188 echo "configure:15189: checking for $ac_word" >&5 
     15097echo "configure:15098: checking for $ac_word" >&5 
    1518915098if eval "test \"`echo '$''{'ac_cv_path_JAVAC'+set}'`\" = set"; then 
    1519015099  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1522215131set dummy jar; ac_word=$2 
    1522315132echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15224 echo "configure:15225: checking for $ac_word" >&5 
     15133echo "configure:15134: checking for $ac_word" >&5 
    1522515134if eval "test \"`echo '$''{'ac_cv_path_JAR'+set}'`\" = set"; then 
    1522615135  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1529615205set dummy pkg-config; ac_word=$2 
    1529715206echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15298 echo "configure:15299: checking for $ac_word" >&5 
     15207echo "configure:15208: checking for $ac_word" >&5 
    1529915208if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1530015209  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1534015249     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1534115250        echo $ac_n "checking for gthread-2.0""... $ac_c" 1>&6 
    15342 echo "configure:15343: checking for gthread-2.0" >&5 
     15251echo "configure:15252: checking for gthread-2.0" >&5 
    1534315252 
    1534415253        if $PKG_CONFIG --exists "gthread-2.0" ; then 
     
    1534715256 
    1534815257            echo $ac_n "checking MOZ_GTHREAD_CFLAGS""... $ac_c" 1>&6 
    15349 echo "configure:15350: checking MOZ_GTHREAD_CFLAGS" >&5 
     15258echo "configure:15259: checking MOZ_GTHREAD_CFLAGS" >&5 
    1535015259            MOZ_GTHREAD_CFLAGS=`$PKG_CONFIG --cflags "gthread-2.0"` 
    1535115260            echo "$ac_t""$MOZ_GTHREAD_CFLAGS" 1>&6 
    1535215261 
    1535315262            echo $ac_n "checking MOZ_GTHREAD_LIBS""... $ac_c" 1>&6 
    15354 echo "configure:15355: checking MOZ_GTHREAD_LIBS" >&5 
     15263echo "configure:15264: checking MOZ_GTHREAD_LIBS" >&5 
    1535515264            ## Remove evil flags like -Wl,--export-dynamic 
    1535615265            MOZ_GTHREAD_LIBS="`$PKG_CONFIG --libs \"gthread-2.0\" |sed s/-Wl,--export-dynamic//g`" 
     
    1538815297ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    1538915298echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    15390 echo "configure:15391: checking for $ac_hdr" >&5 
     15299echo "configure:15300: checking for $ac_hdr" >&5 
    1539115300if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    1539215301  echo $ac_n "(cached) $ac_c" 1>&6 
    1539315302else 
    1539415303  cat > conftest.$ac_ext <<EOF 
    15395 #line 15396 "configure" 
     15304#line 15305 "configure" 
    1539615305#include "confdefs.h" 
    1539715306#include <$ac_hdr> 
    1539815307EOF 
    1539915308ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    15400 { (eval echo configure:15401: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     15309{ (eval echo configure:15310: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    1540115310ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    1540215311if test -z "$ac_err"; then 
     
    1574815657set dummy $ac_prog; ac_word=$2 
    1574915658echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15750 echo "configure:15751: checking for $ac_word" >&5 
     15659echo "configure:15660: checking for $ac_word" >&5 
    1575115660if eval "test \"`echo '$''{'ac_cv_path_MAKENSIS'+set}'`\" = set"; then 
    1575215661  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1579315702set dummy $ac_prog; ac_word=$2 
    1579415703echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15795 echo "configure:15796: checking for $ac_word" >&5 
     15704echo "configure:15705: checking for $ac_word" >&5 
    1579615705if eval "test \"`echo '$''{'ac_cv_path_HOST_ICONV'+set}'`\" = set"; then 
    1579715706  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1584115750 
    1584215751echo $ac_n "checking for tar archiver""... $ac_c" 1>&6 
    15843 echo "configure:15844: checking for tar archiver" >&5 
     15752echo "configure:15753: checking for tar archiver" >&5 
    1584415753for ac_prog in gnutar gtar tar 
    1584515754do 
     
    1584715756set dummy $ac_prog; ac_word=$2 
    1584815757echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15849 echo "configure:15850: checking for $ac_word" >&5 
     15758echo "configure:15759: checking for $ac_word" >&5 
    1585015759if eval "test \"`echo '$''{'ac_cv_prog_TAR'+set}'`\" = set"; then 
    1585115760  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1590215811        if test -n "$MOZ_UPDATER"; then 
    1590315812            echo $ac_n "checking for iconv""... $ac_c" 1>&6 
    15904 echo "configure:15905: checking for iconv" >&5 
     15813echo "configure:15814: checking for iconv" >&5 
    1590515814            for ac_prog in $HOST_ICONV "iconv" 
    1590615815do 
     
    1590815817set dummy $ac_prog; ac_word=$2 
    1590915818echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    15910 echo "configure:15911: checking for $ac_word" >&5 
     15819echo "configure:15820: checking for $ac_word" >&5 
    1591115820if eval "test \"`echo '$''{'ac_cv_prog_HOST_ICONV'+set}'`\" = set"; then 
    1591215821  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1624816157set dummy pkg-config; ac_word=$2 
    1624916158echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 
    16250 echo "configure:16251: checking for $ac_word" >&5 
     16159echo "configure:16160: checking for $ac_word" >&5 
    1625116160if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then 
    1625216161  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1629216201     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then 
    1629316202        echo $ac_n "checking for sqlite3 >= $SQLITE_VERSION""... $ac_c" 1>&6 
    16294 echo "configure:16295: checking for sqlite3 >= $SQLITE_VERSION" >&5 
     16203echo "configure:16204: checking for sqlite3 >= $SQLITE_VERSION" >&5 
    1629516204 
    1629616205        if $PKG_CONFIG --exists "sqlite3 >= $SQLITE_VERSION" ; then 
     
    1629916208 
    1630016209            echo $ac_n "checking SQLITE_CFLAGS""... $ac_c" 1>&6 
    16301 echo "configure:16302: checking SQLITE_CFLAGS" >&5 
     16210echo "configure:16211: checking SQLITE_CFLAGS" >&5 
    1630216211            SQLITE_CFLAGS=`$PKG_CONFIG --cflags "sqlite3 >= $SQLITE_VERSION"` 
    1630316212            echo "$ac_t""$SQLITE_CFLAGS" 1>&6 
    1630416213 
    1630516214            echo $ac_n "checking SQLITE_LIBS""... $ac_c" 1>&6 
    16306 echo "configure:16307: checking SQLITE_LIBS" >&5 
     16215echo "configure:16216: checking SQLITE_LIBS" >&5 
    1630716216            ## Remove evil flags like -Wl,--export-dynamic 
    1630816217            SQLITE_LIBS="`$PKG_CONFIG --libs \"sqlite3 >= $SQLITE_VERSION\" |sed s/-Wl,--export-dynamic//g`" 
     
    1643116340    JS_ULTRASPARC_OPTS= 
    1643216341fi 
     16342 
     16343 
     16344# Check whether --enable-js-binary or --disable-js-binary was given. 
     16345if test "${enable_js_binary+set}" = set; then 
     16346  enableval="$enable_js_binary" 
     16347  if test "$enableval" = "yes"; then 
     16348    ENABLE_JS_BINARY=1 
     16349  elif test "$enableval" = "no"; then 
     16350    ENABLE_JS_BINARY=  
     16351  else 
     16352    { echo "configure: error: Option, js-binary, does not take an argument ($enableval)." 1>&2; exit 1; } 
     16353  fi 
     16354fi 
     16355 
     16356 
     16357 
     16358if test -n "$ENABLE_JS_BINARY"; then 
     16359            READLINE_DIR=no 
     16360    # Check whether --with-readline or --without-readline was given. 
     16361if test "${with_readline+set}" = set; then 
     16362  withval="$with_readline" 
     16363  READLINE_DIR=$withval 
     16364fi 
     16365 
     16366 
     16367    if test -n "${READLINE_DIR}" -a "${READLINE_DIR}" != "no"; then 
     16368        _SAVE_LDFLAGS=$LDFLAGS 
     16369        LDFLAGS="-L${READLINE_DIR}/lib $LDFLAGS" 
     16370        echo $ac_n "checking for readline in -lreadline""... $ac_c" 1>&6 
     16371echo "configure:16372: checking for readline in -lreadline" >&5 
     16372ac_lib_var=`echo readline'_'readline | sed 'y%./+-%__p_%'` 
     16373if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     16374  echo $ac_n "(cached) $ac_c" 1>&6 
     16375else 
     16376  ac_save_LIBS="$LIBS" 
     16377LIBS="-lreadline  $LIBS" 
     16378cat > conftest.$ac_ext <<EOF 
     16379#line 16380 "configure" 
     16380#include "confdefs.h" 
     16381/* Override any gcc2 internal prototype to avoid an error.  */ 
     16382/* We use char because int might match the return type of a gcc2 
     16383    builtin and then its argument prototype would still apply.  */ 
     16384char readline(); 
     16385 
     16386int main() { 
     16387readline() 
     16388; return 0; } 
     16389EOF 
     16390if { (eval echo configure:16391: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     16391  rm -rf conftest* 
     16392  eval "ac_cv_lib_$ac_lib_var=yes" 
     16393else 
     16394  echo "configure: failed program was:" >&5 
     16395  cat conftest.$ac_ext >&5 
     16396  rm -rf conftest* 
     16397  eval "ac_cv_lib_$ac_lib_var=no" 
     16398fi 
     16399rm -f conftest* 
     16400LIBS="$ac_save_LIBS" 
     16401 
     16402fi 
     16403if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then 
     16404  echo "$ac_t""yes" 1>&6 
     16405  HAVE_READLINE=1 READLINE_LIBS="-lreadline" 
     16406else 
     16407  echo "$ac_t""no" 1>&6 
     16408HAVE_READLINE= READLINE_LIBS= 
     16409fi 
     16410 
     16411        LDFLAGS=$_SAVE_LDFLAGS 
     16412    fi 
     16413 
     16414    if test "${READLINE_DIR}" -a -d "${READLINE_DIR}" -a "$HAVE_READLINE" = 1; then 
     16415        READLINE_LIBS="-L${READLINE_DIR}/lib ${READLINE_LIBS}" 
     16416    fi 
     16417fi 
     16418 
     16419 
    1643316420 
    1643416421 
     
    1649416481if test -n "$MOZ_DEBUG"; then 
    1649516482    echo $ac_n "checking for valid debug flags""... $ac_c" 1>&6 
    16496 echo "configure:16497: checking for valid debug flags" >&5 
     16483echo "configure:16484: checking for valid debug flags" >&5 
    1649716484    _SAVE_CFLAGS=$CFLAGS 
    1649816485    CFLAGS="$CFLAGS $MOZ_DEBUG_FLAGS" 
    1649916486    cat > conftest.$ac_ext <<EOF 
    16500 #line 16501 "configure" 
     16487#line 16488 "configure" 
    1650116488#include "confdefs.h" 
    1650216489#include <stdio.h> 
     
    1650516492; return 0; } 
    1650616493EOF 
    16507 if { (eval echo configure:16508: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     16494if { (eval echo configure:16495: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1650816495  rm -rf conftest* 
    1650916496  _results=yes 
     
    1654616533if test -n "$MOZ_OPTIMIZE"; then 
    1654716534    echo $ac_n "checking for valid optimization flags""... $ac_c" 1>&6 
    16548 echo "configure:16549: checking for valid optimization flags" >&5 
     16535echo "configure:16536: checking for valid optimization flags" >&5 
    1654916536    _SAVE_CFLAGS=$CFLAGS 
    1655016537    CFLAGS="$CFLAGS $MOZ_OPTIMIZE_FLAGS" 
    1655116538    cat > conftest.$ac_ext <<EOF 
    16552 #line 16553 "configure" 
     16539#line 16540 "configure" 
    1655316540#include "confdefs.h" 
    1655416541#include <stdio.h> 
     
    1655716544; return 0; } 
    1655816545EOF 
    16559 if { (eval echo configure:16560: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     16546if { (eval echo configure:16547: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    1656016547  rm -rf conftest* 
    1656116548  _results=yes 
     
    1672716714  else 
    1672816715    echo $ac_n "checking size of int *""... $ac_c" 1>&6 
    16729 echo "configure:16730: checking size of int *" >&5 
     16716echo "configure:16717: checking size of int *" >&5 
    1673016717if eval "test \"`echo '$''{'ac_cv_sizeof_int_p'+set}'`\" = set"; then 
    1673116718  echo $ac_n "(cached) $ac_c" 1>&6 
     
    1673516722else 
    1673616723  cat > conftest.$ac_ext <<EOF 
    16737 #line 16738 "configure" 
     16724#line 16725 "configure" 
    1673816725#include "confdefs.h" 
    1673916726#include <stdio.h> 
    16740 int main() 
     16727#include <sys/types.h> 
     16728main() 
    1674116729{ 
    1674216730  FILE *f=fopen("conftestval", "w"); 
    16743   if (!f) return(1); 
     16731  if (!f) exit(1); 
    1674416732  fprintf(f, "%d\n", sizeof(int *)); 
    16745   return(0); 
     16733  exit(0); 
    1674616734} 
    1674716735EOF 
    16748 if { (eval echo configure:16749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
     16736if { (eval echo configure:16737: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 
    1674916737then 
    1675016738  ac_cv_sizeof_int_p=`cat conftestval` 
     
    1687616864  ac_safe=`echo "valgrind/valgrind.h" | sed 'y%./+-%__p_%'` 
    1687716865echo $ac_n "checking for valgrind/valgrind.h""... $ac_c" 1>&6 
    16878 echo "configure:16879: checking for valgrind/valgrind.h" >&5 
     16866echo "configure:16867: checking for valgrind/valgrind.h" >&5 
    1687916867if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    1688016868  echo $ac_n "(cached) $ac_c" 1>&6 
    1688116869else 
    1688216870  cat > conftest.$ac_ext <<EOF 
    16883 #line 16884 "configure" 
     16871#line 16872 "configure" 
    1688416872#include "confdefs.h" 
    1688516873#include <valgrind/valgrind.h> 
    1688616874EOF 
    1688716875ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    16888 { (eval echo configure:16889: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     16876{ (eval echo configure:16877: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    1688916877ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    1689016878if test -z "$ac_err"; then 
     
    1696316951if test -n "$_ENABLE_EFENCE"; then 
    1696416952    echo $ac_n "checking for malloc in -lefence""... $ac_c" 1>&6 
    16965 echo "configure:16966: checking for malloc in -lefence" >&5 
     16953echo "configure:16954: checking for malloc in -lefence" >&5 
    1696616954ac_lib_var=`echo efence'_'malloc | sed 'y%./+-%__p_%'` 
    1696716955if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    1697116959LIBS="-lefence  $LIBS" 
    1697216960cat > conftest.$ac_ext <<EOF 
    16973 #line 16974 "configure" 
     16961#line 16962 "configure" 
    1697416962#include "confdefs.h" 
    1697516963/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    1698216970; return 0; } 
    1698316971EOF 
    16984 if { (eval echo configure:16985: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     16972if { (eval echo configure:16973: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1698516973  rm -rf conftest* 
    1698616974  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    1711417102do 
    1711517103echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    17116 echo "configure:17117: checking for $ac_func" >&5 
     17104echo "configure:17105: checking for $ac_func" >&5 
    1711717105if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    1711817106  echo $ac_n "(cached) $ac_c" 1>&6 
    1711917107else 
    1712017108  cat > conftest.$ac_ext <<EOF 
    17121 #line 17122 "configure" 
     17109#line 17110 "configure" 
    1712217110#include "confdefs.h" 
    1712317111/* System header to define __stub macros and hopefully few prototypes, 
     
    1714517133; return 0; } 
    1714617134EOF 
    17147 if { (eval echo configure:17148: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     17135if { (eval echo configure:17136: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1714817136  rm -rf conftest* 
    1714917137  eval "ac_cv_func_$ac_func=yes" 
     
    1736417352do 
    1736517353echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    17366 echo "configure:17367: checking for $ac_func" >&5 
     17354echo "configure:17355: checking for $ac_func" >&5 
    1736717355if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    1736817356  echo $ac_n "(cached) $ac_c" 1>&6 
    1736917357else 
    1737017358  cat > conftest.$ac_ext <<EOF 
    17371 #line 17372 "configure" 
     17359#line 17360 "configure" 
    1737217360#include "confdefs.h" 
    1737317361/* System header to define __stub macros and hopefully few prototypes, 
     
    1739517383; return 0; } 
    1739617384EOF 
    17397 if { (eval echo configure:17398: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     17385if { (eval echo configure:17386: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    1739817386  rm -rf conftest* 
    1739917387  eval "ac_cv_func_$ac_func=yes" 
     
    1744317431    ac_safe=`echo "unwind.h" | sed 'y%./+-%__p_%'` 
    1744417432echo $ac_n "checking for unwind.h""... $ac_c" 1>&6 
    17445 echo "configure:17446: checking for unwind.h" >&5 
     17433echo "configure:17434: checking for unwind.h" >&5 
    1744617434if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    1744717435  echo $ac_n "(cached) $ac_c" 1>&6 
    1744817436else 
    1744917437  cat > conftest.$ac_ext <<EOF 
    17450 #line 17451 "configure" 
     17438#line 17439 "configure" 
    1745117439#include "confdefs.h" 
    1745217440#include <unwind.h> 
    1745317441EOF 
    1745417442ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    17455 { (eval echo configure:17456: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     17443{ (eval echo configure:17444: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    1745617444ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    1745717445if test -z "$ac_err"; then 
     
    1747217460do 
    1747317461echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    17474 echo "configure:17475: checking for $ac_func" >&5 
     17462echo "configure:17463: checking for $ac_func" >&5 
    1747517463if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    1747617464  echo $ac_n "(cached) $ac_c" 1>&6 
    1747717465else 
    1747817466  cat > conftest.$ac_ext <<EOF 
    17479 #line 17480 "configure" 
     17467#line 17468 "configure" 
    1748017468#include "confdefs.h" 
    1748117469/* System header to define __stub macros and hopefully few prototypes,