PR libstdc++/89466 avoid slow xsltproc command in configure
Certain broken versions of xsltproc ignore the --nonet option and will attempt to fetch the docbook stylesheet from the WWW when it isn't in the local XML catalog. This patch checks for the local stylesheet directory first, and doesn't use xsltproc if no local stylesheets are found. Checking for the local directory is done using xmlcatalog if available, only checking the hardcoded list of directories if xmlcatalog fails. The right directory for Suse is added to the hardcoded list. This should avoid doing an xsltproc check that would need to download the stylesheet, so no network connection is made even if a broken xsltproc is present. PR libstdc++/89466 * acinclude.m4 (GLIBCXX_CONFIGURE_DOCBOOK): Reorder check for local stylesheet directories before check for xsltproc. Try to use xmlcatalog to find local stylesheet directory before trying hardcoded paths. Add path used by suse to hardcoded paths. Adjust xsltproc check to look for the same stylesheet as doc/Makefile.am uses. Don't use xsltproc if xmlcatalog fails to find a local stylesheet. * configure.ac: Check for xmlcatalog. * Makefile.in: Regenerate. * configure: Likewise. * doc/Makefile.in: Likewise. * include/Makefile.in: Likewise. * libsupc++/Makefile.in: Likewise. * po/Makefile.in: Likewise. * python/Makefile.in: Likewise. * src/Makefile.in: Likewise. * src/c++11/Makefile.in: Likewise. * src/c++17/Makefile.in: Likewise. * src/c++98/Makefile.in: Likewise. * src/filesystem/Makefile.in: Likewise. * testsuite/Makefile.in: Likewise. From-SVN: r269249
This commit is contained in:
parent
5fce606fc2
commit
a4395a846a
@ -1,3 +1,27 @@
|
|||||||
|
2019-02-27 Jonathan Wakely <jwakely@redhat.com>
|
||||||
|
|
||||||
|
PR libstdc++/89466
|
||||||
|
* acinclude.m4 (GLIBCXX_CONFIGURE_DOCBOOK): Reorder check for local
|
||||||
|
stylesheet directories before check for xsltproc. Try to use
|
||||||
|
xmlcatalog to find local stylesheet directory before trying hardcoded
|
||||||
|
paths. Add path used by suse to hardcoded paths. Adjust xsltproc
|
||||||
|
check to look for the same stylesheet as doc/Makefile.am uses. Don't
|
||||||
|
use xsltproc if xmlcatalog fails to find a local stylesheet.
|
||||||
|
* configure.ac: Check for xmlcatalog.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
* configure: Likewise.
|
||||||
|
* doc/Makefile.in: Likewise.
|
||||||
|
* include/Makefile.in: Likewise.
|
||||||
|
* libsupc++/Makefile.in: Likewise.
|
||||||
|
* po/Makefile.in: Likewise.
|
||||||
|
* python/Makefile.in: Likewise.
|
||||||
|
* src/Makefile.in: Likewise.
|
||||||
|
* src/c++11/Makefile.in: Likewise.
|
||||||
|
* src/c++17/Makefile.in: Likewise.
|
||||||
|
* src/c++98/Makefile.in: Likewise.
|
||||||
|
* src/filesystem/Makefile.in: Likewise.
|
||||||
|
* testsuite/Makefile.in: Likewise.
|
||||||
|
|
||||||
2019-02-26 Jonathan Wakely <jwakely@redhat.com>
|
2019-02-26 Jonathan Wakely <jwakely@redhat.com>
|
||||||
|
|
||||||
PR libstdc++/89477
|
PR libstdc++/89477
|
||||||
|
@ -295,6 +295,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -634,34 +634,43 @@ dnl XSL_STYLE_DIR
|
|||||||
dnl
|
dnl
|
||||||
AC_DEFUN([GLIBCXX_CONFIGURE_DOCBOOK], [
|
AC_DEFUN([GLIBCXX_CONFIGURE_DOCBOOK], [
|
||||||
|
|
||||||
AC_MSG_CHECKING([for docbook stylesheets for documentation creation])
|
glibcxx_docbook_url=http://docbook.sourceforge.net/release/xsl-ns/current/
|
||||||
glibcxx_stylesheets=no
|
|
||||||
if test x${XSLTPROC} = xyes && echo '<title/>' | xsltproc --noout --nonet --xinclude http://docbook.sourceforge.net/release/xsl-ns/current/xhtml-1_1/docbook.xsl - 2>/dev/null; then
|
|
||||||
glibcxx_stylesheets=yes
|
|
||||||
fi
|
|
||||||
AC_MSG_RESULT($glibcxx_stylesheets)
|
|
||||||
|
|
||||||
AC_MSG_CHECKING([for local stylesheet directory])
|
AC_MSG_CHECKING([for local stylesheet directory])
|
||||||
glibcxx_local_stylesheets=no
|
glibcxx_local_stylesheets=no
|
||||||
if test x"$glibcxx_stylesheets" = x"yes"; then
|
if test x${XMLCATALOG} = xyes && xsl_style_dir=`xmlcatalog "" $glibcxx_docbook_url 2>/dev/null`
|
||||||
if test -d /usr/share/sgml/docbook/xsl-ns-stylesheets; then
|
then
|
||||||
glibcxx_local_stylesheets=yes
|
XSL_STYLE_DIR=`echo $xsl_style_dir | sed -n 's;^file://;;p'`
|
||||||
XSL_STYLE_DIR=/usr/share/sgml/docbook/xsl-ns-stylesheets
|
glibcxx_local_stylesheets=yes
|
||||||
fi
|
else
|
||||||
if test -d /usr/share/xml/docbook/stylesheet/docbook-xsl-ns; then
|
for dir in \
|
||||||
glibcxx_local_stylesheets=yes
|
/usr/share/sgml/docbook/xsl-ns-stylesheets \
|
||||||
XSL_STYLE_DIR=/usr/share/xml/docbook/stylesheet/docbook-xsl-ns
|
/usr/share/xml/docbook/stylesheet/docbook-xsl-ns \
|
||||||
fi
|
/usr/share/xml/docbook/stylesheet/nwalsh5/current \
|
||||||
if test -d /usr/share/xml/docbook/stylesheet/nwalsh5/current; then
|
/usr/share/xml/docbook/stylesheet/nwalsh/current
|
||||||
glibcxx_local_stylesheets=yes
|
do
|
||||||
XSL_STYLE_DIR=/usr/share/xml/docbook/stylesheet/nwalsh5/current
|
if test -d $dir; then
|
||||||
fi
|
glibcxx_local_stylesheets=yes
|
||||||
|
XSL_STYLE_DIR=$dir
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT($glibcxx_local_stylesheets)
|
AC_MSG_RESULT($glibcxx_local_stylesheets)
|
||||||
|
|
||||||
if test x"$glibcxx_local_stylesheets" = x"yes"; then
|
if test x"$glibcxx_local_stylesheets" = x"yes"; then
|
||||||
AC_SUBST(XSL_STYLE_DIR)
|
AC_SUBST(XSL_STYLE_DIR)
|
||||||
AC_MSG_NOTICE($XSL_STYLE_DIR)
|
AC_MSG_NOTICE($XSL_STYLE_DIR)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([for docbook stylesheets for documentation creation])
|
||||||
|
glibcxx_stylesheets=no
|
||||||
|
if test x${XMLCATALOG} = xno || xmlcatalog "" $glibcxx_docbook_url/xhtml/docbook.xsl >/dev/null 2>&1; then
|
||||||
|
if test x${XSLTPROC} = xyes && echo '<title/>' | xsltproc --noout --nonet --xinclude $glibcxx_docbook_url/xhtml/docbook.xsl - 2>/dev/null; then
|
||||||
|
glibcxx_stylesheets=yes
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($glibcxx_stylesheets)
|
||||||
|
|
||||||
else
|
else
|
||||||
glibcxx_stylesheets=no
|
glibcxx_stylesheets=no
|
||||||
fi
|
fi
|
||||||
|
108
libstdc++-v3/configure
vendored
108
libstdc++-v3/configure
vendored
@ -669,6 +669,7 @@ BUILD_EPUB_TRUE
|
|||||||
XSL_STYLE_DIR
|
XSL_STYLE_DIR
|
||||||
XMLLINT
|
XMLLINT
|
||||||
XSLTPROC
|
XSLTPROC
|
||||||
|
XMLCATALOG
|
||||||
DOT
|
DOT
|
||||||
DOXYGEN
|
DOXYGEN
|
||||||
BUILD_INFO_FALSE
|
BUILD_INFO_FALSE
|
||||||
@ -11844,7 +11845,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 11847 "configure"
|
#line 11848 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11950,7 +11951,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 11953 "configure"
|
#line 11954 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -15636,7 +15637,7 @@ $as_echo "$glibcxx_cv_atomic_long_long" >&6; }
|
|||||||
# Fake what AC_TRY_COMPILE does.
|
# Fake what AC_TRY_COMPILE does.
|
||||||
|
|
||||||
cat > conftest.$ac_ext << EOF
|
cat > conftest.$ac_ext << EOF
|
||||||
#line 15639 "configure"
|
#line 15640 "configure"
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
typedef bool atomic_type;
|
typedef bool atomic_type;
|
||||||
@ -15671,7 +15672,7 @@ $as_echo "$glibcxx_cv_atomic_bool" >&6; }
|
|||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
|
|
||||||
cat > conftest.$ac_ext << EOF
|
cat > conftest.$ac_ext << EOF
|
||||||
#line 15674 "configure"
|
#line 15675 "configure"
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
typedef short atomic_type;
|
typedef short atomic_type;
|
||||||
@ -15706,7 +15707,7 @@ $as_echo "$glibcxx_cv_atomic_short" >&6; }
|
|||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
|
|
||||||
cat > conftest.$ac_ext << EOF
|
cat > conftest.$ac_ext << EOF
|
||||||
#line 15709 "configure"
|
#line 15710 "configure"
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// NB: _Atomic_word not necessarily int.
|
// NB: _Atomic_word not necessarily int.
|
||||||
@ -15742,7 +15743,7 @@ $as_echo "$glibcxx_cv_atomic_int" >&6; }
|
|||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
|
|
||||||
cat > conftest.$ac_ext << EOF
|
cat > conftest.$ac_ext << EOF
|
||||||
#line 15745 "configure"
|
#line 15746 "configure"
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
typedef long long atomic_type;
|
typedef long long atomic_type;
|
||||||
@ -15895,7 +15896,7 @@ $as_echo "mutex" >&6; }
|
|||||||
# unnecessary for this test.
|
# unnecessary for this test.
|
||||||
|
|
||||||
cat > conftest.$ac_ext << EOF
|
cat > conftest.$ac_ext << EOF
|
||||||
#line 15898 "configure"
|
#line 15899 "configure"
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
_Decimal32 d1;
|
_Decimal32 d1;
|
||||||
@ -15937,7 +15938,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|||||||
# unnecessary for this test.
|
# unnecessary for this test.
|
||||||
|
|
||||||
cat > conftest.$ac_ext << EOF
|
cat > conftest.$ac_ext << EOF
|
||||||
#line 15940 "configure"
|
#line 15941 "configure"
|
||||||
template<typename T1, typename T2>
|
template<typename T1, typename T2>
|
||||||
struct same
|
struct same
|
||||||
{ typedef T2 type; };
|
{ typedef T2 type; };
|
||||||
@ -15971,7 +15972,7 @@ $as_echo "$enable_int128" >&6; }
|
|||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
|
|
||||||
cat > conftest.$ac_ext << EOF
|
cat > conftest.$ac_ext << EOF
|
||||||
#line 15974 "configure"
|
#line 15975 "configure"
|
||||||
template<typename T1, typename T2>
|
template<typename T1, typename T2>
|
||||||
struct same
|
struct same
|
||||||
{ typedef T2 type; };
|
{ typedef T2 type; };
|
||||||
@ -81481,6 +81482,44 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
# Check for docbook
|
# Check for docbook
|
||||||
|
# Extract the first word of "xmlcatalog", so it can be a program name with args.
|
||||||
|
set dummy xmlcatalog; ac_word=$2
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||||
|
$as_echo_n "checking for $ac_word... " >&6; }
|
||||||
|
if ${ac_cv_prog_XMLCATALOG+:} false; then :
|
||||||
|
$as_echo_n "(cached) " >&6
|
||||||
|
else
|
||||||
|
if test -n "$XMLCATALOG"; then
|
||||||
|
ac_cv_prog_XMLCATALOG="$XMLCATALOG" # Let the user override the test.
|
||||||
|
else
|
||||||
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
|
for as_dir in $PATH
|
||||||
|
do
|
||||||
|
IFS=$as_save_IFS
|
||||||
|
test -z "$as_dir" && as_dir=.
|
||||||
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||||
|
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||||
|
ac_cv_prog_XMLCATALOG="yes"
|
||||||
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||||
|
break 2
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
IFS=$as_save_IFS
|
||||||
|
|
||||||
|
test -z "$ac_cv_prog_XMLCATALOG" && ac_cv_prog_XMLCATALOG="no"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
XMLCATALOG=$ac_cv_prog_XMLCATALOG
|
||||||
|
if test -n "$XMLCATALOG"; then
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLCATALOG" >&5
|
||||||
|
$as_echo "$XMLCATALOG" >&6; }
|
||||||
|
else
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
$as_echo "no" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Extract the first word of "xsltproc", so it can be a program name with args.
|
# Extract the first word of "xsltproc", so it can be a program name with args.
|
||||||
set dummy xsltproc; ac_word=$2
|
set dummy xsltproc; ac_word=$2
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||||
@ -81559,31 +81598,28 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for docbook stylesheets for documentation creation" >&5
|
glibcxx_docbook_url=http://docbook.sourceforge.net/release/xsl-ns/current/
|
||||||
$as_echo_n "checking for docbook stylesheets for documentation creation... " >&6; }
|
|
||||||
glibcxx_stylesheets=no
|
|
||||||
if test x${XSLTPROC} = xyes && echo '<title/>' | xsltproc --noout --nonet --xinclude http://docbook.sourceforge.net/release/xsl-ns/current/xhtml-1_1/docbook.xsl - 2>/dev/null; then
|
|
||||||
glibcxx_stylesheets=yes
|
|
||||||
fi
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_stylesheets" >&5
|
|
||||||
$as_echo "$glibcxx_stylesheets" >&6; }
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for local stylesheet directory" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for local stylesheet directory" >&5
|
||||||
$as_echo_n "checking for local stylesheet directory... " >&6; }
|
$as_echo_n "checking for local stylesheet directory... " >&6; }
|
||||||
glibcxx_local_stylesheets=no
|
glibcxx_local_stylesheets=no
|
||||||
if test x"$glibcxx_stylesheets" = x"yes"; then
|
if test x${XMLCATALOG} = xyes && xsl_style_dir=`xmlcatalog "" $glibcxx_docbook_url 2>/dev/null`
|
||||||
if test -d /usr/share/sgml/docbook/xsl-ns-stylesheets; then
|
then
|
||||||
glibcxx_local_stylesheets=yes
|
XSL_STYLE_DIR=`echo $xsl_style_dir | sed -n 's;^file://;;p'`
|
||||||
XSL_STYLE_DIR=/usr/share/sgml/docbook/xsl-ns-stylesheets
|
glibcxx_local_stylesheets=yes
|
||||||
fi
|
else
|
||||||
if test -d /usr/share/xml/docbook/stylesheet/docbook-xsl-ns; then
|
for dir in \
|
||||||
glibcxx_local_stylesheets=yes
|
/usr/share/sgml/docbook/xsl-ns-stylesheets \
|
||||||
XSL_STYLE_DIR=/usr/share/xml/docbook/stylesheet/docbook-xsl-ns
|
/usr/share/xml/docbook/stylesheet/docbook-xsl-ns \
|
||||||
fi
|
/usr/share/xml/docbook/stylesheet/nwalsh5/current \
|
||||||
if test -d /usr/share/xml/docbook/stylesheet/nwalsh5/current; then
|
/usr/share/xml/docbook/stylesheet/nwalsh/current
|
||||||
glibcxx_local_stylesheets=yes
|
do
|
||||||
XSL_STYLE_DIR=/usr/share/xml/docbook/stylesheet/nwalsh5/current
|
if test -d $dir; then
|
||||||
fi
|
glibcxx_local_stylesheets=yes
|
||||||
|
XSL_STYLE_DIR=$dir
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_local_stylesheets" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_local_stylesheets" >&5
|
||||||
$as_echo "$glibcxx_local_stylesheets" >&6; }
|
$as_echo "$glibcxx_local_stylesheets" >&6; }
|
||||||
@ -81592,6 +81628,18 @@ if test x"$glibcxx_local_stylesheets" = x"yes"; then
|
|||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: $XSL_STYLE_DIR" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: $XSL_STYLE_DIR" >&5
|
||||||
$as_echo "$as_me: $XSL_STYLE_DIR" >&6;}
|
$as_echo "$as_me: $XSL_STYLE_DIR" >&6;}
|
||||||
|
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for docbook stylesheets for documentation creation" >&5
|
||||||
|
$as_echo_n "checking for docbook stylesheets for documentation creation... " >&6; }
|
||||||
|
glibcxx_stylesheets=no
|
||||||
|
if test x${XMLCATALOG} = xno || xmlcatalog "" $glibcxx_docbook_url/xhtml/docbook.xsl >/dev/null 2>&1; then
|
||||||
|
if test x${XSLTPROC} = xyes && echo '<title/>' | xsltproc --noout --nonet --xinclude $glibcxx_docbook_url/xhtml/docbook.xsl - 2>/dev/null; then
|
||||||
|
glibcxx_stylesheets=yes
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_stylesheets" >&5
|
||||||
|
$as_echo "$glibcxx_stylesheets" >&6; }
|
||||||
|
|
||||||
else
|
else
|
||||||
glibcxx_stylesheets=no
|
glibcxx_stylesheets=no
|
||||||
fi
|
fi
|
||||||
|
@ -449,6 +449,7 @@ AC_CHECK_PROG([DOXYGEN], doxygen, yes, no)
|
|||||||
AC_CHECK_PROG([DOT], dot, yes, no)
|
AC_CHECK_PROG([DOT], dot, yes, no)
|
||||||
|
|
||||||
# Check for docbook
|
# Check for docbook
|
||||||
|
AC_CHECK_PROG([XMLCATALOG], xmlcatalog, yes, no)
|
||||||
AC_CHECK_PROG([XSLTPROC], xsltproc, yes, no)
|
AC_CHECK_PROG([XSLTPROC], xsltproc, yes, no)
|
||||||
AC_CHECK_PROG([XMLLINT], xmllint, yes, no)
|
AC_CHECK_PROG([XMLLINT], xmllint, yes, no)
|
||||||
GLIBCXX_CONFIGURE_DOCBOOK
|
GLIBCXX_CONFIGURE_DOCBOOK
|
||||||
|
@ -254,6 +254,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
|
|
||||||
# Validate existing XML structure.
|
# Validate existing XML structure.
|
||||||
XMLLINT = xmllint
|
XMLLINT = xmllint
|
||||||
|
@ -254,6 +254,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -363,6 +363,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -254,6 +254,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -284,6 +284,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -349,6 +349,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -320,6 +320,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -300,6 +300,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -316,6 +316,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -324,6 +324,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
@ -254,6 +254,7 @@ VTV_CXXFLAGS = @VTV_CXXFLAGS@
|
|||||||
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
|
||||||
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
|
XMLCATALOG = @XMLCATALOG@
|
||||||
XMLLINT = @XMLLINT@
|
XMLLINT = @XMLLINT@
|
||||||
XSLTPROC = @XSLTPROC@
|
XSLTPROC = @XSLTPROC@
|
||||||
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
XSL_STYLE_DIR = @XSL_STYLE_DIR@
|
||||||
|
Loading…
Reference in New Issue
Block a user