forked from pool/MozillaThunderbird
5557 lines
208 KiB
Diff
5557 lines
208 KiB
Diff
Index: config/autoconf.mk.in
|
|
===================================================================
|
|
RCS file: /cvsroot/mozilla/config/autoconf.mk.in,v
|
|
retrieving revision 3.363.2.1
|
|
diff -u -p -6 -r3.363.2.1 autoconf.mk.in
|
|
--- config/autoconf.mk.in 17 Aug 2005 17:17:17 -0000 3.363.2.1
|
|
+++ config/autoconf.mk.in 27 Aug 2005 19:57:29 -0000
|
|
@@ -456,12 +456,13 @@ MOZ_XFT_CFLAGS = @MOZ_XFT_CFLAGS@
|
|
MOZ_XFT_LIBS = @MOZ_XFT_LIBS@
|
|
MOZ_ENABLE_COREXFONTS = @MOZ_ENABLE_COREXFONTS@
|
|
|
|
MOZ_ENABLE_PANGO = @MOZ_ENABLE_PANGO@
|
|
MOZ_PANGO_CFLAGS = @MOZ_PANGO_CFLAGS@
|
|
MOZ_PANGO_LIBS = @MOZ_PANGO_LIBS@
|
|
+MOZ_PANGOCAIRO = @MOZ_PANGOCAIRO@
|
|
|
|
MOZ_EXTRA_X11CONVERTERS = @MOZ_EXTRA_X11CONVERTERS@
|
|
|
|
MOZ_ENABLE_XINERAMA = @MOZ_ENABLE_XINERAMA@
|
|
MOZ_XINERAMA_LIBS = @MOZ_XINERAMA_LIBS@
|
|
|
|
Index: gfx/src/gtk/mozilla-decoder.cpp
|
|
===================================================================
|
|
RCS file: /cvsroot/mozilla/gfx/src/gtk/mozilla-decoder.cpp,v
|
|
retrieving revision 1.3
|
|
diff -u -p -6 -r1.3 mozilla-decoder.cpp
|
|
--- gfx/src/gtk/mozilla-decoder.cpp 7 Nov 2004 23:59:23 -0000 1.3
|
|
+++ gfx/src/gtk/mozilla-decoder.cpp 27 Aug 2005 19:57:49 -0000
|
|
@@ -37,13 +37,17 @@
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#define PANGO_ENABLE_BACKEND
|
|
#define PANGO_ENABLE_ENGINE
|
|
|
|
#include "mozilla-decoder.h"
|
|
+#ifdef MOZ_PANGOCAIRO
|
|
+#include <pango/pangocairo.h>
|
|
+#else
|
|
#include <pango/pangoxft.h>
|
|
+#endif
|
|
#include <pango/pangofc-fontmap.h>
|
|
#include <pango/pangofc-font.h>
|
|
#include <gdk/gdkx.h>
|
|
|
|
#include "nsString.h"
|
|
#include "nsIPersistentProperties2.h"
|
|
@@ -205,13 +209,17 @@ mozilla_decoders_init(void)
|
|
}
|
|
else {
|
|
printf("unknown suffix used for mapping\n");
|
|
}
|
|
}
|
|
|
|
+#ifdef MOZ_PANGOCAIRO
|
|
+ pango_fc_font_map_add_decoder_find_func(PANGO_FC_FONT_MAP(pango_cairo_font_map_get_default()),
|
|
+#else
|
|
pango_fc_font_map_add_decoder_find_func(PANGO_FC_FONT_MAP(pango_xft_get_font_map(GDK_DISPLAY(),gdk_x11_get_default_screen())),
|
|
+#endif
|
|
mozilla_find_decoder,
|
|
NULL,
|
|
NULL);
|
|
|
|
initialized = PR_TRUE;
|
|
|
|
Index: configure.in
|
|
===================================================================
|
|
RCS file: /cvsroot/mozilla/configure.in,v
|
|
retrieving revision 1.1503.2.6
|
|
diff -u -p -6 -r1.1503.2.6 configure.in
|
|
--- configure.in 25 Aug 2005 19:05:34 -0000 1.1503.2.6
|
|
+++ configure.in 29 Aug 2005 08:03:32 -0000
|
|
@@ -3707,14 +3707,14 @@ gtk)
|
|
;;
|
|
|
|
gtk2)
|
|
MOZ_ENABLE_GTK2=1
|
|
MOZ_ENABLE_XREMOTE=1
|
|
MOZ_ENABLE_COREXFONTS=${MOZ_ENABLE_COREXFONTS-}
|
|
- TK_CFLAGS='$(MOZ_GTK2_CFLAGS)'
|
|
- TK_LIBS='$(MOZ_GTK2_LIBS)'
|
|
+ TK_CFLAGS='$(MOZ_GTK2_CFLAGS) $(MOZ_PANGO_CFLAGS)'
|
|
+ TK_LIBS='$(MOZ_GTK2_LIBS) $(MOZ_PANGO_LIBS)'
|
|
AC_DEFINE(MOZ_WIDGET_GTK2)
|
|
;;
|
|
|
|
xlib)
|
|
MOZ_ENABLE_XLIB=1
|
|
if test "$_HAVE_FREETYPE2"; then
|
|
@@ -4277,33 +4277,44 @@ if test "$MOZ_ENABLE_XFT" && test "$MOZ_
|
|
fi
|
|
|
|
if test "$MOZ_ENABLE_XFT"
|
|
then
|
|
AC_DEFINE(MOZ_ENABLE_XFT)
|
|
PKG_CHECK_MODULES(MOZ_XFT, xft)
|
|
- PKG_CHECK_MODULES(_PANGOCHK, pango >= 1.1.0)
|
|
+ PKG_CHECK_MODULES(MOZ_PANGO, pangoxft >= 1.1.0 pangox)
|
|
fi
|
|
|
|
AC_SUBST(MOZ_ENABLE_XFT)
|
|
AC_SUBST(MOZ_XFT_CFLAGS)
|
|
AC_SUBST(MOZ_XFT_LIBS)
|
|
+AC_SUBST(MOZ_PANGO_CFLAGS)
|
|
+AC_SUBST(MOZ_PANGO_LIBS)
|
|
|
|
dnl ========================================================
|
|
dnl = pango font rendering
|
|
dnl ========================================================
|
|
MOZ_ARG_ENABLE_BOOL(pango,
|
|
[ --enable-pango Enable Pango font rendering support],
|
|
MOZ_ENABLE_PANGO=1,
|
|
MOZ_ENABLE_PANGO=)
|
|
|
|
if test "$MOZ_ENABLE_PANGO"
|
|
then
|
|
AC_DEFINE(MOZ_ENABLE_PANGO)
|
|
- PKG_CHECK_MODULES(MOZ_PANGO, pango >= 1.6.0 pangoft2 >= 1.6.0)
|
|
+ PKG_CHECK_MODULES(MOZ_PANGO, pangoxft >= 1.6.0)
|
|
+ PKG_CHECK_MODULES(PANGOCAIRO_CHK, pangocairo >= 1.10.0,
|
|
+ [
|
|
+ MOZ_PANGOCAIRO=1
|
|
+ AC_DEFINE(MOZ_PANGOCAIRO)
|
|
+ MOZ_PANGO_CFLAGS="$PANGOCAIRO_CHK_CFLAGS $MOZ_PANGO_CFLAGS"
|
|
+ MOZ_PANGO_LIBS="$PANGOCAIRO_CHK_LIBS $MOZ_PANGO_LIBS"
|
|
+ ],
|
|
+ [:])
|
|
|
|
AC_SUBST(MOZ_ENABLE_PANGO)
|
|
+ AC_SUBST(MOZ_PANGOCAIRO)
|
|
AC_SUBST(MOZ_PANGO_CFLAGS)
|
|
AC_SUBST(MOZ_PANGO_LIBS)
|
|
fi
|
|
|
|
dnl ========================================================
|
|
dnl = x11 core font support (default and ability to enable depend on toolkit)
|
|
Index: configure
|
|
===================================================================
|
|
RCS file: /cvsroot/mozilla/configure,v
|
|
retrieving revision 1.1492.2.17.2.9
|
|
diff -u -r1.1492.2.17.2.9 configure
|
|
--- configure 16 Jun 2006 20:04:20 -0000 1.1492.2.17.2.9
|
|
+++ configure 27 Jul 2006 04:47:37 -0000
|
|
@@ -1042,7 +1042,7 @@
|
|
LIBGNOME_VERSION=2.0
|
|
|
|
MISSING_X=
|
|
-for ac_prog in gawk mawk nawk awk
|
|
+for ac_prog in mawk gawk nawk awk
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
@@ -1878,57 +1878,6 @@
|
|
fi
|
|
fi
|
|
|
|
-for ac_declaration in \
|
|
- ''\
|
|
- '#include <stdlib.h>' \
|
|
- 'extern "C" void std::exit (int) throw (); using std::exit;' \
|
|
- 'extern "C" void std::exit (int); using std::exit;' \
|
|
- 'extern "C" void exit (int) throw ();' \
|
|
- 'extern "C" void exit (int);' \
|
|
- 'void exit (int);'
|
|
-do
|
|
- cat > conftest.$ac_ext <<EOF
|
|
-#line 1892 "configure"
|
|
-#include "confdefs.h"
|
|
-#include <stdlib.h>
|
|
-$ac_declaration
|
|
-int main() {
|
|
-exit (42);
|
|
-; return 0; }
|
|
-EOF
|
|
-if { (eval echo configure:1900: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
- :
|
|
-else
|
|
- echo "configure: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
- rm -rf conftest*
|
|
- continue
|
|
-fi
|
|
-rm -f conftest*
|
|
- cat > conftest.$ac_ext <<EOF
|
|
-#line 1910 "configure"
|
|
-#include "confdefs.h"
|
|
-$ac_declaration
|
|
-int main() {
|
|
-exit (42);
|
|
-; return 0; }
|
|
-EOF
|
|
-if { (eval echo configure:1917: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
- rm -rf conftest*
|
|
- break
|
|
-else
|
|
- echo "configure: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
-fi
|
|
-rm -f conftest*
|
|
-done
|
|
-if test -n "$ac_declaration"; then
|
|
- echo '#ifdef __cplusplus' >>confdefs.h
|
|
- echo $ac_declaration >>confdefs.h
|
|
- echo '#endif' >>confdefs.h
|
|
-fi
|
|
-
|
|
-
|
|
|
|
case "$build:$target" in
|
|
powerpc-apple-darwin8*:i?86-apple-darwin*)
|
|
@@ -1942,7 +1891,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:1946: checking for $ac_word" >&5
|
|
+echo "configure:1895: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -1977,7 +1926,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:1981: checking for $ac_word" >&5
|
|
+echo "configure:1930: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2012,7 +1961,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2016: checking for $ac_word" >&5
|
|
+echo "configure:1965: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_AS'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2053,7 +2002,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2057: checking for $ac_word" >&5
|
|
+echo "configure:2006: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2088,7 +2037,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2092: checking for $ac_word" >&5
|
|
+echo "configure:2041: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2123,7 +2072,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2127: checking for $ac_word" >&5
|
|
+echo "configure:2076: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2161,7 +2110,7 @@
|
|
# Extract the first word of "gcc", so it can be a program name with args.
|
|
set dummy gcc; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2165: checking for $ac_word" >&5
|
|
+echo "configure:2114: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2191,7 +2140,7 @@
|
|
# Extract the first word of "cc", so it can be a program name with args.
|
|
set dummy cc; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2195: checking for $ac_word" >&5
|
|
+echo "configure:2144: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2242,7 +2191,7 @@
|
|
# Extract the first word of "cl", so it can be a program name with args.
|
|
set dummy cl; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2246: checking for $ac_word" >&5
|
|
+echo "configure:2195: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2274,7 +2223,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
|
|
-echo "configure:2278: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
|
|
+echo "configure:2227: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
|
|
|
|
ac_ext=c
|
|
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
|
|
@@ -2285,12 +2234,12 @@
|
|
|
|
cat > conftest.$ac_ext << EOF
|
|
|
|
-#line 2289 "configure"
|
|
+#line 2238 "configure"
|
|
#include "confdefs.h"
|
|
|
|
main(){return(0);}
|
|
EOF
|
|
-if { (eval echo configure:2294: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:2243: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
ac_cv_prog_cc_works=yes
|
|
# If we can't run a trivial program, we are probably using a cross compiler.
|
|
if (./conftest; exit) 2>/dev/null; then
|
|
@@ -2316,12 +2265,12 @@
|
|
{ echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
|
|
fi
|
|
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
|
|
-echo "configure:2320: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
|
|
+echo "configure:2269: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
|
|
echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
|
|
cross_compiling=$ac_cv_prog_cc_cross
|
|
|
|
echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
|
|
-echo "configure:2325: checking whether we are using GNU C" >&5
|
|
+echo "configure:2274: checking whether we are using GNU C" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2330,7 +2279,7 @@
|
|
yes;
|
|
#endif
|
|
EOF
|
|
-if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2334: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
|
|
+if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2283: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
|
|
ac_cv_prog_gcc=yes
|
|
else
|
|
ac_cv_prog_gcc=no
|
|
@@ -2349,7 +2298,7 @@
|
|
ac_save_CFLAGS="$CFLAGS"
|
|
CFLAGS=
|
|
echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
|
|
-echo "configure:2353: checking whether ${CC-cc} accepts -g" >&5
|
|
+echo "configure:2302: checking whether ${CC-cc} accepts -g" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2385,7 +2334,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2389: checking for $ac_word" >&5
|
|
+echo "configure:2338: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2417,7 +2366,7 @@
|
|
|
|
|
|
echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6
|
|
-echo "configure:2421: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
|
|
+echo "configure:2370: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
|
|
|
|
ac_ext=C
|
|
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
|
|
@@ -2428,12 +2377,12 @@
|
|
|
|
cat > conftest.$ac_ext << EOF
|
|
|
|
-#line 2432 "configure"
|
|
+#line 2381 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main(){return(0);}
|
|
EOF
|
|
-if { (eval echo configure:2437: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:2386: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
ac_cv_prog_cxx_works=yes
|
|
# If we can't run a trivial program, we are probably using a cross compiler.
|
|
if (./conftest; exit) 2>/dev/null; then
|
|
@@ -2459,12 +2408,12 @@
|
|
{ echo "configure: error: installation or configuration problem: C++ compiler cannot create executables." 1>&2; exit 1; }
|
|
fi
|
|
echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
|
|
-echo "configure:2463: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
|
|
+echo "configure:2412: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
|
|
echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
|
|
-echo "configure:2468: checking whether we are using GNU C++" >&5
|
|
+echo "configure:2417: checking whether we are using GNU C++" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2473,7 +2422,7 @@
|
|
yes;
|
|
#endif
|
|
EOF
|
|
-if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:2477: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
|
|
+if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:2426: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
|
|
ac_cv_prog_gxx=yes
|
|
else
|
|
ac_cv_prog_gxx=no
|
|
@@ -2492,7 +2441,7 @@
|
|
ac_save_CXXFLAGS="$CXXFLAGS"
|
|
CXXFLAGS=
|
|
echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
|
|
-echo "configure:2496: checking whether ${CXX-g++} accepts -g" >&5
|
|
+echo "configure:2445: checking whether ${CXX-g++} accepts -g" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2523,61 +2472,10 @@
|
|
fi
|
|
fi
|
|
|
|
-for ac_declaration in \
|
|
- ''\
|
|
- '#include <stdlib.h>' \
|
|
- 'extern "C" void std::exit (int) throw (); using std::exit;' \
|
|
- 'extern "C" void std::exit (int); using std::exit;' \
|
|
- 'extern "C" void exit (int) throw ();' \
|
|
- 'extern "C" void exit (int);' \
|
|
- 'void exit (int);'
|
|
-do
|
|
- cat > conftest.$ac_ext <<EOF
|
|
-#line 2537 "configure"
|
|
-#include "confdefs.h"
|
|
-#include <stdlib.h>
|
|
-$ac_declaration
|
|
-int main() {
|
|
-exit (42);
|
|
-; return 0; }
|
|
-EOF
|
|
-if { (eval echo configure:2545: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
- :
|
|
-else
|
|
- echo "configure: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
- rm -rf conftest*
|
|
- continue
|
|
-fi
|
|
-rm -f conftest*
|
|
- cat > conftest.$ac_ext <<EOF
|
|
-#line 2555 "configure"
|
|
-#include "confdefs.h"
|
|
-$ac_declaration
|
|
-int main() {
|
|
-exit (42);
|
|
-; return 0; }
|
|
-EOF
|
|
-if { (eval echo configure:2562: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
- rm -rf conftest*
|
|
- break
|
|
-else
|
|
- echo "configure: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
-fi
|
|
-rm -f conftest*
|
|
-done
|
|
-if test -n "$ac_declaration"; then
|
|
- echo '#ifdef __cplusplus' >>confdefs.h
|
|
- echo $ac_declaration >>confdefs.h
|
|
- echo '#endif' >>confdefs.h
|
|
-fi
|
|
-
|
|
-
|
|
# Extract the first word of "ranlib", so it can be a program name with args.
|
|
set dummy ranlib; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2581: checking for $ac_word" >&5
|
|
+echo "configure:2479: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2609,7 +2507,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2613: checking for $ac_word" >&5
|
|
+echo "configure:2511: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_AS'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2650,7 +2548,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2654: checking for $ac_word" >&5
|
|
+echo "configure:2552: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2685,7 +2583,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2689: checking for $ac_word" >&5
|
|
+echo "configure:2587: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2720,7 +2618,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2724: checking for $ac_word" >&5
|
|
+echo "configure:2622: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2755,7 +2653,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2759: checking for $ac_word" >&5
|
|
+echo "configure:2657: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2844,7 +2742,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:2848: checking for $ac_word" >&5
|
|
+echo "configure:2746: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_MIDL'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -2886,14 +2784,14 @@
|
|
cross_compiling=$ac_cv_prog_cc_cross
|
|
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 2890 "configure"
|
|
+#line 2788 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int main() {
|
|
printf("Hello World\n");
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:2897: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:2795: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
:
|
|
else
|
|
echo "configure: failed program was:" >&5
|
|
@@ -2911,14 +2809,14 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 2915 "configure"
|
|
+#line 2813 "configure"
|
|
#include "confdefs.h"
|
|
#include <new.h>
|
|
int main() {
|
|
unsigned *test = new unsigned(42);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:2922: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:2820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
:
|
|
else
|
|
echo "configure: failed program was:" >&5
|
|
@@ -2974,7 +2872,7 @@
|
|
_MIDL_REV_VERSION=`echo ${_MIDL_FULL_VERSION} | $AWK -F\. '{ print $3 }'`
|
|
# Add flags if necessary
|
|
echo $ac_n "checking for midl flags""... $ac_c" 1>&6
|
|
-echo "configure:2978: checking for midl flags" >&5
|
|
+echo "configure:2876: checking for midl flags" >&5
|
|
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
|
|
# Starting with MIDL version 6.0.359, the MIDL compiler
|
|
# generates /Oicf /robust stubs by default, which is not
|
|
@@ -2996,9 +2894,9 @@
|
|
_W32API_MAJOR_VERSION=`echo $W32API_VERSION | $AWK -F\. '{ print $1 }'`
|
|
_W32API_MINOR_VERSION=`echo $W32API_VERSION | $AWK -F\. '{ print $2 }'`
|
|
echo $ac_n "checking for w32api version >= $W32API_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:3000: checking for w32api version >= $W32API_VERSION" >&5
|
|
+echo "configure:2898: checking for w32api version >= $W32API_VERSION" >&5
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3002 "configure"
|
|
+#line 2900 "configure"
|
|
#include "confdefs.h"
|
|
#include <w32api.h>
|
|
int main() {
|
|
@@ -3010,7 +2908,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:3014: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:2912: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
res=yes
|
|
else
|
|
@@ -3026,7 +2924,7 @@
|
|
fi
|
|
# Check windres version
|
|
echo $ac_n "checking for windres version >= $WINDRES_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:3030: checking for windres version >= $WINDRES_VERSION" >&5
|
|
+echo "configure:2928: checking for windres version >= $WINDRES_VERSION" >&5
|
|
_WINDRES_VERSION=`${WINDRES} --version 2>&1 | grep -i windres 2>/dev/null | $AWK '{ print $3 }'`
|
|
echo "$ac_t""$_WINDRES_VERSION" 1>&6
|
|
_WINDRES_MAJOR_VERSION=`echo $_WINDRES_VERSION | $AWK -F\. '{ print $1 }'`
|
|
@@ -3053,7 +2951,7 @@
|
|
SKIP_COMPILER_CHECKS=1
|
|
SKIP_LIBRARY_CHECKS=1
|
|
echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
|
|
-echo "configure:3057: checking how to run the C preprocessor" >&5
|
|
+echo "configure:2955: checking how to run the C preprocessor" >&5
|
|
# On Suns, sometimes $CPP names a directory.
|
|
if test -n "$CPP" && test -d "$CPP"; then
|
|
CPP=
|
|
@@ -3068,13 +2966,13 @@
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp.
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3072 "configure"
|
|
+#line 2970 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax Error
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3078: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:2976: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
:
|
|
@@ -3085,13 +2983,13 @@
|
|
rm -rf conftest*
|
|
CPP="${CC-cc} -E -traditional-cpp"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3089 "configure"
|
|
+#line 2987 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax Error
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:2993: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
:
|
|
@@ -3102,13 +3000,13 @@
|
|
rm -rf conftest*
|
|
CPP="${CC-cc} -nologo -E"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3106 "configure"
|
|
+#line 3004 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax Error
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3112: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:3010: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
:
|
|
@@ -3136,17 +3034,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:3140: checking for $ac_hdr" >&5
|
|
+echo "configure:3038: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3145 "configure"
|
|
+#line 3043 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3150: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:3048: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -3177,10 +3075,10 @@
|
|
if test "$CC" != "icc" -a -z "$_WIN32_MSVC"; then
|
|
if test "x$CC" != xcc; then
|
|
echo $ac_n "checking whether $CC and cc understand -c and -o together""... $ac_c" 1>&6
|
|
-echo "configure:3181: checking whether $CC and cc understand -c and -o together" >&5
|
|
+echo "configure:3079: checking whether $CC and cc understand -c and -o together" >&5
|
|
else
|
|
echo $ac_n "checking whether cc understands -c and -o together""... $ac_c" 1>&6
|
|
-echo "configure:3184: checking whether cc understands -c and -o together" >&5
|
|
+echo "configure:3082: checking whether cc understands -c and -o together" >&5
|
|
fi
|
|
set dummy $CC; ac_cc="`echo $2 |
|
|
sed -e 's/[^a-zA-Z0-9_]/_/g' -e 's/^[0-9]/_/'`"
|
|
@@ -3192,16 +3090,16 @@
|
|
# We do the test twice because some compilers refuse to overwrite an
|
|
# existing .o file with -o, though they will create one.
|
|
ac_try='${CC-cc} -c conftest.c -o conftest.o 1>&5'
|
|
-if { (eval echo configure:3196: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
|
|
- test -f conftest.o && { (eval echo configure:3197: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
|
|
+if { (eval echo configure:3094: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
|
|
+ test -f conftest.o && { (eval echo configure:3095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
|
|
then
|
|
eval ac_cv_prog_cc_${ac_cc}_c_o=yes
|
|
if test "x$CC" != xcc; then
|
|
# Test first that cc exists at all.
|
|
- if { ac_try='cc -c conftest.c 1>&5'; { (eval echo configure:3202: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
|
|
+ if { ac_try='cc -c conftest.c 1>&5'; { (eval echo configure:3100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
|
|
ac_try='cc -c conftest.c -o conftest.o 1>&5'
|
|
- if { (eval echo configure:3204: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
|
|
- test -f conftest.o && { (eval echo configure:3205: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
|
|
+ if { (eval echo configure:3102: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
|
|
+ test -f conftest.o && { (eval echo configure:3103: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
|
|
then
|
|
# cc works too.
|
|
:
|
|
@@ -3237,7 +3135,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
|
|
-echo "configure:3241: checking how to run the C preprocessor" >&5
|
|
+echo "configure:3139: checking how to run the C preprocessor" >&5
|
|
# On Suns, sometimes $CPP names a directory.
|
|
if test -n "$CPP" && test -d "$CPP"; then
|
|
CPP=
|
|
@@ -3252,13 +3150,13 @@
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp.
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3256 "configure"
|
|
+#line 3154 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax Error
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3262: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:3160: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
:
|
|
@@ -3269,13 +3167,13 @@
|
|
rm -rf conftest*
|
|
CPP="${CC-cc} -E -traditional-cpp"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3273 "configure"
|
|
+#line 3171 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax Error
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3279: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:3177: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
:
|
|
@@ -3286,13 +3184,13 @@
|
|
rm -rf conftest*
|
|
CPP="${CC-cc} -nologo -E"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3290 "configure"
|
|
+#line 3188 "configure"
|
|
#include "confdefs.h"
|
|
#include <assert.h>
|
|
Syntax Error
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3296: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:3194: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
:
|
|
@@ -3317,7 +3215,7 @@
|
|
echo "$ac_t""$CPP" 1>&6
|
|
|
|
echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6
|
|
-echo "configure:3321: checking how to run the C++ preprocessor" >&5
|
|
+echo "configure:3219: checking how to run the C++ preprocessor" >&5
|
|
if test -z "$CXXCPP"; then
|
|
if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -3330,12 +3228,12 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
CXXCPP="${CXX-g++} -E"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3334 "configure"
|
|
+#line 3232 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:3339: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:3237: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
:
|
|
@@ -3382,7 +3280,7 @@
|
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
|
# ./install, which can be erroneously created by make from ./install.sh.
|
|
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
|
|
-echo "configure:3386: checking for a BSD compatible install" >&5
|
|
+echo "configure:3284: checking for a BSD compatible install" >&5
|
|
if test -z "$INSTALL"; then
|
|
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -3435,7 +3333,7 @@
|
|
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
|
|
|
echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
|
|
-echo "configure:3439: checking whether ln -s works" >&5
|
|
+echo "configure:3337: checking whether ln -s works" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3460,7 +3358,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3464: checking for $ac_word" >&5
|
|
+echo "configure:3362: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3500,7 +3398,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for minimum required perl version >= $PERL_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:3504: checking for minimum required perl version >= $PERL_VERSION" >&5
|
|
+echo "configure:3402: checking for minimum required perl version >= $PERL_VERSION" >&5
|
|
_perl_version=`PERL_VERSION=$PERL_VERSION $PERL -e 'print "$]"; if ($] >= $ENV{PERL_VERSION}) { exit(0); } else { exit(1); }' 2>&5`
|
|
_perl_res=$?
|
|
echo "$ac_t""$_perl_version" 1>&6
|
|
@@ -3510,7 +3408,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for full perl installation""... $ac_c" 1>&6
|
|
-echo "configure:3514: checking for full perl installation" >&5
|
|
+echo "configure:3412: checking for full perl installation" >&5
|
|
_perl_archlib=`$PERL -e 'use Config; if ( -d $Config{archlib} ) { exit(0); } else { exit(1); }' 2>&5`
|
|
_perl_res=$?
|
|
if test "$_perl_res" != 0; then
|
|
@@ -3523,7 +3421,7 @@
|
|
# Extract the first word of "doxygen", so it can be a program name with args.
|
|
set dummy doxygen; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3527: checking for $ac_word" >&5
|
|
+echo "configure:3425: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_DOXYGEN'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3559,7 +3457,7 @@
|
|
# Extract the first word of "whoami", so it can be a program name with args.
|
|
set dummy whoami; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3563: checking for $ac_word" >&5
|
|
+echo "configure:3461: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_WHOAMI'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3595,7 +3493,7 @@
|
|
# Extract the first word of "autoconf", so it can be a program name with args.
|
|
set dummy autoconf; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3599: checking for $ac_word" >&5
|
|
+echo "configure:3497: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_AUTOCONF'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3631,7 +3529,7 @@
|
|
# Extract the first word of "unzip", so it can be a program name with args.
|
|
set dummy unzip; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3635: checking for $ac_word" >&5
|
|
+echo "configure:3533: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_UNZIP'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3669,7 +3567,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3673: checking for $ac_word" >&5
|
|
+echo "configure:3571: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_ZIP'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3710,7 +3608,7 @@
|
|
# Extract the first word of "makedepend", so it can be a program name with args.
|
|
set dummy makedepend; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3714: checking for $ac_word" >&5
|
|
+echo "configure:3612: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_SYSTEM_MAKEDEPEND'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3745,7 +3643,7 @@
|
|
# Extract the first word of "xargs", so it can be a program name with args.
|
|
set dummy xargs; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3749: checking for $ac_word" >&5
|
|
+echo "configure:3647: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_XARGS'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3808,7 +3706,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3812: checking for $ac_word" >&5
|
|
+echo "configure:3710: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PBBUILD'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3858,7 +3756,7 @@
|
|
# Extract the first word of "sdp", so it can be a program name with args.
|
|
set dummy sdp; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:3862: checking for $ac_word" >&5
|
|
+echo "configure:3760: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_SDP'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -3954,7 +3852,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for valid compiler/Mac OS X SDK combination""... $ac_c" 1>&6
|
|
-echo "configure:3958: checking for valid compiler/Mac OS X SDK combination" >&5
|
|
+echo "configure:3856: checking for valid compiler/Mac OS X SDK combination" >&5
|
|
ac_ext=C
|
|
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
|
|
ac_cpp='$CXXCPP $CPPFLAGS'
|
|
@@ -3963,7 +3861,7 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 3967 "configure"
|
|
+#line 3865 "configure"
|
|
#include "confdefs.h"
|
|
#include <new>
|
|
int main() { return 0; }
|
|
@@ -3971,7 +3869,7 @@
|
|
result=yes
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:3975: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:3873: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
result=no
|
|
else
|
|
@@ -3996,7 +3894,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:4000: checking for $ac_word" >&5
|
|
+echo "configure:3898: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_MAKE'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -4039,7 +3937,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:4043: checking for $ac_word" >&5
|
|
+echo "configure:3941: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_MAKE'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -4107,7 +4005,7 @@
|
|
# Uses ac_ vars as temps to allow command line to override cache and checks.
|
|
# --without-x overrides everything else, but does not touch the cache.
|
|
echo $ac_n "checking for X""... $ac_c" 1>&6
|
|
-echo "configure:4111: checking for X" >&5
|
|
+echo "configure:4009: checking for X" >&5
|
|
|
|
# Check whether --with-x or --without-x was given.
|
|
if test "${with_x+set}" = set; then
|
|
@@ -4169,12 +4067,12 @@
|
|
|
|
# First, try using that file with no special directory specified.
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4173 "configure"
|
|
+#line 4071 "configure"
|
|
#include "confdefs.h"
|
|
#include <$x_direct_test_include>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:4178: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:4076: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -4243,14 +4141,14 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-l$x_direct_test_library $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4247 "configure"
|
|
+#line 4145 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
${x_direct_test_function}()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4254: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4152: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
LIBS="$ac_save_LIBS"
|
|
# We can link X programs with no special library path.
|
|
@@ -4356,17 +4254,17 @@
|
|
case "`(uname -sr) 2>/dev/null`" in
|
|
"SunOS 5"*)
|
|
echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6
|
|
-echo "configure:4360: checking whether -R must be followed by a space" >&5
|
|
+echo "configure:4258: checking whether -R must be followed by a space" >&5
|
|
ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4363 "configure"
|
|
+#line 4261 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4268: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_R_nospace=yes
|
|
else
|
|
@@ -4382,14 +4280,14 @@
|
|
else
|
|
LIBS="$ac_xsave_LIBS -R $x_libraries"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4386 "configure"
|
|
+#line 4284 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4393: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4291: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_R_space=yes
|
|
else
|
|
@@ -4421,7 +4319,7 @@
|
|
# libraries were built with DECnet support. And karl@cs.umb.edu says
|
|
# the Alpha needs dnet_stub (dnet does not exist).
|
|
echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6
|
|
-echo "configure:4425: checking for dnet_ntoa in -ldnet" >&5
|
|
+echo "configure:4323: checking for dnet_ntoa in -ldnet" >&5
|
|
ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -4429,7 +4327,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-ldnet $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4433 "configure"
|
|
+#line 4331 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -4443,7 +4341,7 @@
|
|
dnet_ntoa()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4447: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4345: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -4465,7 +4363,7 @@
|
|
|
|
if test $ac_cv_lib_dnet_dnet_ntoa = no; then
|
|
echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6
|
|
-echo "configure:4469: checking for dnet_ntoa in -ldnet_stub" >&5
|
|
+echo "configure:4367: checking for dnet_ntoa in -ldnet_stub" >&5
|
|
ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -4473,7 +4371,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-ldnet_stub $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4477 "configure"
|
|
+#line 4375 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -4487,7 +4385,7 @@
|
|
dnet_ntoa()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4491: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4389: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -4516,12 +4414,12 @@
|
|
# The nsl library prevents programs from opening the X display
|
|
# on Irix 5.2, according to dickey@clark.net.
|
|
echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6
|
|
-echo "configure:4520: checking for gethostbyname" >&5
|
|
+echo "configure:4418: checking for gethostbyname" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4525 "configure"
|
|
+#line 4423 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char gethostbyname(); below. */
|
|
@@ -4547,7 +4445,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4551: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4449: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_gethostbyname=yes"
|
|
else
|
|
@@ -4568,7 +4466,7 @@
|
|
|
|
if test $ac_cv_func_gethostbyname = no; then
|
|
echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
|
|
-echo "configure:4572: checking for gethostbyname in -lnsl" >&5
|
|
+echo "configure:4470: checking for gethostbyname in -lnsl" >&5
|
|
ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -4576,7 +4474,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lnsl $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4580 "configure"
|
|
+#line 4478 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -4590,7 +4488,7 @@
|
|
gethostbyname()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4594: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4492: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -4620,12 +4518,12 @@
|
|
# -lsocket must be given before -lnsl if both are needed.
|
|
# We assume that if connect needs -lnsl, so does gethostbyname.
|
|
echo $ac_n "checking for connect""... $ac_c" 1>&6
|
|
-echo "configure:4624: checking for connect" >&5
|
|
+echo "configure:4522: checking for connect" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4629 "configure"
|
|
+#line 4527 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char connect(); below. */
|
|
@@ -4651,7 +4549,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4553: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_connect=yes"
|
|
else
|
|
@@ -4672,7 +4570,7 @@
|
|
|
|
if test $ac_cv_func_connect = no; then
|
|
echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6
|
|
-echo "configure:4676: checking for connect in -lsocket" >&5
|
|
+echo "configure:4574: checking for connect in -lsocket" >&5
|
|
ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -4680,7 +4578,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4684 "configure"
|
|
+#line 4582 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -4694,7 +4592,7 @@
|
|
connect()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4698: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4596: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -4718,12 +4616,12 @@
|
|
|
|
# gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX.
|
|
echo $ac_n "checking for remove""... $ac_c" 1>&6
|
|
-echo "configure:4722: checking for remove" >&5
|
|
+echo "configure:4620: checking for remove" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_remove'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4727 "configure"
|
|
+#line 4625 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char remove(); below. */
|
|
@@ -4749,7 +4647,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4651: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_remove=yes"
|
|
else
|
|
@@ -4770,7 +4668,7 @@
|
|
|
|
if test $ac_cv_func_remove = no; then
|
|
echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6
|
|
-echo "configure:4774: checking for remove in -lposix" >&5
|
|
+echo "configure:4672: checking for remove in -lposix" >&5
|
|
ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -4778,7 +4676,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lposix $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4782 "configure"
|
|
+#line 4680 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -4792,7 +4690,7 @@
|
|
remove()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4694: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -4816,12 +4714,12 @@
|
|
|
|
# BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
|
|
echo $ac_n "checking for shmat""... $ac_c" 1>&6
|
|
-echo "configure:4820: checking for shmat" >&5
|
|
+echo "configure:4718: checking for shmat" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4825 "configure"
|
|
+#line 4723 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char shmat(); below. */
|
|
@@ -4847,7 +4745,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4851: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_shmat=yes"
|
|
else
|
|
@@ -4868,7 +4766,7 @@
|
|
|
|
if test $ac_cv_func_shmat = no; then
|
|
echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6
|
|
-echo "configure:4872: checking for shmat in -lipc" >&5
|
|
+echo "configure:4770: checking for shmat in -lipc" >&5
|
|
ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -4876,7 +4774,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lipc $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4880 "configure"
|
|
+#line 4778 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -4890,7 +4788,7 @@
|
|
shmat()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4894: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -4923,7 +4821,7 @@
|
|
# libraries we check for below, so use a different variable.
|
|
# --interran@uluru.Stanford.EDU, kb@cs.umb.edu.
|
|
echo $ac_n "checking for IceConnectionNumber in -lICE""... $ac_c" 1>&6
|
|
-echo "configure:4927: checking for IceConnectionNumber in -lICE" >&5
|
|
+echo "configure:4825: checking for IceConnectionNumber in -lICE" >&5
|
|
ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -4931,7 +4829,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lICE $X_EXTRA_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 4935 "configure"
|
|
+#line 4833 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -4945,7 +4843,7 @@
|
|
IceConnectionNumber()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:4949: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:4847: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -5373,7 +5271,7 @@
|
|
if test "$COMPILE_ENVIRONMENT"; then
|
|
if test "$GNU_CC"; then
|
|
echo $ac_n "checking whether ld has archive extraction flags""... $ac_c" 1>&6
|
|
-echo "configure:5377: checking whether ld has archive extraction flags" >&5
|
|
+echo "configure:5275: checking whether ld has archive extraction flags" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_mkshlib_force_and_unforce'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -5390,14 +5288,14 @@
|
|
LDFLAGS=$force
|
|
LIBS=$unforce
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 5394 "configure"
|
|
+#line 5292 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:5401: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:5299: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_mkshlib_force_and_unforce=$line; break
|
|
else
|
|
@@ -5432,17 +5330,17 @@
|
|
cross_compiling=$ac_cv_prog_cc_cross
|
|
|
|
echo $ac_n "checking for 64-bit OS""... $ac_c" 1>&6
|
|
-echo "configure:5436: checking for 64-bit OS" >&5
|
|
+echo "configure:5334: checking for 64-bit OS" >&5
|
|
if test "$cross_compiling" = yes; then
|
|
result="maybe"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 5441 "configure"
|
|
+#line 5339 "configure"
|
|
#include "confdefs.h"
|
|
int main () {
|
|
if (sizeof(long) == 8) { return 0; } return 1; }
|
|
EOF
|
|
-if { (eval echo configure:5446: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:5344: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
result="yes"
|
|
else
|
|
@@ -5601,9 +5499,9 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
echo $ac_n "checking for VisualAge C++ compiler version >= 5.0.2.0""... $ac_c" 1>&6
|
|
-echo "configure:5605: checking for VisualAge C++ compiler version >= 5.0.2.0" >&5
|
|
+echo "configure:5503: checking for VisualAge C++ compiler version >= 5.0.2.0" >&5
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 5607 "configure"
|
|
+#line 5505 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
@@ -5612,7 +5510,7 @@
|
|
#endif
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:5616: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:5514: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
_BAD_COMPILER=
|
|
else
|
|
@@ -5650,17 +5548,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:5654: checking for $ac_hdr" >&5
|
|
+echo "configure:5552: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 5659 "configure"
|
|
+#line 5557 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:5664: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:5562: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -5702,7 +5600,7 @@
|
|
LIBS="$LIBS -lbe"
|
|
if test "$COMPILE_ENVIRONMENT"; then
|
|
echo $ac_n "checking for main in -lbind""... $ac_c" 1>&6
|
|
-echo "configure:5706: checking for main in -lbind" >&5
|
|
+echo "configure:5604: checking for main in -lbind" >&5
|
|
ac_lib_var=`echo bind'_'main | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -5710,14 +5608,14 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lbind $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 5714 "configure"
|
|
+#line 5612 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
main()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:5721: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:5619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -5738,7 +5636,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for main in -lzeta""... $ac_c" 1>&6
|
|
-echo "configure:5742: checking for main in -lzeta" >&5
|
|
+echo "configure:5640: checking for main in -lzeta" >&5
|
|
ac_lib_var=`echo zeta'_'main | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -5746,14 +5644,14 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lzeta $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 5750 "configure"
|
|
+#line 5648 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
main()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:5757: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:5655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -5814,18 +5712,18 @@
|
|
MACOSX=1
|
|
|
|
echo $ac_n "checking for -dead_strip option to ld""... $ac_c" 1>&6
|
|
-echo "configure:5818: checking for -dead_strip option to ld" >&5
|
|
+echo "configure:5716: checking for -dead_strip option to ld" >&5
|
|
_SAVE_LDFLAGS=$LDFLAGS
|
|
LDFLAGS="$LDFLAGS -Wl,-dead_strip"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 5822 "configure"
|
|
+#line 5720 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
return 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:5829: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:5727: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
_HAVE_DEAD_STRIP=1
|
|
else
|
|
@@ -6664,7 +6562,7 @@
|
|
CC_VERSION=`$CC -V 2>&1 | grep '^cc:' 2>/dev/null | $AWK -F\: '{ print $2 }'`
|
|
CXX_VERSION=`$CXX -V 2>&1 | grep '^CC:' 2>/dev/null | $AWK -F\: '{ print $2 }'`
|
|
echo $ac_n "checking for Forte compiler version >= WS6U2""... $ac_c" 1>&6
|
|
-echo "configure:6668: checking for Forte compiler version >= WS6U2" >&5
|
|
+echo "configure:6566: checking for Forte compiler version >= WS6U2" >&5
|
|
|
|
ac_ext=C
|
|
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
|
|
@@ -6674,7 +6572,7 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6678 "configure"
|
|
+#line 6576 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
@@ -6683,7 +6581,7 @@
|
|
#endif
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:6687: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:6585: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
_BAD_COMPILER=
|
|
else
|
|
@@ -6812,7 +6710,7 @@
|
|
;;
|
|
*-darwin*)
|
|
echo $ac_n "checking for -exported_symbols_list option to ld""... $ac_c" 1>&6
|
|
-echo "configure:6816: checking for -exported_symbols_list option to ld" >&5
|
|
+echo "configure:6714: checking for -exported_symbols_list option to ld" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_exported_symbols_list'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -6852,12 +6750,12 @@
|
|
cross_compiling=$ac_cv_prog_cc_cross
|
|
|
|
echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
|
|
-echo "configure:6856: checking for ANSI C header files" >&5
|
|
+echo "configure:6754: checking for ANSI C header files" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6861 "configure"
|
|
+#line 6759 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
@@ -6865,7 +6763,7 @@
|
|
#include <float.h>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:6869: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:6767: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -6882,7 +6780,7 @@
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6886 "configure"
|
|
+#line 6784 "configure"
|
|
#include "confdefs.h"
|
|
#include <string.h>
|
|
EOF
|
|
@@ -6900,7 +6798,7 @@
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6904 "configure"
|
|
+#line 6802 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdlib.h>
|
|
EOF
|
|
@@ -6921,7 +6819,7 @@
|
|
:
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6925 "configure"
|
|
+#line 6823 "configure"
|
|
#include "confdefs.h"
|
|
#include <ctype.h>
|
|
#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
|
@@ -6932,7 +6830,7 @@
|
|
exit (0); }
|
|
|
|
EOF
|
|
-if { (eval echo configure:6936: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:6834: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -6956,12 +6854,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for working const""... $ac_c" 1>&6
|
|
-echo "configure:6960: checking for working const" >&5
|
|
+echo "configure:6858: checking for working const" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6965 "configure"
|
|
+#line 6863 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
@@ -7010,7 +6908,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7014: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:6912: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_c_const=yes
|
|
else
|
|
@@ -7031,12 +6929,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for mode_t""... $ac_c" 1>&6
|
|
-echo "configure:7035: checking for mode_t" >&5
|
|
+echo "configure:6933: checking for mode_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7040 "configure"
|
|
+#line 6938 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
@@ -7064,12 +6962,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for off_t""... $ac_c" 1>&6
|
|
-echo "configure:7068: checking for off_t" >&5
|
|
+echo "configure:6966: checking for off_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7073 "configure"
|
|
+#line 6971 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
@@ -7097,12 +6995,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for pid_t""... $ac_c" 1>&6
|
|
-echo "configure:7101: checking for pid_t" >&5
|
|
+echo "configure:6999: checking for pid_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7106 "configure"
|
|
+#line 7004 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
@@ -7130,12 +7028,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for size_t""... $ac_c" 1>&6
|
|
-echo "configure:7134: checking for size_t" >&5
|
|
+echo "configure:7032: checking for size_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7139 "configure"
|
|
+#line 7037 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
@@ -7163,12 +7061,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for st_blksize in struct stat""... $ac_c" 1>&6
|
|
-echo "configure:7167: checking for st_blksize in struct stat" >&5
|
|
+echo "configure:7065: checking for st_blksize in struct stat" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_struct_st_blksize'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7172 "configure"
|
|
+#line 7070 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
@@ -7176,7 +7074,7 @@
|
|
struct stat s; s.st_blksize;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7180: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7078: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_struct_st_blksize=yes
|
|
else
|
|
@@ -7197,12 +7095,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for siginfo_t""... $ac_c" 1>&6
|
|
-echo "configure:7201: checking for siginfo_t" >&5
|
|
+echo "configure:7099: checking for siginfo_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_siginfo_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7206 "configure"
|
|
+#line 7104 "configure"
|
|
#include "confdefs.h"
|
|
#define _POSIX_C_SOURCE 199506L
|
|
#include <signal.h>
|
|
@@ -7210,7 +7108,7 @@
|
|
siginfo_t* info;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7214: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7112: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_siginfo_t=true
|
|
else
|
|
@@ -7244,12 +7142,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for int16_t""... $ac_c" 1>&6
|
|
-echo "configure:7248: checking for int16_t" >&5
|
|
+echo "configure:7146: checking for int16_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_int16_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7253 "configure"
|
|
+#line 7151 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -7257,7 +7155,7 @@
|
|
int16_t foo = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7261: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7159: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_int16_t=true
|
|
else
|
|
@@ -7279,12 +7177,12 @@
|
|
echo "$ac_t""no" 1>&6
|
|
fi
|
|
echo $ac_n "checking for int32_t""... $ac_c" 1>&6
|
|
-echo "configure:7283: checking for int32_t" >&5
|
|
+echo "configure:7181: checking for int32_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_int32_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7288 "configure"
|
|
+#line 7186 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -7292,7 +7190,7 @@
|
|
int32_t foo = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7296: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7194: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_int32_t=true
|
|
else
|
|
@@ -7314,12 +7212,12 @@
|
|
echo "$ac_t""no" 1>&6
|
|
fi
|
|
echo $ac_n "checking for int64_t""... $ac_c" 1>&6
|
|
-echo "configure:7318: checking for int64_t" >&5
|
|
+echo "configure:7216: checking for int64_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_int64_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7323 "configure"
|
|
+#line 7221 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -7327,7 +7225,7 @@
|
|
int64_t foo = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7331: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7229: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_int64_t=true
|
|
else
|
|
@@ -7349,12 +7247,12 @@
|
|
echo "$ac_t""no" 1>&6
|
|
fi
|
|
echo $ac_n "checking for int64""... $ac_c" 1>&6
|
|
-echo "configure:7353: checking for int64" >&5
|
|
+echo "configure:7251: checking for int64" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_int64'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7358 "configure"
|
|
+#line 7256 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -7362,7 +7260,7 @@
|
|
int64 foo = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7366: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7264: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_int64=true
|
|
else
|
|
@@ -7384,12 +7282,12 @@
|
|
echo "$ac_t""no" 1>&6
|
|
fi
|
|
echo $ac_n "checking for uint""... $ac_c" 1>&6
|
|
-echo "configure:7388: checking for uint" >&5
|
|
+echo "configure:7286: checking for uint" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_uint'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7393 "configure"
|
|
+#line 7291 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -7397,7 +7295,7 @@
|
|
uint foo = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7401: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7299: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_uint=true
|
|
else
|
|
@@ -7419,12 +7317,12 @@
|
|
echo "$ac_t""no" 1>&6
|
|
fi
|
|
echo $ac_n "checking for uint_t""... $ac_c" 1>&6
|
|
-echo "configure:7423: checking for uint_t" >&5
|
|
+echo "configure:7321: checking for uint_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_uint_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7428 "configure"
|
|
+#line 7326 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -7432,7 +7330,7 @@
|
|
uint_t foo = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7436: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7334: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_uint_t=true
|
|
else
|
|
@@ -7454,12 +7352,12 @@
|
|
echo "$ac_t""no" 1>&6
|
|
fi
|
|
echo $ac_n "checking for uint16_t""... $ac_c" 1>&6
|
|
-echo "configure:7458: checking for uint16_t" >&5
|
|
+echo "configure:7356: checking for uint16_t" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_uint16_t'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7463 "configure"
|
|
+#line 7361 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -7467,7 +7365,7 @@
|
|
uint16_t foo = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7471: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7369: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_uint16_t=true
|
|
else
|
|
@@ -7498,12 +7396,12 @@
|
|
|
|
|
|
echo $ac_n "checking for uname.domainname""... $ac_c" 1>&6
|
|
-echo "configure:7502: checking for uname.domainname" >&5
|
|
+echo "configure:7400: checking for uname.domainname" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_have_uname_domainname_field'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7507 "configure"
|
|
+#line 7405 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/utsname.h>
|
|
int main() {
|
|
@@ -7511,7 +7409,7 @@
|
|
(void)uname(res); if (res != 0) { domain = res->domainname; }
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7515: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7413: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_have_uname_domainname_field=true
|
|
else
|
|
@@ -7535,12 +7433,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for uname.__domainname""... $ac_c" 1>&6
|
|
-echo "configure:7539: checking for uname.__domainname" >&5
|
|
+echo "configure:7437: checking for uname.__domainname" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_have_uname_us_domainname_field'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7544 "configure"
|
|
+#line 7442 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/utsname.h>
|
|
int main() {
|
|
@@ -7548,7 +7446,7 @@
|
|
(void)uname(res); if (res != 0) { domain = res->__domainname; }
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7552: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7450: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_have_uname_us_domainname_field=true
|
|
else
|
|
@@ -7581,7 +7479,7 @@
|
|
|
|
|
|
echo $ac_n "checking for usable wchar_t (2 bytes, unsigned)""... $ac_c" 1>&6
|
|
-echo "configure:7585: checking for usable wchar_t (2 bytes, unsigned)" >&5
|
|
+echo "configure:7483: checking for usable wchar_t (2 bytes, unsigned)" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_have_usable_wchar'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -7589,14 +7487,14 @@
|
|
ac_cv_have_usable_wchar="maybe"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7593 "configure"
|
|
+#line 7491 "configure"
|
|
#include "confdefs.h"
|
|
#include <stddef.h>
|
|
int main () {
|
|
return (sizeof(wchar_t) != 2) ||
|
|
(wchar_t)-1 < (wchar_t) 0 ; }
|
|
EOF
|
|
-if { (eval echo configure:7600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:7498: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv_have_usable_wchar="yes"
|
|
else
|
|
@@ -7631,7 +7529,7 @@
|
|
CXXFLAGS="$CXXFLAGS -fshort-wchar"
|
|
|
|
echo $ac_n "checking for compiler -fshort-wchar option""... $ac_c" 1>&6
|
|
-echo "configure:7635: checking for compiler -fshort-wchar option" >&5
|
|
+echo "configure:7533: checking for compiler -fshort-wchar option" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_have_usable_wchar_option'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -7639,14 +7537,17 @@
|
|
ac_cv_have_usable_wchar_option="maybe"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7643 "configure"
|
|
+#line 7541 "configure"
|
|
#include "confdefs.h"
|
|
+#ifdef __cplusplus
|
|
+extern "C" void exit(int);
|
|
+#endif
|
|
#include <stddef.h>
|
|
int main () {
|
|
return (sizeof(wchar_t) != 2) ||
|
|
(wchar_t)-1 < (wchar_t) 0 ; }
|
|
EOF
|
|
-if { (eval echo configure:7650: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:7551: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv_have_usable_wchar_option="yes"
|
|
else
|
|
@@ -7682,7 +7583,7 @@
|
|
|
|
if test "$GNU_CC"; then
|
|
echo $ac_n "checking for visibility(hidden) attribute""... $ac_c" 1>&6
|
|
-echo "configure:7686: checking for visibility(hidden) attribute" >&5
|
|
+echo "configure:7587: checking for visibility(hidden) attribute" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_visibility_hidden'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -7706,7 +7607,7 @@
|
|
EOF
|
|
|
|
echo $ac_n "checking for visibility pragma support""... $ac_c" 1>&6
|
|
-echo "configure:7710: checking for visibility pragma support" >&5
|
|
+echo "configure:7611: checking for visibility pragma support" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_visibility_pragma'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -7748,12 +7649,12 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6
|
|
-echo "configure:7752: checking for $ac_hdr that defines DIR" >&5
|
|
+echo "configure:7653: checking for $ac_hdr that defines DIR" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7757 "configure"
|
|
+#line 7658 "configure"
|
|
#include "confdefs.h"
|
|
#include <sys/types.h>
|
|
#include <$ac_hdr>
|
|
@@ -7761,7 +7662,7 @@
|
|
DIR *dirp = 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7765: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:7666: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_header_dirent_$ac_safe=yes"
|
|
else
|
|
@@ -7786,7 +7687,7 @@
|
|
# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
|
|
if test $ac_header_dirent = dirent.h; then
|
|
echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6
|
|
-echo "configure:7790: checking for opendir in -ldir" >&5
|
|
+echo "configure:7691: checking for opendir in -ldir" >&5
|
|
ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -7794,7 +7695,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-ldir $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7798 "configure"
|
|
+#line 7699 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -7805,7 +7706,7 @@
|
|
opendir()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7809: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:7710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -7827,7 +7728,7 @@
|
|
|
|
else
|
|
echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6
|
|
-echo "configure:7831: checking for opendir in -lx" >&5
|
|
+echo "configure:7732: checking for opendir in -lx" >&5
|
|
ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -7835,7 +7736,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lx $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7839 "configure"
|
|
+#line 7740 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -7846,7 +7747,7 @@
|
|
opendir()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:7850: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:7751: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -7878,17 +7779,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:7882: checking for $ac_hdr" >&5
|
|
+echo "configure:7783: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7887 "configure"
|
|
+#line 7788 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:7892: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:7793: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -7918,17 +7819,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:7922: checking for $ac_hdr" >&5
|
|
+echo "configure:7823: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7927 "configure"
|
|
+#line 7828 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:7932: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:7833: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -7958,17 +7859,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:7962: checking for $ac_hdr" >&5
|
|
+echo "configure:7863: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 7967 "configure"
|
|
+#line 7868 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:7972: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:7873: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -7998,17 +7899,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:8002: checking for $ac_hdr" >&5
|
|
+echo "configure:7903: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8007 "configure"
|
|
+#line 7908 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8012: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:7913: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8038,17 +7939,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:8042: checking for $ac_hdr" >&5
|
|
+echo "configure:7943: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8047 "configure"
|
|
+#line 7948 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8052: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:7953: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8079,17 +7980,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:8083: checking for $ac_hdr" >&5
|
|
+echo "configure:7984: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8088 "configure"
|
|
+#line 7989 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8093: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:7994: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8120,17 +8021,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:8124: checking for $ac_hdr" >&5
|
|
+echo "configure:8025: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8129 "configure"
|
|
+#line 8030 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8134: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:8035: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8167,17 +8068,17 @@
|
|
NEW_H=new.h
|
|
ac_safe=`echo "new" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for new""... $ac_c" 1>&6
|
|
-echo "configure:8171: checking for new" >&5
|
|
+echo "configure:8072: checking for new" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8176 "configure"
|
|
+#line 8077 "configure"
|
|
#include "confdefs.h"
|
|
#include <new>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8181: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:8082: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8218,17 +8119,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:8222: checking for $ac_hdr" >&5
|
|
+echo "configure:8123: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8227 "configure"
|
|
+#line 8128 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8232: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:8133: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8262,7 +8163,7 @@
|
|
;;
|
|
*)
|
|
echo $ac_n "checking for gethostbyname_r in -lc_r""... $ac_c" 1>&6
|
|
-echo "configure:8266: checking for gethostbyname_r in -lc_r" >&5
|
|
+echo "configure:8167: checking for gethostbyname_r in -lc_r" >&5
|
|
ac_lib_var=`echo c_r'_'gethostbyname_r | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8270,7 +8171,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lc_r $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8274 "configure"
|
|
+#line 8175 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8281,7 +8182,7 @@
|
|
gethostbyname_r()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8285: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8311,7 +8212,7 @@
|
|
;;
|
|
esac
|
|
echo $ac_n "checking for atan in -lm""... $ac_c" 1>&6
|
|
-echo "configure:8315: checking for atan in -lm" >&5
|
|
+echo "configure:8216: checking for atan in -lm" >&5
|
|
ac_lib_var=`echo m'_'atan | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8319,7 +8220,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lm $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8323 "configure"
|
|
+#line 8224 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8330,7 +8231,7 @@
|
|
atan()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8334: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8235: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8364,7 +8265,7 @@
|
|
;;
|
|
*)
|
|
echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
|
|
-echo "configure:8368: checking for dlopen in -ldl" >&5
|
|
+echo "configure:8269: checking for dlopen in -ldl" >&5
|
|
ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8372,7 +8273,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-ldl $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8376 "configure"
|
|
+#line 8277 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8383,7 +8284,7 @@
|
|
dlopen()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8288: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8400,17 +8301,17 @@
|
|
echo "$ac_t""yes" 1>&6
|
|
ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6
|
|
-echo "configure:8404: checking for dlfcn.h" >&5
|
|
+echo "configure:8305: checking for dlfcn.h" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8409 "configure"
|
|
+#line 8310 "configure"
|
|
#include "confdefs.h"
|
|
#include <dlfcn.h>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8414: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:8315: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8446,7 +8347,7 @@
|
|
case $target in
|
|
*-aix*)
|
|
echo $ac_n "checking for demangle in -lC_r""... $ac_c" 1>&6
|
|
-echo "configure:8450: checking for demangle in -lC_r" >&5
|
|
+echo "configure:8351: checking for demangle in -lC_r" >&5
|
|
ac_lib_var=`echo C_r'_'demangle | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8454,7 +8355,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lC_r $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8458 "configure"
|
|
+#line 8359 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8465,7 +8366,7 @@
|
|
demangle()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8469: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8495,7 +8396,7 @@
|
|
;;
|
|
*)
|
|
echo $ac_n "checking for demangle in -lC""... $ac_c" 1>&6
|
|
-echo "configure:8499: checking for demangle in -lC" >&5
|
|
+echo "configure:8400: checking for demangle in -lC" >&5
|
|
ac_lib_var=`echo C'_'demangle | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8503,7 +8404,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lC $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8507 "configure"
|
|
+#line 8408 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8514,7 +8415,7 @@
|
|
demangle()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8518: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8419: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8545,7 +8446,7 @@
|
|
esac
|
|
fi
|
|
echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6
|
|
-echo "configure:8549: checking for socket in -lsocket" >&5
|
|
+echo "configure:8450: checking for socket in -lsocket" >&5
|
|
ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8553,7 +8454,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lsocket $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8557 "configure"
|
|
+#line 8458 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8564,7 +8465,7 @@
|
|
socket()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8469: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8609,7 +8510,7 @@
|
|
_SAVE_LDFLAGS="$LDFLAGS"
|
|
LDFLAGS="$XLDFLAGS $LDFLAGS"
|
|
echo $ac_n "checking for XDrawLines in -lX11""... $ac_c" 1>&6
|
|
-echo "configure:8613: checking for XDrawLines in -lX11" >&5
|
|
+echo "configure:8514: checking for XDrawLines in -lX11" >&5
|
|
ac_lib_var=`echo X11'_'XDrawLines | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8617,7 +8518,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lX11 $XLIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8621 "configure"
|
|
+#line 8522 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8628,7 +8529,7 @@
|
|
XDrawLines()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8632: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8533: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8650,7 +8551,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for XextAddDisplay in -lXext""... $ac_c" 1>&6
|
|
-echo "configure:8654: checking for XextAddDisplay in -lXext" >&5
|
|
+echo "configure:8555: checking for XextAddDisplay in -lXext" >&5
|
|
ac_lib_var=`echo Xext'_'XextAddDisplay | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8658,7 +8559,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lXext $XLIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8662 "configure"
|
|
+#line 8563 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8669,7 +8570,7 @@
|
|
XextAddDisplay()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8673: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8693,7 +8594,7 @@
|
|
|
|
|
|
echo $ac_n "checking for XtFree in -lXt""... $ac_c" 1>&6
|
|
-echo "configure:8697: checking for XtFree in -lXt" >&5
|
|
+echo "configure:8598: checking for XtFree in -lXt" >&5
|
|
ac_lib_var=`echo Xt'_'XtFree | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8701,7 +8602,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lXt $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8705 "configure"
|
|
+#line 8606 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8712,7 +8613,7 @@
|
|
XtFree()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8716: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8617: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8733,7 +8634,7 @@
|
|
|
|
unset ac_cv_lib_Xt_XtFree
|
|
echo $ac_n "checking for IceFlush in -lICE""... $ac_c" 1>&6
|
|
-echo "configure:8737: checking for IceFlush in -lICE" >&5
|
|
+echo "configure:8638: checking for IceFlush in -lICE" >&5
|
|
ac_lib_var=`echo ICE'_'IceFlush | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8741,7 +8642,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lICE $XT_LIBS $XLIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8745 "configure"
|
|
+#line 8646 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8752,7 +8653,7 @@
|
|
IceFlush()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8756: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8657: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8773,7 +8674,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for SmcCloseConnection in -lSM""... $ac_c" 1>&6
|
|
-echo "configure:8777: checking for SmcCloseConnection in -lSM" >&5
|
|
+echo "configure:8678: checking for SmcCloseConnection in -lSM" >&5
|
|
ac_lib_var=`echo SM'_'SmcCloseConnection | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8781,7 +8682,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lSM $XT_LIBS $XLIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8785 "configure"
|
|
+#line 8686 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8792,7 +8693,7 @@
|
|
SmcCloseConnection()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8813,7 +8714,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for XtFree in -lXt""... $ac_c" 1>&6
|
|
-echo "configure:8817: checking for XtFree in -lXt" >&5
|
|
+echo "configure:8718: checking for XtFree in -lXt" >&5
|
|
ac_lib_var=`echo Xt'_'XtFree | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8821,7 +8722,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lXt $X_PRE_LIBS $XT_LIBS $XLIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8825 "configure"
|
|
+#line 8726 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8832,7 +8733,7 @@
|
|
XtFree()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8836: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8737: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8866,7 +8767,7 @@
|
|
esac
|
|
|
|
echo $ac_n "checking for XineramaIsActive in -lXinerama""... $ac_c" 1>&6
|
|
-echo "configure:8870: checking for XineramaIsActive in -lXinerama" >&5
|
|
+echo "configure:8771: checking for XineramaIsActive in -lXinerama" >&5
|
|
ac_lib_var=`echo Xinerama'_'XineramaIsActive | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8874,7 +8775,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lXinerama $XLIBS $XEXT_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8878 "configure"
|
|
+#line 8779 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8885,7 +8786,7 @@
|
|
XineramaIsActive()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8790: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8907,17 +8808,17 @@
|
|
|
|
ac_safe=`echo "X11/extensions/Xinerama.h" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for X11/extensions/Xinerama.h""... $ac_c" 1>&6
|
|
-echo "configure:8911: checking for X11/extensions/Xinerama.h" >&5
|
|
+echo "configure:8812: checking for X11/extensions/Xinerama.h" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8916 "configure"
|
|
+#line 8817 "configure"
|
|
#include "confdefs.h"
|
|
#include <X11/extensions/Xinerama.h>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8921: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:8822: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -8940,7 +8841,7 @@
|
|
|
|
|
|
echo $ac_n "checking for XShmCreateImage in -lXext""... $ac_c" 1>&6
|
|
-echo "configure:8944: checking for XShmCreateImage in -lXext" >&5
|
|
+echo "configure:8845: checking for XShmCreateImage in -lXext" >&5
|
|
ac_lib_var=`echo Xext'_'XShmCreateImage | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -8948,7 +8849,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lXext $XLIBS $XEXT_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8952 "configure"
|
|
+#line 8853 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -8959,7 +8860,7 @@
|
|
XShmCreateImage()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:8963: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -8981,17 +8882,17 @@
|
|
|
|
ac_safe=`echo "X11/extensions/XShm.h" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for X11/extensions/XShm.h""... $ac_c" 1>&6
|
|
-echo "configure:8985: checking for X11/extensions/XShm.h" >&5
|
|
+echo "configure:8886: checking for X11/extensions/XShm.h" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8990 "configure"
|
|
+#line 8891 "configure"
|
|
#include "confdefs.h"
|
|
#include <X11/extensions/XShm.h>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:8995: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:8896: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -9021,7 +8922,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for XieFloGeometry in -lXIE""... $ac_c" 1>&6
|
|
-echo "configure:9025: checking for XieFloGeometry in -lXIE" >&5
|
|
+echo "configure:8926: checking for XieFloGeometry in -lXIE" >&5
|
|
ac_lib_var=`echo XIE'_'XieFloGeometry | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -9029,7 +8930,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lXIE $XLIBS $XEXT_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9033 "configure"
|
|
+#line 8934 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -9040,7 +8941,7 @@
|
|
XieFloGeometry()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:9044: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:8945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -9062,17 +8963,17 @@
|
|
|
|
ac_safe=`echo "X11/extensions/XIElib.h" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for X11/extensions/XIElib.h""... $ac_c" 1>&6
|
|
-echo "configure:9066: checking for X11/extensions/XIElib.h" >&5
|
|
+echo "configure:8967: checking for X11/extensions/XIElib.h" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9071 "configure"
|
|
+#line 8972 "configure"
|
|
#include "confdefs.h"
|
|
#include <X11/extensions/XIElib.h>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:9076: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:8977: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -9146,7 +9047,7 @@
|
|
# Extract the first word of "freetype-config", so it can be a program name with args.
|
|
set dummy freetype-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:9150: checking for $ac_word" >&5
|
|
+echo "configure:9051: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_FT2_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -9182,7 +9083,7 @@
|
|
|
|
min_ft_version=6.1.0
|
|
echo $ac_n "checking for FreeType - version >= $min_ft_version""... $ac_c" 1>&6
|
|
-echo "configure:9186: checking for FreeType - version >= $min_ft_version" >&5
|
|
+echo "configure:9087: checking for FreeType - version >= $min_ft_version" >&5
|
|
no_ft=""
|
|
if test "$FT2_CONFIG" = "no" ; then
|
|
no_ft=yes
|
|
@@ -9230,7 +9131,7 @@
|
|
echo $ac_n "cross compiling; assumed OK... $ac_c"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9234 "configure"
|
|
+#line 9135 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <ft2build.h>
|
|
@@ -9256,7 +9157,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:9260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:9161: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -9308,7 +9209,7 @@
|
|
|
|
|
|
echo $ac_n "checking for pthread_create in -lpthreads""... $ac_c" 1>&6
|
|
-echo "configure:9312: checking for pthread_create in -lpthreads" >&5
|
|
+echo "configure:9213: checking for pthread_create in -lpthreads" >&5
|
|
echo "
|
|
#include <pthread.h>
|
|
void *foo(void *v) { int a = 1; }
|
|
@@ -9330,7 +9231,7 @@
|
|
echo "$ac_t""no" 1>&6
|
|
|
|
echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6
|
|
-echo "configure:9334: checking for pthread_create in -lpthread" >&5
|
|
+echo "configure:9235: checking for pthread_create in -lpthread" >&5
|
|
echo "
|
|
#include <pthread.h>
|
|
void *foo(void *v) { int a = 1; }
|
|
@@ -9352,7 +9253,7 @@
|
|
echo "$ac_t""no" 1>&6
|
|
|
|
echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6
|
|
-echo "configure:9356: checking for pthread_create in -lc_r" >&5
|
|
+echo "configure:9257: checking for pthread_create in -lc_r" >&5
|
|
echo "
|
|
#include <pthread.h>
|
|
void *foo(void *v) { int a = 1; }
|
|
@@ -9374,7 +9275,7 @@
|
|
echo "$ac_t""no" 1>&6
|
|
|
|
echo $ac_n "checking for pthread_create in -lc""... $ac_c" 1>&6
|
|
-echo "configure:9378: checking for pthread_create in -lc" >&5
|
|
+echo "configure:9279: checking for pthread_create in -lc" >&5
|
|
echo "
|
|
#include <pthread.h>
|
|
void *foo(void *v) { int a = 1; }
|
|
@@ -9430,7 +9331,7 @@
|
|
rm -f conftest*
|
|
ac_cv_have_dash_pthread=no
|
|
echo $ac_n "checking whether ${CC-cc} accepts -pthread""... $ac_c" 1>&6
|
|
-echo "configure:9434: checking whether ${CC-cc} accepts -pthread" >&5
|
|
+echo "configure:9335: checking whether ${CC-cc} accepts -pthread" >&5
|
|
echo 'int main() { return 0; }' | cat > conftest.c
|
|
${CC-cc} -pthread -o conftest conftest.c > conftest.out 2>&1
|
|
if test $? -eq 0; then
|
|
@@ -9453,7 +9354,7 @@
|
|
ac_cv_have_dash_pthreads=no
|
|
if test "$ac_cv_have_dash_pthread" = "no"; then
|
|
echo $ac_n "checking whether ${CC-cc} accepts -pthreads""... $ac_c" 1>&6
|
|
-echo "configure:9457: checking whether ${CC-cc} accepts -pthreads" >&5
|
|
+echo "configure:9358: checking whether ${CC-cc} accepts -pthreads" >&5
|
|
echo 'int main() { return 0; }' | cat > conftest.c
|
|
${CC-cc} -pthreads -o conftest conftest.c > conftest.out 2>&1
|
|
if test $? -eq 0; then
|
|
@@ -9575,7 +9476,7 @@
|
|
|
|
|
|
echo $ac_n "checking whether mmap() sees write()s""... $ac_c" 1>&6
|
|
-echo "configure:9579: checking whether mmap() sees write()s" >&5
|
|
+echo "configure:9480: checking whether mmap() sees write()s" >&5
|
|
|
|
|
|
mmap_test_prog='
|
|
@@ -9614,11 +9515,11 @@
|
|
result="yes"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9618 "configure"
|
|
+#line 9519 "configure"
|
|
#include "confdefs.h"
|
|
$mmap_test_prog
|
|
EOF
|
|
-if { (eval echo configure:9622: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:9523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
result="yes"
|
|
else
|
|
@@ -9643,13 +9544,13 @@
|
|
|
|
if test $ac_cv_prog_gcc = yes; then
|
|
echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&6
|
|
-echo "configure:9647: checking whether ${CC-cc} needs -traditional" >&5
|
|
+echo "configure:9548: checking whether ${CC-cc} needs -traditional" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
ac_pattern="Autoconf.*'x'"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9653 "configure"
|
|
+#line 9554 "configure"
|
|
#include "confdefs.h"
|
|
#include <sgtty.h>
|
|
Autoconf TIOCGETP
|
|
@@ -9667,7 +9568,7 @@
|
|
|
|
if test $ac_cv_prog_gcc_traditional = no; then
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9671 "configure"
|
|
+#line 9572 "configure"
|
|
#include "confdefs.h"
|
|
#include <termio.h>
|
|
Autoconf TCGETA
|
|
@@ -9689,7 +9590,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for 8-bit clean memcmp""... $ac_c" 1>&6
|
|
-echo "configure:9693: checking for 8-bit clean memcmp" >&5
|
|
+echo "configure:9594: checking for 8-bit clean memcmp" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_memcmp_clean'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -9697,7 +9598,7 @@
|
|
ac_cv_func_memcmp_clean=no
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9701 "configure"
|
|
+#line 9602 "configure"
|
|
#include "confdefs.h"
|
|
|
|
main()
|
|
@@ -9707,7 +9608,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:9711: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:9612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv_func_memcmp_clean=yes
|
|
else
|
|
@@ -9727,12 +9628,12 @@
|
|
for ac_func in random strerror lchown fchmod snprintf statvfs memmove rint stat64 lstat64
|
|
do
|
|
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
|
-echo "configure:9731: checking for $ac_func" >&5
|
|
+echo "configure:9632: checking for $ac_func" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9736 "configure"
|
|
+#line 9637 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func(); below. */
|
|
@@ -9755,7 +9656,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:9759: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9660: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
@@ -9782,12 +9683,12 @@
|
|
for ac_func in flockfile getpagesize
|
|
do
|
|
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
|
-echo "configure:9786: checking for $ac_func" >&5
|
|
+echo "configure:9687: checking for $ac_func" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9791 "configure"
|
|
+#line 9692 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func(); below. */
|
|
@@ -9810,7 +9711,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:9814: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9715: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
@@ -9839,12 +9740,12 @@
|
|
for ac_func in localtime_r strtok_r
|
|
do
|
|
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
|
-echo "configure:9843: checking for $ac_func" >&5
|
|
+echo "configure:9744: checking for $ac_func" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9848 "configure"
|
|
+#line 9749 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func(); below. */
|
|
@@ -9867,7 +9768,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:9871: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9772: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
@@ -9903,19 +9804,19 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
echo $ac_n "checking for wcrtomb""... $ac_c" 1>&6
|
|
-echo "configure:9907: checking for wcrtomb" >&5
|
|
+echo "configure:9808: checking for wcrtomb" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_have_wcrtomb'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9912 "configure"
|
|
+#line 9813 "configure"
|
|
#include "confdefs.h"
|
|
#include <wchar.h>
|
|
int main() {
|
|
mbstate_t ps={0};wcrtomb(0,'f',&ps);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:9919: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9820: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_have_wcrtomb="yes"
|
|
else
|
|
@@ -9935,19 +9836,19 @@
|
|
|
|
fi
|
|
echo $ac_n "checking for mbrtowc""... $ac_c" 1>&6
|
|
-echo "configure:9939: checking for mbrtowc" >&5
|
|
+echo "configure:9840: checking for mbrtowc" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_have_mbrtowc'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9944 "configure"
|
|
+#line 9845 "configure"
|
|
#include "confdefs.h"
|
|
#include <wchar.h>
|
|
int main() {
|
|
mbstate_t ps={0};mbrtowc(0,0,0,&ps);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:9951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9852: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_have_mbrtowc="yes"
|
|
else
|
|
@@ -9976,12 +9877,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for res_ninit()""... $ac_c" 1>&6
|
|
-echo "configure:9980: checking for res_ninit()" >&5
|
|
+echo "configure:9881: checking for res_ninit()" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_res_ninit'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 9985 "configure"
|
|
+#line 9886 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef linux
|
|
@@ -9993,7 +9894,7 @@
|
|
int foo = res_ninit(&_res);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:9997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9898: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_func_res_ninit=yes
|
|
else
|
|
@@ -10023,12 +9924,12 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
echo $ac_n "checking for gnu_get_libc_version()""... $ac_c" 1>&6
|
|
-echo "configure:10027: checking for gnu_get_libc_version()" >&5
|
|
+echo "configure:9928: checking for gnu_get_libc_version()" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_gnu_get_libc_version'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10032 "configure"
|
|
+#line 9933 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef HAVE_GNU_LIBC_VERSION_H
|
|
@@ -10039,7 +9940,7 @@
|
|
const char *glibc_version = gnu_get_libc_version();
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10043: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9944: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_func_gnu_get_libc_version=yes
|
|
else
|
|
@@ -10068,7 +9969,7 @@
|
|
*)
|
|
|
|
echo $ac_n "checking for iconv in -lc""... $ac_c" 1>&6
|
|
-echo "configure:10072: checking for iconv in -lc" >&5
|
|
+echo "configure:9973: checking for iconv in -lc" >&5
|
|
ac_lib_var=`echo c'_'iconv | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -10076,7 +9977,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lc $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10080 "configure"
|
|
+#line 9981 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10090,7 +9991,7 @@
|
|
iconv()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10094: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:9995: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -10109,7 +10010,7 @@
|
|
else
|
|
echo "$ac_t""no" 1>&6
|
|
echo $ac_n "checking for iconv in -liconv""... $ac_c" 1>&6
|
|
-echo "configure:10113: checking for iconv in -liconv" >&5
|
|
+echo "configure:10014: checking for iconv in -liconv" >&5
|
|
ac_lib_var=`echo iconv'_'iconv | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -10117,7 +10018,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-liconv $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10121 "configure"
|
|
+#line 10022 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10131,7 +10032,7 @@
|
|
iconv()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10135: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:10036: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -10150,7 +10051,7 @@
|
|
else
|
|
echo "$ac_t""no" 1>&6
|
|
echo $ac_n "checking for libiconv in -liconv""... $ac_c" 1>&6
|
|
-echo "configure:10154: checking for libiconv in -liconv" >&5
|
|
+echo "configure:10055: checking for libiconv in -liconv" >&5
|
|
ac_lib_var=`echo iconv'_'libiconv | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -10158,7 +10059,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-liconv $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10162 "configure"
|
|
+#line 10063 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10172,7 +10073,7 @@
|
|
libiconv()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10176: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:10077: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -10199,12 +10100,12 @@
|
|
_SAVE_LIBS=$LIBS
|
|
LIBS="$LIBS $_ICONV_LIBS"
|
|
echo $ac_n "checking for iconv()""... $ac_c" 1>&6
|
|
-echo "configure:10203: checking for iconv()" >&5
|
|
+echo "configure:10104: checking for iconv()" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_iconv'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10208 "configure"
|
|
+#line 10109 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdlib.h>
|
|
@@ -10218,7 +10119,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10222: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:10123: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_func_iconv=yes
|
|
else
|
|
@@ -10242,12 +10143,12 @@
|
|
LIBXUL_LIBS="$LIBXUL_LIBS $_ICONV_LIBS"
|
|
LIBICONV="$_ICONV_LIBS"
|
|
echo $ac_n "checking for iconv() with const input""... $ac_c" 1>&6
|
|
-echo "configure:10246: checking for iconv() with const input" >&5
|
|
+echo "configure:10147: checking for iconv() with const input" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_const_iconv'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10251 "configure"
|
|
+#line 10152 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdlib.h>
|
|
@@ -10262,7 +10163,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10167: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_func_const_iconv=yes
|
|
else
|
|
@@ -10291,19 +10192,19 @@
|
|
|
|
|
|
echo $ac_n "checking for nl_langinfo and CODESET""... $ac_c" 1>&6
|
|
-echo "configure:10295: checking for nl_langinfo and CODESET" >&5
|
|
+echo "configure:10196: checking for nl_langinfo and CODESET" >&5
|
|
if eval "test \"`echo '$''{'am_cv_langinfo_codeset'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10300 "configure"
|
|
+#line 10201 "configure"
|
|
#include "confdefs.h"
|
|
#include <langinfo.h>
|
|
int main() {
|
|
char* cs = nl_langinfo(CODESET);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10307: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:10208: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
am_cv_langinfo_codeset=yes
|
|
else
|
|
@@ -10335,7 +10236,7 @@
|
|
|
|
|
|
echo $ac_n "checking for an implementation of va_copy()""... $ac_c" 1>&6
|
|
-echo "configure:10339: checking for an implementation of va_copy()" >&5
|
|
+echo "configure:10240: checking for an implementation of va_copy()" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_va_copy'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -10345,7 +10246,7 @@
|
|
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10349 "configure"
|
|
+#line 10250 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdarg.h>
|
|
@@ -10359,7 +10260,7 @@
|
|
}
|
|
int main() { f (0, 42); return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10363: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:10264: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv_va_copy=yes
|
|
else
|
|
@@ -10376,7 +10277,7 @@
|
|
|
|
echo "$ac_t""$ac_cv_va_copy" 1>&6
|
|
echo $ac_n "checking for an implementation of __va_copy()""... $ac_c" 1>&6
|
|
-echo "configure:10380: checking for an implementation of __va_copy()" >&5
|
|
+echo "configure:10281: checking for an implementation of __va_copy()" >&5
|
|
if eval "test \"`echo '$''{'ac_cv___va_copy'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -10386,7 +10287,7 @@
|
|
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10390 "configure"
|
|
+#line 10291 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdarg.h>
|
|
@@ -10400,7 +10301,7 @@
|
|
}
|
|
int main() { f (0, 42); return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:10305: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv___va_copy=yes
|
|
else
|
|
@@ -10417,7 +10318,7 @@
|
|
|
|
echo "$ac_t""$ac_cv___va_copy" 1>&6
|
|
echo $ac_n "checking whether va_lists can be copied by value""... $ac_c" 1>&6
|
|
-echo "configure:10421: checking whether va_lists can be copied by value" >&5
|
|
+echo "configure:10322: checking whether va_lists can be copied by value" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_va_val_copy'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -10427,7 +10328,7 @@
|
|
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10431 "configure"
|
|
+#line 10332 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdarg.h>
|
|
@@ -10441,7 +10342,7 @@
|
|
}
|
|
int main() { f (0, 42); return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10445: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:10346: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv_va_val_copy=yes
|
|
else
|
|
@@ -10540,7 +10441,7 @@
|
|
if test "$GNU_CXX"; then
|
|
|
|
echo $ac_n "checking for C++ exceptions flag""... $ac_c" 1>&6
|
|
-echo "configure:10544: checking for C++ exceptions flag" >&5
|
|
+echo "configure:10445: checking for C++ exceptions flag" >&5
|
|
|
|
if eval "test \"`echo '$''{'ac_cv_cxx_exceptions_flags'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -10575,12 +10476,12 @@
|
|
HAVE_GCC3_ABI=
|
|
if test "$GNU_CC"; then
|
|
echo $ac_n "checking for gcc 3.0 ABI""... $ac_c" 1>&6
|
|
-echo "configure:10579: checking for gcc 3.0 ABI" >&5
|
|
+echo "configure:10480: checking for gcc 3.0 ABI" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_gcc_three_abi'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10584 "configure"
|
|
+#line 10485 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
@@ -10593,7 +10494,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10597: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10498: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_gcc_three_abi="yes"
|
|
else
|
|
@@ -10617,12 +10518,12 @@
|
|
|
|
|
|
echo $ac_n "checking for C++ \"explicit\" keyword""... $ac_c" 1>&6
|
|
-echo "configure:10621: checking for C++ \"explicit\" keyword" >&5
|
|
+echo "configure:10522: checking for C++ \"explicit\" keyword" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_explicit'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10626 "configure"
|
|
+#line 10527 "configure"
|
|
#include "confdefs.h"
|
|
class X {
|
|
public: explicit X(int i) : i_(i) {}
|
|
@@ -10632,7 +10533,7 @@
|
|
X x(3);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10636: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10537: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_explicit=yes
|
|
else
|
|
@@ -10653,12 +10554,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for C++ \"typename\" keyword""... $ac_c" 1>&6
|
|
-echo "configure:10657: checking for C++ \"typename\" keyword" >&5
|
|
+echo "configure:10558: checking for C++ \"typename\" keyword" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_typename'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10662 "configure"
|
|
+#line 10563 "configure"
|
|
#include "confdefs.h"
|
|
class param {
|
|
public:
|
|
@@ -10677,7 +10578,7 @@
|
|
A.foo(0);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10681: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10582: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_typename=yes
|
|
else
|
|
@@ -10698,12 +10599,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for modern C++ template specialization syntax support""... $ac_c" 1>&6
|
|
-echo "configure:10702: checking for modern C++ template specialization syntax support" >&5
|
|
+echo "configure:10603: checking for modern C++ template specialization syntax support" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_modern_specialize_template_syntax'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10707 "configure"
|
|
+#line 10608 "configure"
|
|
#include "confdefs.h"
|
|
template <class T> struct X { int a; };
|
|
class Y {};
|
|
@@ -10713,7 +10614,7 @@
|
|
X<Y> y_x;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10717: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10618: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_modern_specialize_template_syntax=yes
|
|
else
|
|
@@ -10735,12 +10636,12 @@
|
|
|
|
|
|
echo $ac_n "checking whether partial template specialization works""... $ac_c" 1>&6
|
|
-echo "configure:10739: checking whether partial template specialization works" >&5
|
|
+echo "configure:10640: checking whether partial template specialization works" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_partial_specialization'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10744 "configure"
|
|
+#line 10645 "configure"
|
|
#include "confdefs.h"
|
|
template <class T> class Foo {};
|
|
template <class T> class Foo<T*> {};
|
|
@@ -10748,7 +10649,7 @@
|
|
return 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10752: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10653: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_partial_specialization=yes
|
|
else
|
|
@@ -10769,12 +10670,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking whether operators must be re-defined for templates derived from templates""... $ac_c" 1>&6
|
|
-echo "configure:10773: checking whether operators must be re-defined for templates derived from templates" >&5
|
|
+echo "configure:10674: checking whether operators must be re-defined for templates derived from templates" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_need_derived_template_operators'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10778 "configure"
|
|
+#line 10679 "configure"
|
|
#include "confdefs.h"
|
|
template <class T> class Base { };
|
|
template <class T>
|
|
@@ -10786,7 +10687,7 @@
|
|
return 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10790: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10691: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_need_derived_template_operators=no
|
|
else
|
|
@@ -10808,12 +10709,12 @@
|
|
|
|
|
|
echo $ac_n "checking whether we need to cast a derived template to pass as its base class""... $ac_c" 1>&6
|
|
-echo "configure:10812: checking whether we need to cast a derived template to pass as its base class" >&5
|
|
+echo "configure:10713: checking whether we need to cast a derived template to pass as its base class" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_need_cpp_template_cast_to_base'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10817 "configure"
|
|
+#line 10718 "configure"
|
|
#include "confdefs.h"
|
|
template <class T> class Base { };
|
|
template <class T> class Derived : public Base<T> { };
|
|
@@ -10822,7 +10723,7 @@
|
|
Derived<char> bar; return foo(bar);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10826: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10727: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_need_cpp_template_cast_to_base=no
|
|
else
|
|
@@ -10843,12 +10744,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking whether the compiler can resolve const ambiguities for templates""... $ac_c" 1>&6
|
|
-echo "configure:10847: checking whether the compiler can resolve const ambiguities for templates" >&5
|
|
+echo "configure:10748: checking whether the compiler can resolve const ambiguities for templates" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_can_resolve_const_ambiguity'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10852 "configure"
|
|
+#line 10753 "configure"
|
|
#include "confdefs.h"
|
|
|
|
template <class T> class ptrClass {
|
|
@@ -10869,7 +10770,7 @@
|
|
a(&i);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10873: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10774: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_can_resolve_const_ambiguity=yes
|
|
else
|
|
@@ -10891,12 +10792,12 @@
|
|
|
|
|
|
echo $ac_n "checking whether the C++ \"using\" keyword can change access""... $ac_c" 1>&6
|
|
-echo "configure:10895: checking whether the C++ \"using\" keyword can change access" >&5
|
|
+echo "configure:10796: checking whether the C++ \"using\" keyword can change access" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_access_changing_using2'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10900 "configure"
|
|
+#line 10801 "configure"
|
|
#include "confdefs.h"
|
|
class A { protected: int foo() { return 0; } };
|
|
class B : public A { public: using A::foo; };
|
|
@@ -10904,10 +10805,10 @@
|
|
B b; return b.foo();
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10908: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10809: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10911 "configure"
|
|
+#line 10812 "configure"
|
|
#include "confdefs.h"
|
|
class A { public: int foo() { return 1; } };
|
|
class B : public A { private: using A::foo; };
|
|
@@ -10915,7 +10816,7 @@
|
|
B b; return b.foo();
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10919: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_access_changing_using2=no
|
|
else
|
|
@@ -10943,12 +10844,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking whether the C++ \"using\" keyword resolves ambiguity""... $ac_c" 1>&6
|
|
-echo "configure:10947: checking whether the C++ \"using\" keyword resolves ambiguity" >&5
|
|
+echo "configure:10848: checking whether the C++ \"using\" keyword resolves ambiguity" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_ambiguity_resolving_using'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10952 "configure"
|
|
+#line 10853 "configure"
|
|
#include "confdefs.h"
|
|
class X {
|
|
public: int go(const X&) {return 3;}
|
|
@@ -10964,7 +10865,7 @@
|
|
X x; Y y; y.jo(x);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:10968: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10869: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_ambiguity_resolving_using=yes
|
|
else
|
|
@@ -10985,19 +10886,19 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for \"std::\" namespace""... $ac_c" 1>&6
|
|
-echo "configure:10989: checking for \"std::\" namespace" >&5
|
|
+echo "configure:10890: checking for \"std::\" namespace" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_namespace_std'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 10994 "configure"
|
|
+#line 10895 "configure"
|
|
#include "confdefs.h"
|
|
#include <algorithm>
|
|
int main() {
|
|
return std::min(0, 1);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10902: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_namespace_std=yes
|
|
else
|
|
@@ -11018,12 +10919,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking whether standard template operator!=() is ambiguous""... $ac_c" 1>&6
|
|
-echo "configure:11022: checking whether standard template operator!=() is ambiguous" >&5
|
|
+echo "configure:10923: checking whether standard template operator!=() is ambiguous" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_unambiguous_std_notequal'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11027 "configure"
|
|
+#line 10928 "configure"
|
|
#include "confdefs.h"
|
|
#include <algorithm>
|
|
struct T1 {};
|
|
@@ -11033,7 +10934,7 @@
|
|
T1 a,b; return a != b;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11037: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_unambiguous_std_notequal=unambiguous
|
|
else
|
|
@@ -11055,12 +10956,12 @@
|
|
|
|
|
|
echo $ac_n "checking for C++ reinterpret_cast""... $ac_c" 1>&6
|
|
-echo "configure:11059: checking for C++ reinterpret_cast" >&5
|
|
+echo "configure:10960: checking for C++ reinterpret_cast" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_reinterpret_cast'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11064 "configure"
|
|
+#line 10965 "configure"
|
|
#include "confdefs.h"
|
|
struct X { int i; };
|
|
struct Y { int i; };
|
|
@@ -11068,7 +10969,7 @@
|
|
X x; X*const z = &x;Y*y = reinterpret_cast<Y*>(z);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11072: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:10973: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_reinterpret_cast=yes
|
|
else
|
|
@@ -11089,7 +10990,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for C++ dynamic_cast to void*""... $ac_c" 1>&6
|
|
-echo "configure:11093: checking for C++ dynamic_cast to void*" >&5
|
|
+echo "configure:10994: checking for C++ dynamic_cast to void*" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_dynamic_cast_void_ptr'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -11097,8 +10998,11 @@
|
|
ac_cv_cpp_dynamic_cast_void_ptr=no
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11101 "configure"
|
|
+#line 11002 "configure"
|
|
#include "confdefs.h"
|
|
+#ifdef __cplusplus
|
|
+extern "C" void exit(int);
|
|
+#endif
|
|
class X { int i; public: virtual ~X() { } };
|
|
class Y { int j; public: virtual ~Y() { } };
|
|
class Z : public X, public Y { int k; };
|
|
@@ -11113,7 +11017,7 @@
|
|
((void*)&mdo == dynamic_cast<void*>(suby))));
|
|
}
|
|
EOF
|
|
-if { (eval echo configure:11117: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:11021: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv_cpp_dynamic_cast_void_ptr=yes
|
|
else
|
|
@@ -11137,19 +11041,19 @@
|
|
|
|
|
|
echo $ac_n "checking whether C++ requires implementation of unused virtual methods""... $ac_c" 1>&6
|
|
-echo "configure:11141: checking whether C++ requires implementation of unused virtual methods" >&5
|
|
+echo "configure:11045: checking whether C++ requires implementation of unused virtual methods" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_cpp_unused_required'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11146 "configure"
|
|
+#line 11050 "configure"
|
|
#include "confdefs.h"
|
|
class X {private: virtual void never_called();};
|
|
int main() {
|
|
X x;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:11057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_cpp_unused_required=no
|
|
else
|
|
@@ -11172,12 +11076,12 @@
|
|
|
|
|
|
echo $ac_n "checking for trouble comparing to zero near std::operator!=()""... $ac_c" 1>&6
|
|
-echo "configure:11176: checking for trouble comparing to zero near std::operator!=()" >&5
|
|
+echo "configure:11080: checking for trouble comparing to zero near std::operator!=()" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_trouble_comparing_to_zero'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11181 "configure"
|
|
+#line 11085 "configure"
|
|
#include "confdefs.h"
|
|
#include <algorithm>
|
|
template <class T> class Foo {};
|
|
@@ -11188,7 +11092,7 @@
|
|
Foo<int> f; return (0 != f);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11192: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:11096: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_trouble_comparing_to_zero=no
|
|
else
|
|
@@ -11220,19 +11124,19 @@
|
|
|
|
|
|
echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
|
|
-echo "configure:11224: checking for LC_MESSAGES" >&5
|
|
+echo "configure:11128: checking for LC_MESSAGES" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_i18n_lc_messages'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11229 "configure"
|
|
+#line 11133 "configure"
|
|
#include "confdefs.h"
|
|
#include <locale.h>
|
|
int main() {
|
|
int category = LC_MESSAGES;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11236: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:11140: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_cv_i18n_lc_messages=yes
|
|
else
|
|
@@ -11313,7 +11217,7 @@
|
|
# Extract the first word of "nspr-config", so it can be a program name with args.
|
|
set dummy nspr-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:11317: checking for $ac_word" >&5
|
|
+echo "configure:11221: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_NSPR_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -11348,7 +11252,7 @@
|
|
|
|
min_nspr_version=4.0.0
|
|
echo $ac_n "checking for NSPR - version >= $min_nspr_version (skipping)""... $ac_c" 1>&6
|
|
-echo "configure:11352: checking for NSPR - version >= $min_nspr_version (skipping)" >&5
|
|
+echo "configure:11256: checking for NSPR - version >= $min_nspr_version (skipping)" >&5
|
|
|
|
no_nspr=""
|
|
if test "$NSPR_CONFIG" = "no"; then
|
|
@@ -11418,7 +11322,7 @@
|
|
SYSTEM_JPEG=
|
|
else
|
|
echo $ac_n "checking for jpeg_destroy_compress in -ljpeg""... $ac_c" 1>&6
|
|
-echo "configure:11422: checking for jpeg_destroy_compress in -ljpeg" >&5
|
|
+echo "configure:11326: checking for jpeg_destroy_compress in -ljpeg" >&5
|
|
ac_lib_var=`echo jpeg'_'jpeg_destroy_compress | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -11426,7 +11330,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-ljpeg $JPEG_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11430 "configure"
|
|
+#line 11334 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -11437,7 +11341,7 @@
|
|
jpeg_destroy_compress()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:11345: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -11466,7 +11370,7 @@
|
|
SYSTEM_JPEG=
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11470 "configure"
|
|
+#line 11374 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -11480,7 +11384,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:11484: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:11388: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
SYSTEM_JPEG=1
|
|
else
|
|
@@ -11521,7 +11425,7 @@
|
|
SYSTEM_ZLIB=
|
|
else
|
|
echo $ac_n "checking for gzread in -lz""... $ac_c" 1>&6
|
|
-echo "configure:11525: checking for gzread in -lz" >&5
|
|
+echo "configure:11429: checking for gzread in -lz" >&5
|
|
ac_lib_var=`echo z'_'gzread | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -11529,7 +11433,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lz $ZLIB_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11533 "configure"
|
|
+#line 11437 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -11540,7 +11444,7 @@
|
|
gzread()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11544: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:11448: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -11568,7 +11472,7 @@
|
|
SYSTEM_ZLIB=
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11572 "configure"
|
|
+#line 11476 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
@@ -11589,7 +11493,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:11593: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:11497: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
SYSTEM_ZLIB=1
|
|
else
|
|
@@ -11632,7 +11536,7 @@
|
|
SYSTEM_PNG=
|
|
else
|
|
echo $ac_n "checking for png_get_valid in -lpng""... $ac_c" 1>&6
|
|
-echo "configure:11636: checking for png_get_valid in -lpng" >&5
|
|
+echo "configure:11540: checking for png_get_valid in -lpng" >&5
|
|
ac_lib_var=`echo png'_'png_get_valid | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -11640,7 +11544,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lpng $PNG_LIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11644 "configure"
|
|
+#line 11548 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -11651,7 +11555,7 @@
|
|
png_get_valid()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:11655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:11559: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -11679,7 +11583,7 @@
|
|
SYSTEM_PNG=
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 11683 "configure"
|
|
+#line 11587 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
@@ -11693,7 +11597,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:11697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:11601: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
SYSTEM_PNG=1
|
|
else
|
|
@@ -11812,8 +11716,8 @@
|
|
MOZ_ENABLE_GTK2=1
|
|
MOZ_ENABLE_XREMOTE=1
|
|
MOZ_ENABLE_COREXFONTS=${MOZ_ENABLE_COREXFONTS-}
|
|
- TK_CFLAGS='$(MOZ_GTK2_CFLAGS)'
|
|
- TK_LIBS='$(MOZ_GTK2_LIBS)'
|
|
+ TK_CFLAGS='$(MOZ_GTK2_CFLAGS) $(MOZ_PANGO_CFLAGS)'
|
|
+ TK_LIBS='$(MOZ_GTK2_LIBS) $(MOZ_PANGO_LIBS)'
|
|
cat >> confdefs.h <<\EOF
|
|
#define MOZ_WIDGET_GTK2 1
|
|
EOF
|
|
@@ -11962,7 +11866,7 @@
|
|
# Extract the first word of "gtk-config", so it can be a program name with args.
|
|
set dummy gtk-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:11966: checking for $ac_word" >&5
|
|
+echo "configure:11870: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -11997,7 +11901,7 @@
|
|
|
|
min_gtk_version=$GTK_VERSION
|
|
echo $ac_n "checking for GTK - version >= $min_gtk_version""... $ac_c" 1>&6
|
|
-echo "configure:12001: checking for GTK - version >= $min_gtk_version" >&5
|
|
+echo "configure:11905: checking for GTK - version >= $min_gtk_version" >&5
|
|
no_gtk=""
|
|
if test "$GTK_CONFIG" = "no" ; then
|
|
no_gtk=yes
|
|
@@ -12020,7 +11924,7 @@
|
|
echo $ac_n "cross compiling; assumed OK... $ac_c"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 12024 "configure"
|
|
+#line 11928 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
@@ -12098,7 +12002,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:12102: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:12006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -12133,7 +12037,7 @@
|
|
CFLAGS="$CFLAGS $GTK_CFLAGS"
|
|
LIBS="$LIBS $GTK_LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 12137 "configure"
|
|
+#line 12041 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
@@ -12143,7 +12047,7 @@
|
|
return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version));
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:12147: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:12051: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
echo "*** The test program compiled, but did not run. This usually means"
|
|
echo "*** that the run-time linker is not finding GTK or finding the wrong"
|
|
@@ -12195,7 +12099,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:12199: checking for $ac_word" >&5
|
|
+echo "configure:12103: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -12239,19 +12143,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for gtk+-2.0 >= 1.3.7""... $ac_c" 1>&6
|
|
-echo "configure:12243: checking for gtk+-2.0 >= 1.3.7" >&5
|
|
+echo "configure:12147: checking for gtk+-2.0 >= 1.3.7" >&5
|
|
|
|
if $PKG_CONFIG --exists "gtk+-2.0 >= 1.3.7" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking MOZ_GTK2_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:12250: checking MOZ_GTK2_CFLAGS" >&5
|
|
+echo "configure:12154: checking MOZ_GTK2_CFLAGS" >&5
|
|
MOZ_GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 1.3.7"`
|
|
echo "$ac_t""$MOZ_GTK2_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking MOZ_GTK2_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:12255: checking MOZ_GTK2_LIBS" >&5
|
|
+echo "configure:12159: checking MOZ_GTK2_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
MOZ_GTK2_LIBS="`$PKG_CONFIG --libs-only-L \"gtk+-2.0 >= 1.3.7\"` `$PKG_CONFIG --libs-only-l \"gtk+-2.0 >= 1.3.7\"`"
|
|
@@ -12316,7 +12220,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:12320: checking for $ac_word" >&5
|
|
+echo "configure:12224: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_HOST_MOC'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -12368,7 +12272,7 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
echo $ac_n "checking for main in -lqt""... $ac_c" 1>&6
|
|
-echo "configure:12372: checking for main in -lqt" >&5
|
|
+echo "configure:12276: checking for main in -lqt" >&5
|
|
ac_lib_var=`echo qt'_'main | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -12376,14 +12280,14 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lqt $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 12380 "configure"
|
|
+#line 12284 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
main()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:12387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:12291: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -12402,7 +12306,7 @@
|
|
else
|
|
echo "$ac_t""no" 1>&6
|
|
echo $ac_n "checking for main in -lqt-mt""... $ac_c" 1>&6
|
|
-echo "configure:12406: checking for main in -lqt-mt" >&5
|
|
+echo "configure:12310: checking for main in -lqt-mt" >&5
|
|
ac_lib_var=`echo qt-mt'_'main | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -12410,14 +12314,14 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lqt-mt $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 12414 "configure"
|
|
+#line 12318 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
main()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:12421: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:12325: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -12453,9 +12357,9 @@
|
|
LIBS="$LIBS $QT_LIBS"
|
|
|
|
echo $ac_n "checking Qt - version >= $QT_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:12457: checking Qt - version >= $QT_VERSION" >&5
|
|
+echo "configure:12361: checking Qt - version >= $QT_VERSION" >&5
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 12459 "configure"
|
|
+#line 12363 "configure"
|
|
#include "confdefs.h"
|
|
#include <qglobal.h>
|
|
int main() {
|
|
@@ -12466,7 +12370,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:12470: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:12374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
result="yes"
|
|
else
|
|
@@ -12982,7 +12886,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:12986: checking for $ac_word" >&5
|
|
+echo "configure:12890: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -13026,19 +12930,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for xft""... $ac_c" 1>&6
|
|
-echo "configure:13030: checking for xft" >&5
|
|
+echo "configure:12934: checking for xft" >&5
|
|
|
|
if $PKG_CONFIG --exists "xft" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking MOZ_XFT_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:13037: checking MOZ_XFT_CFLAGS" >&5
|
|
+echo "configure:12941: checking MOZ_XFT_CFLAGS" >&5
|
|
MOZ_XFT_CFLAGS=`$PKG_CONFIG --cflags "xft"`
|
|
echo "$ac_t""$MOZ_XFT_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking MOZ_XFT_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:13042: checking MOZ_XFT_LIBS" >&5
|
|
+echo "configure:12946: checking MOZ_XFT_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
MOZ_XFT_LIBS="`$PKG_CONFIG --libs-only-L \"xft\"` `$PKG_CONFIG --libs-only-l \"xft\"`"
|
|
@@ -13073,7 +12977,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:13077: checking for $ac_word" >&5
|
|
+echo "configure:12981: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -13116,31 +13020,31 @@
|
|
else
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
- echo $ac_n "checking for pango >= 1.1.0""... $ac_c" 1>&6
|
|
-echo "configure:13121: checking for pango >= 1.1.0" >&5
|
|
+ echo $ac_n "checking for pangoxft >= 1.1.0 pangox""... $ac_c" 1>&6
|
|
+echo "configure:13025: checking for pangoxft >= 1.1.0 pangox" >&5
|
|
|
|
- if $PKG_CONFIG --exists "pango >= 1.1.0" ; then
|
|
+ if $PKG_CONFIG --exists "pangoxft >= 1.1.0 pangox" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
- echo $ac_n "checking _PANGOCHK_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:13128: checking _PANGOCHK_CFLAGS" >&5
|
|
- _PANGOCHK_CFLAGS=`$PKG_CONFIG --cflags "pango >= 1.1.0"`
|
|
- echo "$ac_t""$_PANGOCHK_CFLAGS" 1>&6
|
|
+ echo $ac_n "checking MOZ_PANGO_CFLAGS""... $ac_c" 1>&6
|
|
+echo "configure:13032: checking MOZ_PANGO_CFLAGS" >&5
|
|
+ MOZ_PANGO_CFLAGS=`$PKG_CONFIG --cflags "pangoxft >= 1.1.0 pangox"`
|
|
+ echo "$ac_t""$MOZ_PANGO_CFLAGS" 1>&6
|
|
|
|
- echo $ac_n "checking _PANGOCHK_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:13133: checking _PANGOCHK_LIBS" >&5
|
|
+ echo $ac_n "checking MOZ_PANGO_LIBS""... $ac_c" 1>&6
|
|
+echo "configure:13037: checking MOZ_PANGO_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
- _PANGOCHK_LIBS="`$PKG_CONFIG --libs-only-L \"pango >= 1.1.0\"` `$PKG_CONFIG --libs-only-l \"pango >= 1.1.0\"`"
|
|
- echo "$ac_t""$_PANGOCHK_LIBS" 1>&6
|
|
+ MOZ_PANGO_LIBS="`$PKG_CONFIG --libs-only-L \"pangoxft >= 1.1.0 pangox\"` `$PKG_CONFIG --libs-only-l \"pangoxft >= 1.1.0 pangox\"`"
|
|
+ echo "$ac_t""$MOZ_PANGO_LIBS" 1>&6
|
|
else
|
|
- _PANGOCHK_CFLAGS=""
|
|
- _PANGOCHK_LIBS=""
|
|
+ MOZ_PANGO_CFLAGS=""
|
|
+ MOZ_PANGO_LIBS=""
|
|
## If we have a custom action on failure, don't print errors, but
|
|
## do set a variable so people can do so.
|
|
- _PANGOCHK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pango >= 1.1.0"`
|
|
- echo $_PANGOCHK_PKG_ERRORS
|
|
+ MOZ_PANGO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangoxft >= 1.1.0 pangox"`
|
|
+ echo $MOZ_PANGO_PKG_ERRORS
|
|
fi
|
|
|
|
|
|
@@ -13154,7 +13058,7 @@
|
|
if test $succeeded = yes; then
|
|
:
|
|
else
|
|
- { echo "configure: error: Library requirements (pango >= 1.1.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." 1>&2; exit 1; }
|
|
+ { echo "configure: error: Library requirements (pangoxft >= 1.1.0 pangox) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." 1>&2; exit 1; }
|
|
fi
|
|
|
|
fi
|
|
@@ -13163,6 +13067,8 @@
|
|
|
|
|
|
|
|
+
|
|
+
|
|
# Check whether --enable-pango or --disable-pango was given.
|
|
if test "${enable_pango+set}" = set; then
|
|
enableval="$enable_pango"
|
|
@@ -13189,7 +13095,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:13193: checking for $ac_word" >&5
|
|
+echo "configure:13099: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -13232,30 +13138,30 @@
|
|
else
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
- echo $ac_n "checking for pango >= 1.6.0 pangoft2 >= 1.6.0""... $ac_c" 1>&6
|
|
-echo "configure:13237: checking for pango >= 1.6.0 pangoft2 >= 1.6.0" >&5
|
|
+ echo $ac_n "checking for pangoxft >= 1.6.0""... $ac_c" 1>&6
|
|
+echo "configure:13143: checking for pangoxft >= 1.6.0" >&5
|
|
|
|
- if $PKG_CONFIG --exists "pango >= 1.6.0 pangoft2 >= 1.6.0" ; then
|
|
+ if $PKG_CONFIG --exists "pangoxft >= 1.6.0" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking MOZ_PANGO_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:13244: checking MOZ_PANGO_CFLAGS" >&5
|
|
- MOZ_PANGO_CFLAGS=`$PKG_CONFIG --cflags "pango >= 1.6.0 pangoft2 >= 1.6.0"`
|
|
+echo "configure:13150: checking MOZ_PANGO_CFLAGS" >&5
|
|
+ MOZ_PANGO_CFLAGS=`$PKG_CONFIG --cflags "pangoxft >= 1.6.0"`
|
|
echo "$ac_t""$MOZ_PANGO_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking MOZ_PANGO_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:13249: checking MOZ_PANGO_LIBS" >&5
|
|
+echo "configure:13155: checking MOZ_PANGO_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
- MOZ_PANGO_LIBS="`$PKG_CONFIG --libs-only-L \"pango >= 1.6.0 pangoft2 >= 1.6.0\"` `$PKG_CONFIG --libs-only-l \"pango >= 1.6.0 pangoft2 >= 1.6.0\"`"
|
|
+ MOZ_PANGO_LIBS="`$PKG_CONFIG --libs-only-L \"pangoxft >= 1.6.0\"` `$PKG_CONFIG --libs-only-l \"pangoxft >= 1.6.0\"`"
|
|
echo "$ac_t""$MOZ_PANGO_LIBS" 1>&6
|
|
else
|
|
MOZ_PANGO_CFLAGS=""
|
|
MOZ_PANGO_LIBS=""
|
|
## If we have a custom action on failure, don't print errors, but
|
|
## do set a variable so people can do so.
|
|
- MOZ_PANGO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pango >= 1.6.0 pangoft2 >= 1.6.0"`
|
|
+ MOZ_PANGO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangoxft >= 1.6.0"`
|
|
echo $MOZ_PANGO_PKG_ERRORS
|
|
fi
|
|
|
|
@@ -13270,13 +13176,113 @@
|
|
if test $succeeded = yes; then
|
|
:
|
|
else
|
|
- { echo "configure: error: Library requirements (pango >= 1.6.0 pangoft2 >= 1.6.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." 1>&2; exit 1; }
|
|
+ { echo "configure: error: Library requirements (pangoxft >= 1.6.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." 1>&2; exit 1; }
|
|
+ fi
|
|
+
|
|
+
|
|
+ succeeded=no
|
|
+
|
|
+ if test -z "$PKG_CONFIG"; then
|
|
+ # Extract the first word of "pkg-config", so it can be a program name with args.
|
|
+set dummy pkg-config; ac_word=$2
|
|
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
+echo "configure:13190: checking for $ac_word" >&5
|
|
+if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
+ echo $ac_n "(cached) $ac_c" 1>&6
|
|
+else
|
|
+ case "$PKG_CONFIG" in
|
|
+ /*)
|
|
+ ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
|
|
+ ;;
|
|
+ ?:/*)
|
|
+ ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a dos path.
|
|
+ ;;
|
|
+ *)
|
|
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
|
|
+ ac_dummy="$PATH"
|
|
+ for ac_dir in $ac_dummy; do
|
|
+ test -z "$ac_dir" && ac_dir=.
|
|
+ if test -f $ac_dir/$ac_word; then
|
|
+ ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word"
|
|
+ break
|
|
+ fi
|
|
+ done
|
|
+ IFS="$ac_save_ifs"
|
|
+ test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
|
|
+ ;;
|
|
+esac
|
|
+fi
|
|
+PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
|
|
+if test -n "$PKG_CONFIG"; then
|
|
+ echo "$ac_t""$PKG_CONFIG" 1>&6
|
|
+else
|
|
+ echo "$ac_t""no" 1>&6
|
|
+fi
|
|
+
|
|
+ fi
|
|
+
|
|
+ if test "$PKG_CONFIG" = "no" ; then
|
|
+ echo "*** The pkg-config script could not be found. Make sure it is"
|
|
+ echo "*** in your path, or set the PKG_CONFIG environment variable"
|
|
+ echo "*** to the full path to pkg-config."
|
|
+ echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
|
|
+ else
|
|
+ PKG_CONFIG_MIN_VERSION=0.9.0
|
|
+ if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
+ echo $ac_n "checking for pangocairo >= 1.10.0""... $ac_c" 1>&6
|
|
+echo "configure:13234: checking for pangocairo >= 1.10.0" >&5
|
|
+
|
|
+ if $PKG_CONFIG --exists "pangocairo >= 1.10.0" ; then
|
|
+ echo "$ac_t""yes" 1>&6
|
|
+ succeeded=yes
|
|
+
|
|
+ echo $ac_n "checking PANGOCAIRO_CHK_CFLAGS""... $ac_c" 1>&6
|
|
+echo "configure:13241: checking PANGOCAIRO_CHK_CFLAGS" >&5
|
|
+ PANGOCAIRO_CHK_CFLAGS=`$PKG_CONFIG --cflags "pangocairo >= 1.10.0"`
|
|
+ echo "$ac_t""$PANGOCAIRO_CHK_CFLAGS" 1>&6
|
|
+
|
|
+ echo $ac_n "checking PANGOCAIRO_CHK_LIBS""... $ac_c" 1>&6
|
|
+echo "configure:13246: checking PANGOCAIRO_CHK_LIBS" >&5
|
|
+ ## don't use --libs since that can do evil things like add
|
|
+ ## -Wl,--export-dynamic
|
|
+ PANGOCAIRO_CHK_LIBS="`$PKG_CONFIG --libs-only-L \"pangocairo >= 1.10.0\"` `$PKG_CONFIG --libs-only-l \"pangocairo >= 1.10.0\"`"
|
|
+ echo "$ac_t""$PANGOCAIRO_CHK_LIBS" 1>&6
|
|
+ else
|
|
+ PANGOCAIRO_CHK_CFLAGS=""
|
|
+ PANGOCAIRO_CHK_LIBS=""
|
|
+ ## If we have a custom action on failure, don't print errors, but
|
|
+ ## do set a variable so people can do so.
|
|
+ PANGOCAIRO_CHK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangocairo >= 1.10.0"`
|
|
+
|
|
+ fi
|
|
+
|
|
+
|
|
+
|
|
+ else
|
|
+ echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
|
|
+ echo "*** See http://www.freedesktop.org/software/pkgconfig"
|
|
+ fi
|
|
+ fi
|
|
+
|
|
+ if test $succeeded = yes; then
|
|
+
|
|
+ MOZ_PANGOCAIRO=1
|
|
+ cat >> confdefs.h <<\EOF
|
|
+#define MOZ_PANGOCAIRO 1
|
|
+EOF
|
|
+
|
|
+ MOZ_PANGO_CFLAGS="$PANGOCAIRO_CHK_CFLAGS $MOZ_PANGO_CFLAGS"
|
|
+ MOZ_PANGO_LIBS="$PANGOCAIRO_CHK_LIBS $MOZ_PANGO_LIBS"
|
|
+
|
|
+ else
|
|
+ :
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
fi
|
|
|
|
if test "$MOZ_X11"
|
|
@@ -13313,7 +13319,7 @@
|
|
_SAVE_LDFLAGS="$LDFLAGS"
|
|
LDFLAGS="$XLDFLAGS $LDFLAGS"
|
|
echo $ac_n "checking for XpGetPrinterList in -lXp""... $ac_c" 1>&6
|
|
-echo "configure:13317: checking for XpGetPrinterList in -lXp" >&5
|
|
+echo "configure:13323: checking for XpGetPrinterList in -lXp" >&5
|
|
ac_lib_var=`echo Xp'_'XpGetPrinterList | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -13321,7 +13327,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lXp $XEXT_LIBS $XLIBS $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 13325 "configure"
|
|
+#line 13331 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -13332,7 +13338,7 @@
|
|
XpGetPrinterList()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:13336: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:13342: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -13405,7 +13411,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:13409: checking for $ac_word" >&5
|
|
+echo "configure:13415: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -13449,19 +13455,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:13453: checking for gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION" >&5
|
|
+echo "configure:13459: checking for gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION" >&5
|
|
|
|
if $PKG_CONFIG --exists "gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking MOZ_GNOMEVFS_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:13460: checking MOZ_GNOMEVFS_CFLAGS" >&5
|
|
+echo "configure:13466: checking MOZ_GNOMEVFS_CFLAGS" >&5
|
|
MOZ_GNOMEVFS_CFLAGS=`$PKG_CONFIG --cflags "gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION"`
|
|
echo "$ac_t""$MOZ_GNOMEVFS_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking MOZ_GNOMEVFS_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:13465: checking MOZ_GNOMEVFS_LIBS" >&5
|
|
+echo "configure:13471: checking MOZ_GNOMEVFS_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
MOZ_GNOMEVFS_LIBS="`$PKG_CONFIG --libs-only-L \"gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION\"` `$PKG_CONFIG --libs-only-l \"gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION\"`"
|
|
@@ -13511,7 +13517,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:13515: checking for $ac_word" >&5
|
|
+echo "configure:13521: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -13555,19 +13561,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for gconf-2.0 >= $GCONF_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:13559: checking for gconf-2.0 >= $GCONF_VERSION" >&5
|
|
+echo "configure:13565: checking for gconf-2.0 >= $GCONF_VERSION" >&5
|
|
|
|
if $PKG_CONFIG --exists "gconf-2.0 >= $GCONF_VERSION" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking MOZ_GCONF_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:13566: checking MOZ_GCONF_CFLAGS" >&5
|
|
+echo "configure:13572: checking MOZ_GCONF_CFLAGS" >&5
|
|
MOZ_GCONF_CFLAGS=`$PKG_CONFIG --cflags "gconf-2.0 >= $GCONF_VERSION"`
|
|
echo "$ac_t""$MOZ_GCONF_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking MOZ_GCONF_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:13571: checking MOZ_GCONF_LIBS" >&5
|
|
+echo "configure:13577: checking MOZ_GCONF_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
MOZ_GCONF_LIBS="`$PKG_CONFIG --libs-only-L \"gconf-2.0 >= $GCONF_VERSION\"` `$PKG_CONFIG --libs-only-l \"gconf-2.0 >= $GCONF_VERSION\"`"
|
|
@@ -13613,7 +13619,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:13617: checking for $ac_word" >&5
|
|
+echo "configure:13623: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -13657,19 +13663,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for libgnome-2.0 >= $LIBGNOME_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:13661: checking for libgnome-2.0 >= $LIBGNOME_VERSION" >&5
|
|
+echo "configure:13667: checking for libgnome-2.0 >= $LIBGNOME_VERSION" >&5
|
|
|
|
if $PKG_CONFIG --exists "libgnome-2.0 >= $LIBGNOME_VERSION" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking MOZ_LIBGNOME_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:13668: checking MOZ_LIBGNOME_CFLAGS" >&5
|
|
+echo "configure:13674: checking MOZ_LIBGNOME_CFLAGS" >&5
|
|
MOZ_LIBGNOME_CFLAGS=`$PKG_CONFIG --cflags "libgnome-2.0 >= $LIBGNOME_VERSION"`
|
|
echo "$ac_t""$MOZ_LIBGNOME_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking MOZ_LIBGNOME_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:13673: checking MOZ_LIBGNOME_LIBS" >&5
|
|
+echo "configure:13679: checking MOZ_LIBGNOME_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
MOZ_LIBGNOME_LIBS="`$PKG_CONFIG --libs-only-L \"libgnome-2.0 >= $LIBGNOME_VERSION\"` `$PKG_CONFIG --libs-only-l \"libgnome-2.0 >= $LIBGNOME_VERSION\"`"
|
|
@@ -13746,7 +13752,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:13750: checking for $ac_word" >&5
|
|
+echo "configure:13756: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -13790,19 +13796,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for libgnomeui-2.0 >= $GNOMEUI_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:13794: checking for libgnomeui-2.0 >= $GNOMEUI_VERSION" >&5
|
|
+echo "configure:13800: checking for libgnomeui-2.0 >= $GNOMEUI_VERSION" >&5
|
|
|
|
if $PKG_CONFIG --exists "libgnomeui-2.0 >= $GNOMEUI_VERSION" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking MOZ_GNOMEUI_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:13801: checking MOZ_GNOMEUI_CFLAGS" >&5
|
|
+echo "configure:13807: checking MOZ_GNOMEUI_CFLAGS" >&5
|
|
MOZ_GNOMEUI_CFLAGS=`$PKG_CONFIG --cflags "libgnomeui-2.0 >= $GNOMEUI_VERSION"`
|
|
echo "$ac_t""$MOZ_GNOMEUI_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking MOZ_GNOMEUI_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:13806: checking MOZ_GNOMEUI_LIBS" >&5
|
|
+echo "configure:13812: checking MOZ_GNOMEUI_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
MOZ_GNOMEUI_LIBS="`$PKG_CONFIG --libs-only-L \"libgnomeui-2.0 >= $GNOMEUI_VERSION\"` `$PKG_CONFIG --libs-only-l \"libgnomeui-2.0 >= $GNOMEUI_VERSION\"`"
|
|
@@ -14222,7 +14228,7 @@
|
|
# Extract the first word of "javac", so it can be a program name with args.
|
|
set dummy javac; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:14226: checking for $ac_word" >&5
|
|
+echo "configure:14232: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_JAVAC'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -14258,7 +14264,7 @@
|
|
# Extract the first word of "jar", so it can be a program name with args.
|
|
set dummy jar; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:14262: checking for $ac_word" >&5
|
|
+echo "configure:14268: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_JAR'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -14479,7 +14485,7 @@
|
|
gdiplus)
|
|
MOZ_SVG_RENDERER_GDIPLUS=1
|
|
echo $ac_n "checking for Gdiplus.h""... $ac_c" 1>&6
|
|
-echo "configure:14483: checking for Gdiplus.h" >&5
|
|
+echo "configure:14489: checking for Gdiplus.h" >&5
|
|
|
|
ac_ext=C
|
|
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
|
|
@@ -14489,7 +14495,7 @@
|
|
cross_compiling=$ac_cv_prog_cxx_cross
|
|
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 14493 "configure"
|
|
+#line 14499 "configure"
|
|
#include "confdefs.h"
|
|
#include <windows.h>
|
|
#include <unknwn.h>
|
|
@@ -14498,7 +14504,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:14502: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:14508: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
echo "$ac_t""yes" 1>&6
|
|
else
|
|
@@ -14598,13 +14604,13 @@
|
|
msvc*|mks*|cygwin*|mingw*|wince*)
|
|
if test -n "$MOZ_UPDATER"; then
|
|
echo $ac_n "checking for iconv""... $ac_c" 1>&6
|
|
-echo "configure:14602: checking for iconv" >&5
|
|
+echo "configure:14608: checking for iconv" >&5
|
|
for ac_prog in $HOST_ICONV "iconv"
|
|
do
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:14608: checking for $ac_word" >&5
|
|
+echo "configure:14614: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_prog_HOST_ICONV'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -14870,18 +14876,18 @@
|
|
|
|
if test -n "$MOZ_DEBUG"; then
|
|
echo $ac_n "checking for valid debug flags""... $ac_c" 1>&6
|
|
-echo "configure:14874: checking for valid debug flags" >&5
|
|
+echo "configure:14880: checking for valid debug flags" >&5
|
|
_SAVE_CFLAGS=$CFLAGS
|
|
CFLAGS="$CFLAGS $MOZ_DEBUG_FLAGS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 14878 "configure"
|
|
+#line 14884 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int main() {
|
|
printf("Hello World\n");
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:14885: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:14891: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
_results=yes
|
|
else
|
|
@@ -14922,18 +14928,18 @@
|
|
if test "$COMPILE_ENVIRONMENT"; then
|
|
if test -n "$MOZ_OPTIMIZE"; then
|
|
echo $ac_n "checking for valid optimization flags""... $ac_c" 1>&6
|
|
-echo "configure:14926: checking for valid optimization flags" >&5
|
|
+echo "configure:14932: checking for valid optimization flags" >&5
|
|
_SAVE_CFLAGS=$CFLAGS
|
|
CFLAGS="$CFLAGS $MOZ_OPTIMIZE_FLAGS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 14930 "configure"
|
|
+#line 14936 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int main() {
|
|
printf("Hello World\n");
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:14937: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:14943: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
_results=yes
|
|
else
|
|
@@ -15150,7 +15156,7 @@
|
|
|
|
if test -n "$_ENABLE_EFENCE"; then
|
|
echo $ac_n "checking for malloc in -lefence""... $ac_c" 1>&6
|
|
-echo "configure:15154: checking for malloc in -lefence" >&5
|
|
+echo "configure:15160: checking for malloc in -lefence" >&5
|
|
ac_lib_var=`echo efence'_'malloc | sed 'y%./+-%__p_%'`
|
|
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
@@ -15158,7 +15164,7 @@
|
|
ac_save_LIBS="$LIBS"
|
|
LIBS="-lefence $LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15162 "configure"
|
|
+#line 15168 "configure"
|
|
#include "confdefs.h"
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
/* We use char because int might match the return type of a gcc2
|
|
@@ -15169,7 +15175,7 @@
|
|
malloc()
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15173: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:15179: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_lib_$ac_lib_var=yes"
|
|
else
|
|
@@ -15270,12 +15276,12 @@
|
|
for ac_func in __builtin_vec_new __builtin_vec_delete __builtin_new __builtin_delete __pure_virtual
|
|
do
|
|
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
|
-echo "configure:15274: checking for $ac_func" >&5
|
|
+echo "configure:15280: checking for $ac_func" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15279 "configure"
|
|
+#line 15285 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func(); below. */
|
|
@@ -15301,7 +15307,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15305: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:15311: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
@@ -15544,12 +15550,12 @@
|
|
for ac_func in __cxa_demangle
|
|
do
|
|
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
|
-echo "configure:15548: checking for $ac_func" >&5
|
|
+echo "configure:15554: checking for $ac_func" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15553 "configure"
|
|
+#line 15559 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func(); below. */
|
|
@@ -15575,7 +15581,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15579: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:15585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
@@ -15713,7 +15719,7 @@
|
|
# Compiler Options
|
|
|
|
echo $ac_n "checking for gcc -pipe support""... $ac_c" 1>&6
|
|
-echo "configure:15717: checking for gcc -pipe support" >&5
|
|
+echo "configure:15723: checking for gcc -pipe support" >&5
|
|
if test -n "$GNU_CC" && test -n "$GNU_CXX" && test -n "$GNU_AS"; then
|
|
echo '#include <stdio.h>' > dummy-hello.c
|
|
echo 'int main() { printf("Hello World\n"); exit(0); }' >> dummy-hello.c
|
|
@@ -15728,14 +15734,14 @@
|
|
_SAVE_CFLAGS=$CFLAGS
|
|
CFLAGS="$CFLAGS -pipe"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15732 "configure"
|
|
+#line 15738 "configure"
|
|
#include "confdefs.h"
|
|
#include <stdio.h>
|
|
int main() {
|
|
printf("Hello World\n");
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15739: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:15745: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
_res_gcc_pipe="yes"
|
|
else
|
|
@@ -15777,16 +15783,16 @@
|
|
_SAVE_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS ${_COMPILER_PREFIX}-Wno-long-long"
|
|
echo $ac_n "checking whether compiler supports -Wno-long-long""... $ac_c" 1>&6
|
|
-echo "configure:15781: checking whether compiler supports -Wno-long-long" >&5
|
|
+echo "configure:15787: checking whether compiler supports -Wno-long-long" >&5
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15783 "configure"
|
|
+#line 15789 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
return(0);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15790: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:15796: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
_WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} ${_COMPILER_PREFIX}-Wno-long-long"
|
|
_WARNINGS_CXXFLAGS="${_WARNINGS_CXXFLAGS} ${_COMPILER_PREFIX}-Wno-long-long"
|
|
@@ -15807,16 +15813,16 @@
|
|
CFLAGS="$CFLAGS -fprofile-generate"
|
|
|
|
echo $ac_n "checking whether C compiler supports -fprofile-generate""... $ac_c" 1>&6
|
|
-echo "configure:15811: checking whether C compiler supports -fprofile-generate" >&5
|
|
+echo "configure:15817: checking whether C compiler supports -fprofile-generate" >&5
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15813 "configure"
|
|
+#line 15819 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
return 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:15826: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
PROFILE_GEN_CFLAGS="-fprofile-generate"
|
|
result="yes"
|
|
@@ -15834,16 +15840,16 @@
|
|
else
|
|
CFLAGS="$_SAVE_CFLAGS -fprofile-arcs"
|
|
echo $ac_n "checking whether C compiler supports -fprofile-arcs""... $ac_c" 1>&6
|
|
-echo "configure:15838: checking whether C compiler supports -fprofile-arcs" >&5
|
|
+echo "configure:15844: checking whether C compiler supports -fprofile-arcs" >&5
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15840 "configure"
|
|
+#line 15846 "configure"
|
|
#include "confdefs.h"
|
|
|
|
int main() {
|
|
return 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15847: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:15853: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
PROFILE_GEN_CFLAGS="-fprofile-arcs"
|
|
result="yes"
|
|
@@ -15889,18 +15895,21 @@
|
|
_SAVE_CXXFLAGS=$CXXFLAGS
|
|
CXXFLAGS="$CXXFLAGS ${_WARNINGS_CXXFLAGS} ${_COMPILER_PREFIX}-pedantic"
|
|
echo $ac_n "checking whether C++ compiler has -pedantic long long bug""... $ac_c" 1>&6
|
|
-echo "configure:15893: checking whether C++ compiler has -pedantic long long bug" >&5
|
|
+echo "configure:15899: checking whether C++ compiler has -pedantic long long bug" >&5
|
|
if test "$cross_compiling" = yes; then
|
|
result="maybe"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15898 "configure"
|
|
+#line 15904 "configure"
|
|
#include "confdefs.h"
|
|
+#ifdef __cplusplus
|
|
+extern "C" void exit(int);
|
|
+#endif
|
|
int main () {
|
|
if (sizeof(long long) != 8) { return 1; }
|
|
return 0; }
|
|
EOF
|
|
-if { (eval echo configure:15904: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:15913: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
result="no"
|
|
else
|
|
@@ -15930,13 +15939,16 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for correct temporary object destruction order""... $ac_c" 1>&6
|
|
-echo "configure:15934: checking for correct temporary object destruction order" >&5
|
|
+echo "configure:15943: checking for correct temporary object destruction order" >&5
|
|
if test "$cross_compiling" = yes; then
|
|
result="maybe"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15939 "configure"
|
|
+#line 15948 "configure"
|
|
#include "confdefs.h"
|
|
+#ifdef __cplusplus
|
|
+extern "C" void exit(int);
|
|
+#endif
|
|
class A {
|
|
public: A(int& x) : mValue(x) {}
|
|
~A() { mValue--; }
|
|
@@ -15955,7 +15967,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:15959: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:15971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
result="yes"
|
|
else
|
|
@@ -15976,12 +15988,12 @@
|
|
_SAVE_CXXFLAGS=$CXXFLAGS
|
|
CXXFLAGS="$CXXFLAGS ${_WARNINGS_CXXFLAGS}"
|
|
echo $ac_n "checking for correct overload resolution with const and templates""... $ac_c" 1>&6
|
|
-echo "configure:15980: checking for correct overload resolution with const and templates" >&5
|
|
+echo "configure:15992: checking for correct overload resolution with const and templates" >&5
|
|
if eval "test \"`echo '$''{'ac_nscap_nonconst_opeq_bug'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 15985 "configure"
|
|
+#line 15997 "configure"
|
|
#include "confdefs.h"
|
|
|
|
template <class T>
|
|
@@ -16011,7 +16023,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:16015: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:16027: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
rm -rf conftest*
|
|
ac_nscap_nonconst_opeq_bug="no"
|
|
else
|
|
@@ -16276,7 +16288,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:16280: checking for $ac_word" >&5
|
|
+echo "configure:16292: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -16320,19 +16332,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for libIDL-2.0 >= 0.8.0""... $ac_c" 1>&6
|
|
-echo "configure:16324: checking for libIDL-2.0 >= 0.8.0" >&5
|
|
+echo "configure:16336: checking for libIDL-2.0 >= 0.8.0" >&5
|
|
|
|
if $PKG_CONFIG --exists "libIDL-2.0 >= 0.8.0" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking LIBIDL_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:16331: checking LIBIDL_CFLAGS" >&5
|
|
+echo "configure:16343: checking LIBIDL_CFLAGS" >&5
|
|
LIBIDL_CFLAGS=`$PKG_CONFIG --cflags "libIDL-2.0 >= 0.8.0"`
|
|
echo "$ac_t""$LIBIDL_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking LIBIDL_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:16336: checking LIBIDL_LIBS" >&5
|
|
+echo "configure:16348: checking LIBIDL_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
LIBIDL_LIBS="`$PKG_CONFIG --libs-only-L \"libIDL-2.0 >= 0.8.0\"` `$PKG_CONFIG --libs-only-l \"libIDL-2.0 >= 0.8.0\"`"
|
|
@@ -16455,7 +16467,7 @@
|
|
# Extract the first word of "glib-config", so it can be a program name with args.
|
|
set dummy glib-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:16459: checking for $ac_word" >&5
|
|
+echo "configure:16471: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_GLIB_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -16490,7 +16502,7 @@
|
|
|
|
min_glib_version=1.2.0
|
|
echo $ac_n "checking for GLIB - version >= $min_glib_version""... $ac_c" 1>&6
|
|
-echo "configure:16494: checking for GLIB - version >= $min_glib_version" >&5
|
|
+echo "configure:16506: checking for GLIB - version >= $min_glib_version" >&5
|
|
no_glib=""
|
|
if test "$GLIB_CONFIG" = "no" ; then
|
|
no_glib=yes
|
|
@@ -16513,7 +16525,7 @@
|
|
echo $ac_n "cross compiling; assumed OK... $ac_c"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 16517 "configure"
|
|
+#line 16529 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <glib.h>
|
|
@@ -16589,7 +16601,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:16593: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:16605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -16623,7 +16635,7 @@
|
|
CFLAGS="$CFLAGS $GLIB_CFLAGS"
|
|
LIBS="$LIBS $GLIB_LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 16627 "configure"
|
|
+#line 16639 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <glib.h>
|
|
@@ -16633,7 +16645,7 @@
|
|
return ((glib_major_version) || (glib_minor_version) || (glib_micro_version));
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:16637: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:16649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
echo "*** The test program compiled, but did not run. This usually means"
|
|
echo "*** that the run-time linker is not finding GLIB or finding the wrong"
|
|
@@ -16677,7 +16689,7 @@
|
|
# Extract the first word of "libIDL-config", so it can be a program name with args.
|
|
set dummy libIDL-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:16681: checking for $ac_word" >&5
|
|
+echo "configure:16693: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_LIBIDL_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -16712,7 +16724,7 @@
|
|
|
|
min_libIDL_version=$LIBIDL_VERSION
|
|
echo $ac_n "checking for libIDL - version >= $min_libIDL_version""... $ac_c" 1>&6
|
|
-echo "configure:16716: checking for libIDL - version >= $min_libIDL_version" >&5
|
|
+echo "configure:16728: checking for libIDL - version >= $min_libIDL_version" >&5
|
|
no_libIDL=""
|
|
if test "$LIBIDL_CONFIG" = "no" ; then
|
|
no_libIDL=yes
|
|
@@ -16739,7 +16751,7 @@
|
|
echo $ac_n "cross compiling; assumed OK... $ac_c"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 16743 "configure"
|
|
+#line 16755 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
@@ -16825,7 +16837,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:16829: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:16841: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -16859,7 +16871,7 @@
|
|
CFLAGS="$CFLAGS $LIBIDL_CFLAGS"
|
|
LIBS="$LIBS $LIBIDL_LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 16863 "configure"
|
|
+#line 16875 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
@@ -16870,7 +16882,7 @@
|
|
return IDL_get_libver_string ? 1 : 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:16874: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:16886: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
echo "*** The test program compiled, but did not run. This usually means"
|
|
echo "*** that the run-time linker is not finding libIDL or finding the wrong"
|
|
@@ -16998,7 +17010,7 @@
|
|
# Extract the first word of "glib-config", so it can be a program name with args.
|
|
set dummy glib-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:17002: checking for $ac_word" >&5
|
|
+echo "configure:17014: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_GLIB_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -17033,7 +17045,7 @@
|
|
|
|
min_glib_version=1.2.0
|
|
echo $ac_n "checking for GLIB - version >= $min_glib_version""... $ac_c" 1>&6
|
|
-echo "configure:17037: checking for GLIB - version >= $min_glib_version" >&5
|
|
+echo "configure:17049: checking for GLIB - version >= $min_glib_version" >&5
|
|
no_glib=""
|
|
if test "$GLIB_CONFIG" = "no" ; then
|
|
no_glib=yes
|
|
@@ -17056,7 +17068,7 @@
|
|
echo $ac_n "cross compiling; assumed OK... $ac_c"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 17060 "configure"
|
|
+#line 17072 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <glib.h>
|
|
@@ -17132,7 +17144,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:17136: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:17148: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -17166,7 +17178,7 @@
|
|
CFLAGS="$CFLAGS $GLIB_CFLAGS"
|
|
LIBS="$LIBS $GLIB_LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 17170 "configure"
|
|
+#line 17182 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <glib.h>
|
|
@@ -17176,7 +17188,7 @@
|
|
return ((glib_major_version) || (glib_minor_version) || (glib_micro_version));
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:17180: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:17192: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
echo "*** The test program compiled, but did not run. This usually means"
|
|
echo "*** that the run-time linker is not finding GLIB or finding the wrong"
|
|
@@ -17220,7 +17232,7 @@
|
|
# Extract the first word of "libIDL-config", so it can be a program name with args.
|
|
set dummy libIDL-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:17224: checking for $ac_word" >&5
|
|
+echo "configure:17236: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_LIBIDL_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -17255,7 +17267,7 @@
|
|
|
|
min_libIDL_version=$LIBIDL_VERSION
|
|
echo $ac_n "checking for libIDL - version >= $min_libIDL_version""... $ac_c" 1>&6
|
|
-echo "configure:17259: checking for libIDL - version >= $min_libIDL_version" >&5
|
|
+echo "configure:17271: checking for libIDL - version >= $min_libIDL_version" >&5
|
|
no_libIDL=""
|
|
if test "$LIBIDL_CONFIG" = "no" ; then
|
|
no_libIDL=yes
|
|
@@ -17282,7 +17294,7 @@
|
|
echo $ac_n "cross compiling; assumed OK... $ac_c"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 17286 "configure"
|
|
+#line 17298 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
@@ -17368,7 +17380,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:17372: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:17384: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -17402,7 +17414,7 @@
|
|
CFLAGS="$CFLAGS $LIBIDL_CFLAGS"
|
|
LIBS="$LIBS $LIBIDL_LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 17406 "configure"
|
|
+#line 17418 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
@@ -17413,7 +17425,7 @@
|
|
return IDL_get_libver_string ? 1 : 0;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:17417: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:17429: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
echo "*** The test program compiled, but did not run. This usually means"
|
|
echo "*** that the run-time linker is not finding libIDL or finding the wrong"
|
|
@@ -17454,7 +17466,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:17458: checking for $ac_word" >&5
|
|
+echo "configure:17470: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -17498,19 +17510,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for libIDL-2.0 >= 0.8.0""... $ac_c" 1>&6
|
|
-echo "configure:17502: checking for libIDL-2.0 >= 0.8.0" >&5
|
|
+echo "configure:17514: checking for libIDL-2.0 >= 0.8.0" >&5
|
|
|
|
if $PKG_CONFIG --exists "libIDL-2.0 >= 0.8.0" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking LIBIDL_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:17509: checking LIBIDL_CFLAGS" >&5
|
|
+echo "configure:17521: checking LIBIDL_CFLAGS" >&5
|
|
LIBIDL_CFLAGS=`$PKG_CONFIG --cflags "libIDL-2.0 >= 0.8.0"`
|
|
echo "$ac_t""$LIBIDL_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking LIBIDL_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:17514: checking LIBIDL_LIBS" >&5
|
|
+echo "configure:17526: checking LIBIDL_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
LIBIDL_LIBS="`$PKG_CONFIG --libs-only-L \"libIDL-2.0 >= 0.8.0\"` `$PKG_CONFIG --libs-only-l \"libIDL-2.0 >= 0.8.0\"`"
|
|
@@ -17546,7 +17558,7 @@
|
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
|
set dummy $ac_prog; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:17550: checking for $ac_word" >&5
|
|
+echo "configure:17562: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_ORBIT_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -17583,7 +17595,7 @@
|
|
|
|
if test -n "$ORBIT_CONFIG"; then
|
|
echo $ac_n "checking for ORBit libIDL usability""... $ac_c" 1>&6
|
|
-echo "configure:17587: checking for ORBit libIDL usability" >&5
|
|
+echo "configure:17599: checking for ORBit libIDL usability" >&5
|
|
_ORBIT_CFLAGS=`${ORBIT_CONFIG} client --cflags`
|
|
_ORBIT_LIBS=`${ORBIT_CONFIG} client --libs`
|
|
_ORBIT_INC_PATH=`${PERL} -e '{ for $f (@ARGV) { print "$f " if ($f =~ m/^-I/); } }' -- ${_ORBIT_CFLAGS}`
|
|
@@ -17600,7 +17612,7 @@
|
|
result="maybe"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 17604 "configure"
|
|
+#line 17616 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdlib.h>
|
|
@@ -17615,7 +17627,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:17619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:17631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
_LIBIDL_FOUND=1
|
|
result="yes"
|
|
@@ -17672,7 +17684,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:17676: checking for $ac_word" >&5
|
|
+echo "configure:17688: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -17716,19 +17728,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for glib-2.0 >= 1.3.7""... $ac_c" 1>&6
|
|
-echo "configure:17720: checking for glib-2.0 >= 1.3.7" >&5
|
|
+echo "configure:17732: checking for glib-2.0 >= 1.3.7" >&5
|
|
|
|
if $PKG_CONFIG --exists "glib-2.0 >= 1.3.7" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking GLIB_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:17727: checking GLIB_CFLAGS" >&5
|
|
+echo "configure:17739: checking GLIB_CFLAGS" >&5
|
|
GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 1.3.7"`
|
|
echo "$ac_t""$GLIB_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking GLIB_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:17732: checking GLIB_LIBS" >&5
|
|
+echo "configure:17744: checking GLIB_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
GLIB_LIBS="`$PKG_CONFIG --libs-only-L \"glib-2.0 >= 1.3.7\"` `$PKG_CONFIG --libs-only-l \"glib-2.0 >= 1.3.7\"`"
|
|
@@ -17812,7 +17824,7 @@
|
|
# Extract the first word of "glib-config", so it can be a program name with args.
|
|
set dummy glib-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:17816: checking for $ac_word" >&5
|
|
+echo "configure:17828: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_GLIB_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -17847,7 +17859,7 @@
|
|
|
|
min_glib_version=${GLIB_VERSION}
|
|
echo $ac_n "checking for GLIB - version >= $min_glib_version""... $ac_c" 1>&6
|
|
-echo "configure:17851: checking for GLIB - version >= $min_glib_version" >&5
|
|
+echo "configure:17863: checking for GLIB - version >= $min_glib_version" >&5
|
|
no_glib=""
|
|
if test "$GLIB_CONFIG" = "no" ; then
|
|
no_glib=yes
|
|
@@ -17870,7 +17882,7 @@
|
|
echo $ac_n "cross compiling; assumed OK... $ac_c"
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 17874 "configure"
|
|
+#line 17886 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <glib.h>
|
|
@@ -17946,7 +17958,7 @@
|
|
}
|
|
|
|
EOF
|
|
-if { (eval echo configure:17950: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:17962: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
:
|
|
else
|
|
@@ -17980,7 +17992,7 @@
|
|
CFLAGS="$CFLAGS $GLIB_CFLAGS"
|
|
LIBS="$LIBS $GLIB_LIBS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 17984 "configure"
|
|
+#line 17996 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <glib.h>
|
|
@@ -17990,7 +18002,7 @@
|
|
return ((glib_major_version) || (glib_minor_version) || (glib_micro_version));
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:17994: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:18006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
echo "*** The test program compiled, but did not run. This usually means"
|
|
echo "*** that the run-time linker is not finding GLIB or finding the wrong"
|
|
@@ -18069,19 +18081,19 @@
|
|
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
|
|
# for constant arguments. Useless!
|
|
echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
|
|
-echo "configure:18073: checking for working alloca.h" >&5
|
|
+echo "configure:18085: checking for working alloca.h" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 18078 "configure"
|
|
+#line 18090 "configure"
|
|
#include "confdefs.h"
|
|
#include <alloca.h>
|
|
int main() {
|
|
char *p = alloca(2 * sizeof(int));
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:18085: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:18097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_header_alloca_h=yes
|
|
else
|
|
@@ -18102,12 +18114,12 @@
|
|
fi
|
|
|
|
echo $ac_n "checking for alloca""... $ac_c" 1>&6
|
|
-echo "configure:18106: checking for alloca" >&5
|
|
+echo "configure:18118: checking for alloca" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 18111 "configure"
|
|
+#line 18123 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#ifdef __GNUC__
|
|
@@ -18135,7 +18147,7 @@
|
|
char *p = (char *) alloca(1);
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:18139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:18151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
ac_cv_func_alloca_works=yes
|
|
else
|
|
@@ -18167,12 +18179,12 @@
|
|
|
|
|
|
echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
|
|
-echo "configure:18171: checking whether alloca needs Cray hooks" >&5
|
|
+echo "configure:18183: checking whether alloca needs Cray hooks" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 18176 "configure"
|
|
+#line 18188 "configure"
|
|
#include "confdefs.h"
|
|
#if defined(CRAY) && ! defined(CRAY2)
|
|
webecray
|
|
@@ -18197,12 +18209,12 @@
|
|
if test $ac_cv_os_cray = yes; then
|
|
for ac_func in _getb67 GETB67 getb67; do
|
|
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
|
|
-echo "configure:18201: checking for $ac_func" >&5
|
|
+echo "configure:18213: checking for $ac_func" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 18206 "configure"
|
|
+#line 18218 "configure"
|
|
#include "confdefs.h"
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
which can conflict with char $ac_func(); below. */
|
|
@@ -18225,7 +18237,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:18229: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
+if { (eval echo configure:18241: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
|
|
rm -rf conftest*
|
|
eval "ac_cv_func_$ac_func=yes"
|
|
else
|
|
@@ -18252,7 +18264,7 @@
|
|
fi
|
|
|
|
echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
|
|
-echo "configure:18256: checking stack direction for C alloca" >&5
|
|
+echo "configure:18268: checking stack direction for C alloca" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -18260,7 +18272,7 @@
|
|
ac_cv_c_stack_direction=0
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 18264 "configure"
|
|
+#line 18276 "configure"
|
|
#include "confdefs.h"
|
|
find_stack_direction ()
|
|
{
|
|
@@ -18279,7 +18291,7 @@
|
|
exit (find_stack_direction() < 0);
|
|
}
|
|
EOF
|
|
-if { (eval echo configure:18283: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
+if { (eval echo configure:18295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
|
then
|
|
ac_cv_c_stack_direction=1
|
|
else
|
|
@@ -18328,17 +18340,17 @@
|
|
do
|
|
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
|
|
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
|
|
-echo "configure:18332: checking for $ac_hdr" >&5
|
|
+echo "configure:18344: checking for $ac_hdr" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 18337 "configure"
|
|
+#line 18349 "configure"
|
|
#include "confdefs.h"
|
|
#include <$ac_hdr>
|
|
EOF
|
|
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
|
|
-{ (eval echo configure:18342: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
+{ (eval echo configure:18354: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
|
|
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
|
|
if test -z "$ac_err"; then
|
|
rm -rf conftest*
|
|
@@ -18418,7 +18430,7 @@
|
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
|
set dummy pkg-config; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:18422: checking for $ac_word" >&5
|
|
+echo "configure:18434: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -18462,19 +18474,19 @@
|
|
PKG_CONFIG_MIN_VERSION=0.9.0
|
|
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
|
echo $ac_n "checking for cairo >= $CAIRO_VERSION""... $ac_c" 1>&6
|
|
-echo "configure:18466: checking for cairo >= $CAIRO_VERSION" >&5
|
|
+echo "configure:18478: checking for cairo >= $CAIRO_VERSION" >&5
|
|
|
|
if $PKG_CONFIG --exists "cairo >= $CAIRO_VERSION" ; then
|
|
echo "$ac_t""yes" 1>&6
|
|
succeeded=yes
|
|
|
|
echo $ac_n "checking CAIRO_CFLAGS""... $ac_c" 1>&6
|
|
-echo "configure:18473: checking CAIRO_CFLAGS" >&5
|
|
+echo "configure:18485: checking CAIRO_CFLAGS" >&5
|
|
CAIRO_CFLAGS=`$PKG_CONFIG --cflags "cairo >= $CAIRO_VERSION"`
|
|
echo "$ac_t""$CAIRO_CFLAGS" 1>&6
|
|
|
|
echo $ac_n "checking CAIRO_LIBS""... $ac_c" 1>&6
|
|
-echo "configure:18478: checking CAIRO_LIBS" >&5
|
|
+echo "configure:18490: checking CAIRO_LIBS" >&5
|
|
## don't use --libs since that can do evil things like add
|
|
## -Wl,--export-dynamic
|
|
CAIRO_LIBS="`$PKG_CONFIG --libs-only-L \"cairo >= $CAIRO_VERSION\"` `$PKG_CONFIG --libs-only-l \"cairo >= $CAIRO_VERSION\"`"
|
|
@@ -18539,7 +18551,7 @@
|
|
# Extract the first word of "python", so it can be a program name with args.
|
|
set dummy python; ac_word=$2
|
|
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
|
-echo "configure:18543: checking for $ac_word" >&5
|
|
+echo "configure:18555: checking for $ac_word" >&5
|
|
if eval "test \"`echo '$''{'ac_cv_path_PYTHON'+set}'`\" = set"; then
|
|
echo $ac_n "(cached) $ac_c" 1>&6
|
|
else
|
|
@@ -18800,14 +18812,14 @@
|
|
cross_compiling=$ac_cv_prog_cc_cross
|
|
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 18804 "configure"
|
|
+#line 18816 "configure"
|
|
#include "confdefs.h"
|
|
#include <gmodule.h>
|
|
int main() {
|
|
int x = 1; x++;
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:18811: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:18823: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
:
|
|
else
|
|
echo "configure: failed program was:" >&5
|
|
@@ -19102,7 +19114,7 @@
|
|
_SAVE_CFLAGS=$CFLAGS
|
|
CFLAGS="$CFLAGS $XCFLAGS"
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 19106 "configure"
|
|
+#line 19118 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#include <stdio.h>
|
|
@@ -19118,7 +19130,7 @@
|
|
|
|
; return 0; }
|
|
EOF
|
|
-if { (eval echo configure:19122: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
+if { (eval echo configure:19134: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
|
:
|
|
else
|
|
echo "configure: failed program was:" >&5
|
|
@@ -19335,34 +19347,15 @@
|
|
# Transform confdefs.h into DEFS.
|
|
# Protect against shell expansion while executing Makefile rules.
|
|
# Protect against Makefile macro expansion.
|
|
-#
|
|
-# If the first sed substitution is executed (which looks for macros that
|
|
-# take arguments), then we branch to the quote section. Otherwise,
|
|
-# look for a macro that doesn't take arguments.
|
|
-cat >confdef2opt.sed <<\_ACEOF
|
|
-t clear
|
|
-: clear
|
|
-s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\),-D\1=\2,g
|
|
-t quote
|
|
-s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\),-D\1=\2,g
|
|
-t quote
|
|
-d
|
|
-: quote
|
|
-s,[ `~#$^&*(){}\\|;'"<>?],\\&,g
|
|
-s,\[,\\&,g
|
|
-s,\],\\&,g
|
|
-s,\$,$$,g
|
|
-p
|
|
-_ACEOF
|
|
-# We use echo to avoid assuming a particular line-breaking character.
|
|
-# The extra dot is to prevent the shell from consuming trailing
|
|
-# line-breaks from the sub-command output. A line-break within
|
|
-# single-quotes doesn't work because, if this script is created in a
|
|
-# platform that uses two characters for line-breaks (e.g., DOS), tr
|
|
-# would break.
|
|
-ac_LF_and_DOT=`echo; echo .`
|
|
-DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
|
|
-rm -f confdef2opt.sed
|
|
+cat > conftest.defs <<\EOF
|
|
+s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
|
|
+s%[ `~#$^&*(){}\\|;'"<>?]%\\&%g
|
|
+s%\[%\\&%g
|
|
+s%\]%\\&%g
|
|
+s%\$%$$%g
|
|
+EOF
|
|
+DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
|
|
+rm -f conftest.defs
|
|
|
|
MOZ_DEFINES=$DEFS
|
|
|
|
@@ -19642,12 +19635,13 @@
|
|
s%@MOZ_ENABLE_FREETYPE2@%$MOZ_ENABLE_FREETYPE2%g
|
|
s%@MOZ_XFT_CFLAGS@%$MOZ_XFT_CFLAGS%g
|
|
s%@MOZ_XFT_LIBS@%$MOZ_XFT_LIBS%g
|
|
-s%@_PANGOCHK_CFLAGS@%$_PANGOCHK_CFLAGS%g
|
|
-s%@_PANGOCHK_LIBS@%$_PANGOCHK_LIBS%g
|
|
-s%@MOZ_ENABLE_XFT@%$MOZ_ENABLE_XFT%g
|
|
s%@MOZ_PANGO_CFLAGS@%$MOZ_PANGO_CFLAGS%g
|
|
s%@MOZ_PANGO_LIBS@%$MOZ_PANGO_LIBS%g
|
|
+s%@MOZ_ENABLE_XFT@%$MOZ_ENABLE_XFT%g
|
|
+s%@PANGOCAIRO_CHK_CFLAGS@%$PANGOCAIRO_CHK_CFLAGS%g
|
|
+s%@PANGOCAIRO_CHK_LIBS@%$PANGOCAIRO_CHK_LIBS%g
|
|
s%@MOZ_ENABLE_PANGO@%$MOZ_ENABLE_PANGO%g
|
|
+s%@MOZ_PANGOCAIRO@%$MOZ_PANGOCAIRO%g
|
|
s%@MOZ_ENABLE_COREXFONTS@%$MOZ_ENABLE_COREXFONTS%g
|
|
s%@MOZ_GNOMEVFS_CFLAGS@%$MOZ_GNOMEVFS_CFLAGS%g
|
|
s%@MOZ_GNOMEVFS_LIBS@%$MOZ_GNOMEVFS_LIBS%g
|
|
@@ -20278,7 +20272,7 @@
|
|
fi
|
|
fi
|
|
|
|
- cd $ac_popdir
|
|
+ cd "$ac_popdir"
|
|
done
|
|
fi
|
|
|
|
@@ -20421,7 +20415,7 @@
|
|
fi
|
|
fi
|
|
|
|
- cd $ac_popdir
|
|
+ cd "$ac_popdir"
|
|
done
|
|
fi
|
|
|