[multiple changes]
2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * config-ml.in: Robustify against white space in absolute file names. * config-ml.in (multi-clean): Substitute ${Makefile}. Remove superfluous ${Makefile} in list. libgomp: 2007-11-29 Andris Pavenis <andris.pavenis@iki.fi> Paolo Bonzini <bonzini@gnu.org> * Makefile.am: Use space as vpath separator. Use 'vpath %' instead of 'VPATH ='. * Makefile.in: Regenerate. gcc: 2007-11-29 Andris Pavenis <andris.pavenis@iki.fi> * Makefile.in: Use separate vpath lines for each path. libstdc++-v3: 2007-11-29 Andris Pavenis <andris.pavenis@iki.fi> * src/Makefile.am: Use separate vpath lines for each path. M libgomp/Makefile.in M libgomp/ChangeLog M libgomp/Makefile.am M gcc/ChangeLog M gcc/Makefile.in M libstdc++-v3/src/Makefile.in M libstdc++-v3/src/Makefile.am M libstdc++-v3/ChangeLog M ChangeLog From-SVN: r130514
This commit is contained in:
parent
42a8c358ce
commit
d683ec81d2
@ -1,3 +1,11 @@
|
|||||||
|
2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
|
* config-ml.in: Robustify against white space in absolute file
|
||||||
|
names.
|
||||||
|
|
||||||
|
* config-ml.in (multi-clean): Substitute ${Makefile}.
|
||||||
|
Remove superfluous ${Makefile} in list.
|
||||||
|
|
||||||
2007-11-19 Thiemo Seufer <ths@mips.com>
|
2007-11-19 Thiemo Seufer <ths@mips.com>
|
||||||
|
|
||||||
* config-ml.in: Don't hardcode the Makefile name.
|
* config-ml.in: Don't hardcode the Makefile name.
|
||||||
|
25
config-ml.in
25
config-ml.in
@ -1,8 +1,8 @@
|
|||||||
# Configure fragment invoked in the post-target section for subdirs
|
# Configure fragment invoked in the post-target section for subdirs
|
||||||
# wanting multilib support.
|
# wanting multilib support.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
|
# Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
||||||
# Free Software Foundation, Inc.
|
# 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||||
#
|
#
|
||||||
# This file is free software; you can redistribute it and/or modify
|
# This file is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -540,7 +540,7 @@ multi-do:
|
|||||||
else \
|
else \
|
||||||
rootpre=`${PWD_COMMAND}`/; export rootpre; \
|
rootpre=`${PWD_COMMAND}`/; export rootpre; \
|
||||||
srcrootpre=`cd $(srcdir); ${PWD_COMMAND}`/; export srcrootpre; \
|
srcrootpre=`cd $(srcdir); ${PWD_COMMAND}`/; export srcrootpre; \
|
||||||
lib=`echo $${rootpre} | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
|
lib=`echo "$${rootpre}" | sed -e 's,^.*/\([^/][^/]*\)/$$,\1,'`; \
|
||||||
compiler="$(CC)"; \
|
compiler="$(CC)"; \
|
||||||
for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
|
for i in `$${compiler} --print-multi-lib 2>/dev/null`; do \
|
||||||
dir=`echo $$i | sed -e 's/;.*$$//'`; \
|
dir=`echo $$i | sed -e 's/;.*$$//'`; \
|
||||||
@ -586,8 +586,13 @@ multi-clean:
|
|||||||
true; \
|
true; \
|
||||||
else \
|
else \
|
||||||
lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
|
lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
|
||||||
for dir in ${Makefile} $(MULTIDIRS); do \
|
for dir in : $(MULTIDIRS); do \
|
||||||
if [ -f ../$${dir}/$${lib}/${Makefile} ]; then \
|
test $$dir != : || continue; \
|
||||||
|
EOF
|
||||||
|
cat >>Multi.tem <<EOF
|
||||||
|
if [ -f ../\$\${dir}/\$\${lib}/${Makefile} ]; then \\
|
||||||
|
EOF
|
||||||
|
cat >>Multi.tem <<\EOF
|
||||||
if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
|
if (cd ../$${dir}/$${lib}; $(MAKE) $(FLAGS_TO_PASS) $(DO)); \
|
||||||
then true; \
|
then true; \
|
||||||
else exit 1; \
|
else exit 1; \
|
||||||
@ -696,7 +701,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
ml_origdir=`${PWDCMD-pwd}`
|
ml_origdir=`${PWDCMD-pwd}`
|
||||||
ml_libdir=`echo $ml_origdir | sed -e 's,^.*/,,'`
|
ml_libdir=`echo "$ml_origdir" | sed -e 's,^.*/,,'`
|
||||||
# cd to top-level-build-dir/${with_target_subdir}
|
# cd to top-level-build-dir/${with_target_subdir}
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
@ -732,7 +737,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
|
|||||||
|
|
||||||
case ${srcdir} in
|
case ${srcdir} in
|
||||||
".")
|
".")
|
||||||
echo Building symlink tree in `${PWDCMD-pwd}`/${ml_dir}/${ml_libdir}
|
echo "Building symlink tree in `${PWDCMD-pwd}`/${ml_dir}/${ml_libdir}"
|
||||||
if [ "${with_target_subdir}" != "." ]; then
|
if [ "${with_target_subdir}" != "." ]; then
|
||||||
ml_unsubdir="../"
|
ml_unsubdir="../"
|
||||||
else
|
else
|
||||||
@ -797,7 +802,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
|
|||||||
else
|
else
|
||||||
# Create a regular expression that matches any string as long
|
# Create a regular expression that matches any string as long
|
||||||
# as ML_POPDIR.
|
# as ML_POPDIR.
|
||||||
popdir_rx=`echo ${ML_POPDIR} | sed 's,.,.,g'`
|
popdir_rx=`echo "${ML_POPDIR}" | sed 's,.,.,g'`
|
||||||
CC_=
|
CC_=
|
||||||
for arg in ${CC}; do
|
for arg in ${CC}; do
|
||||||
case $arg in
|
case $arg in
|
||||||
@ -901,11 +906,11 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ${ML_POPDIR}
|
cd "${ML_POPDIR}"
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
cd ${ml_origdir}
|
cd "${ml_origdir}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fi # ${ml_toplevel_p} = yes
|
fi # ${ml_toplevel_p} = yes
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2007-11-29 Andris Pavenis <andris.pavenis@iki.fi>
|
||||||
|
|
||||||
|
* Makefile.in: Use separate vpath lines for each path.
|
||||||
|
|
||||||
2007-11-29 Ben Elliston <bje@au.ibm.com>
|
2007-11-29 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
* SERVICE: Update URL.
|
* SERVICE: Update URL.
|
||||||
|
@ -111,7 +111,8 @@ VPATH = @srcdir@
|
|||||||
# pattern rule for everything.
|
# pattern rule for everything.
|
||||||
# This vpath could be extended within the Make-lang fragments.
|
# This vpath could be extended within the Make-lang fragments.
|
||||||
|
|
||||||
vpath %.texi $(gcc_docdir):$(gcc_docdir)/include
|
vpath %.texi $(gcc_docdir)
|
||||||
|
vpath %.texi $(gcc_docdir)/include
|
||||||
|
|
||||||
# ----
|
# ----
|
||||||
# Default values for variables overridden in Makefile fragments.
|
# Default values for variables overridden in Makefile fragments.
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2007-11-29 Andris Pavenis <andris.pavenis@iki.fi>
|
||||||
|
Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
|
* Makefile.am: Use space as vpath separator. Use 'vpath %'
|
||||||
|
instead of 'VPATH ='.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
2007-11-23 Matthias Klose <doko@ubuntu.com>
|
2007-11-23 Matthias Klose <doko@ubuntu.com>
|
||||||
|
|
||||||
* configure.ac: Adjust makeinfo version check.
|
* configure.ac: Adjust makeinfo version check.
|
||||||
|
@ -12,9 +12,7 @@ search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) $(top_srcdir)
|
|||||||
fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/finclude
|
fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/finclude
|
||||||
libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
|
libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
|
||||||
|
|
||||||
empty =
|
vpath % $(strip $(search_path))
|
||||||
space = $(empty) $(empty)
|
|
||||||
VPATH = $(subst $(space),:,$(strip $(search_path)))
|
|
||||||
|
|
||||||
AM_CPPFLAGS = $(addprefix -I, $(search_path))
|
AM_CPPFLAGS = $(addprefix -I, $(search_path))
|
||||||
AM_CFLAGS = $(XCFLAGS)
|
AM_CFLAGS = $(XCFLAGS)
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@
|
pkgdatadir = $(datadir)/@PACKAGE@
|
||||||
pkglibdir = $(libdir)/@PACKAGE@
|
pkglibdir = $(libdir)/@PACKAGE@
|
||||||
pkgincludedir = $(includedir)/@PACKAGE@
|
pkgincludedir = $(includedir)/@PACKAGE@
|
||||||
@ -56,8 +57,8 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
|||||||
$(top_srcdir)/../config/stdint.m4 \
|
$(top_srcdir)/../config/stdint.m4 \
|
||||||
$(top_srcdir)/../config/tls.m4 $(top_srcdir)/../ltoptions.m4 \
|
$(top_srcdir)/../config/tls.m4 $(top_srcdir)/../ltoptions.m4 \
|
||||||
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
||||||
$(top_srcdir)/acinclude.m4 $(top_srcdir)/../libtool.m4 \
|
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
|
||||||
$(top_srcdir)/configure.ac
|
$(top_srcdir)/../libtool.m4 $(top_srcdir)/configure.ac
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||||
$(ACLOCAL_M4)
|
$(ACLOCAL_M4)
|
||||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||||
@ -139,7 +140,6 @@ DIST_ARCHIVES = $(distdir).tar.gz
|
|||||||
GZIP_ENV = --best
|
GZIP_ENV = --best
|
||||||
distuninstallcheck_listfiles = find . -type f -print
|
distuninstallcheck_listfiles = find . -type f -print
|
||||||
distcleancheck_listfiles = find . -type f -print
|
distcleancheck_listfiles = find . -type f -print
|
||||||
VPATH = $(subst $(space),:,$(strip $(search_path)))
|
|
||||||
ACLOCAL = @ACLOCAL@
|
ACLOCAL = @ACLOCAL@
|
||||||
AMDEP_FALSE = @AMDEP_FALSE@
|
AMDEP_FALSE = @AMDEP_FALSE@
|
||||||
AMDEP_TRUE = @AMDEP_TRUE@
|
AMDEP_TRUE = @AMDEP_TRUE@
|
||||||
@ -216,12 +216,9 @@ USE_FORTRAN_TRUE = @USE_FORTRAN_TRUE@
|
|||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
XCFLAGS = @XCFLAGS@
|
XCFLAGS = @XCFLAGS@
|
||||||
XLDFLAGS = @XLDFLAGS@
|
XLDFLAGS = @XLDFLAGS@
|
||||||
ac_ct_AR = @ac_ct_AR@
|
|
||||||
ac_ct_CC = @ac_ct_CC@
|
ac_ct_CC = @ac_ct_CC@
|
||||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||||
ac_ct_FC = @ac_ct_FC@
|
ac_ct_FC = @ac_ct_FC@
|
||||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
|
||||||
ac_ct_STRIP = @ac_ct_STRIP@
|
|
||||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||||
am__include = @am__include@
|
am__include = @am__include@
|
||||||
@ -237,6 +234,9 @@ build_os = @build_os@
|
|||||||
build_vendor = @build_vendor@
|
build_vendor = @build_vendor@
|
||||||
config_path = @config_path@
|
config_path = @config_path@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
docdir = @docdir@
|
||||||
|
dvidir = @dvidir@
|
||||||
enable_shared = @enable_shared@
|
enable_shared = @enable_shared@
|
||||||
enable_static = @enable_static@
|
enable_static = @enable_static@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
@ -245,6 +245,7 @@ host_alias = @host_alias@
|
|||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_os = @host_os@
|
host_os = @host_os@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
|
htmldir = @htmldir@
|
||||||
includedir = @includedir@
|
includedir = @includedir@
|
||||||
infodir = @infodir@
|
infodir = @infodir@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
@ -252,14 +253,17 @@ libdir = @libdir@
|
|||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
libtool_VERSION = @libtool_VERSION@
|
libtool_VERSION = @libtool_VERSION@
|
||||||
link_gomp = @link_gomp@
|
link_gomp = @link_gomp@
|
||||||
|
localedir = @localedir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
lt_ECHO = @lt_ECHO@
|
lt_ECHO = @lt_ECHO@
|
||||||
mandir = @mandir@
|
mandir = @mandir@
|
||||||
mkdir_p = @mkdir_p@
|
mkdir_p = @mkdir_p@
|
||||||
multi_basedir = @multi_basedir@
|
multi_basedir = @multi_basedir@
|
||||||
oldincludedir = @oldincludedir@
|
oldincludedir = @oldincludedir@
|
||||||
|
pdfdir = @pdfdir@
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
program_transform_name = @program_transform_name@
|
program_transform_name = @program_transform_name@
|
||||||
|
psdir = @psdir@
|
||||||
sbindir = @sbindir@
|
sbindir = @sbindir@
|
||||||
sharedstatedir = @sharedstatedir@
|
sharedstatedir = @sharedstatedir@
|
||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
@ -276,8 +280,6 @@ gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
|
|||||||
search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) $(top_srcdir)
|
search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) $(top_srcdir)
|
||||||
fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/finclude
|
fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/finclude
|
||||||
libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
|
libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
|
||||||
empty =
|
|
||||||
space = $(empty) $(empty)
|
|
||||||
AM_CPPFLAGS = $(addprefix -I, $(search_path))
|
AM_CPPFLAGS = $(addprefix -I, $(search_path))
|
||||||
AM_CFLAGS = $(XCFLAGS)
|
AM_CFLAGS = $(XCFLAGS)
|
||||||
AM_LDFLAGS = $(XLDFLAGS) $(SECTION_LDFLAGS) $(OPT_LDFLAGS)
|
AM_LDFLAGS = $(XLDFLAGS) $(SECTION_LDFLAGS) $(OPT_LDFLAGS)
|
||||||
@ -542,10 +544,13 @@ dist-info: $(INFO_DEPS)
|
|||||||
$(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
|
$(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
|
||||||
esac; \
|
esac; \
|
||||||
if test -f $$base; then d=.; else d=$(srcdir); fi; \
|
if test -f $$base; then d=.; else d=$(srcdir); fi; \
|
||||||
for file in $$d/$$base*; do \
|
base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
|
||||||
relfile=`expr "$$file" : "$$d/\(.*\)"`; \
|
for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
|
||||||
test -f $(distdir)/$$relfile || \
|
if test -f $$file; then \
|
||||||
cp -p $$file $(distdir)/$$relfile; \
|
relfile=`expr "$$file" : "$$d/\(.*\)"`; \
|
||||||
|
test -f $(distdir)/$$relfile || \
|
||||||
|
cp -p $$file $(distdir)/$$relfile; \
|
||||||
|
else :; fi; \
|
||||||
done; \
|
done; \
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -1047,6 +1052,8 @@ uninstall-info: uninstall-info-recursive
|
|||||||
uninstall-toolexeclibLTLIBRARIES
|
uninstall-toolexeclibLTLIBRARIES
|
||||||
|
|
||||||
|
|
||||||
|
vpath % $(strip $(search_path))
|
||||||
|
|
||||||
omp_lib_kinds.mod: omp_lib.mod
|
omp_lib_kinds.mod: omp_lib.mod
|
||||||
:
|
:
|
||||||
omp_lib.mod: omp_lib.f90
|
omp_lib.mod: omp_lib.f90
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2007-11-29 Andris Pavenis <andris.pavenis@iki.fi>
|
||||||
|
|
||||||
|
* src/Makefile.am: Use separate vpath lines for each path.
|
||||||
|
|
||||||
2007-11-28 Johannes Singler <singler@ira.uka.de>
|
2007-11-28 Johannes Singler <singler@ira.uka.de>
|
||||||
|
|
||||||
* include/parallel/multiway_merge.h: Destruct only elements that
|
* include/parallel/multiway_merge.h: Destruct only elements that
|
||||||
|
@ -182,7 +182,8 @@ sources = \
|
|||||||
${host_sources} \
|
${host_sources} \
|
||||||
${host_sources_extra}
|
${host_sources_extra}
|
||||||
|
|
||||||
VPATH = $(top_srcdir)/src:$(top_srcdir)
|
vpath % $(top_srcdir)/src
|
||||||
|
vpath % $(top_srcdir)
|
||||||
|
|
||||||
libstdc___la_SOURCES = $(sources)
|
libstdc___la_SOURCES = $(sources)
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
pkgdatadir = $(datadir)/@PACKAGE@
|
pkgdatadir = $(datadir)/@PACKAGE@
|
||||||
pkglibdir = $(libdir)/@PACKAGE@
|
pkglibdir = $(libdir)/@PACKAGE@
|
||||||
pkgincludedir = $(includedir)/@PACKAGE@
|
pkgincludedir = $(includedir)/@PACKAGE@
|
||||||
@ -115,7 +116,6 @@ DIST_SOURCES = $(am__libstdc___la_SOURCES_DIST)
|
|||||||
ETAGS = etags
|
ETAGS = etags
|
||||||
CTAGS = ctags
|
CTAGS = ctags
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
VPATH = $(top_srcdir)/src:$(top_srcdir)
|
|
||||||
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
|
ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
|
||||||
ACLOCAL = @ACLOCAL@
|
ACLOCAL = @ACLOCAL@
|
||||||
ALLOCATOR_H = @ALLOCATOR_H@
|
ALLOCATOR_H = @ALLOCATOR_H@
|
||||||
@ -242,13 +242,9 @@ USE_NLS = @USE_NLS@
|
|||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
WARN_FLAGS = @WARN_FLAGS@
|
WARN_FLAGS = @WARN_FLAGS@
|
||||||
WERROR = @WERROR@
|
WERROR = @WERROR@
|
||||||
ac_ct_AR = @ac_ct_AR@
|
|
||||||
ac_ct_AS = @ac_ct_AS@
|
|
||||||
ac_ct_CC = @ac_ct_CC@
|
ac_ct_CC = @ac_ct_CC@
|
||||||
ac_ct_CXX = @ac_ct_CXX@
|
ac_ct_CXX = @ac_ct_CXX@
|
||||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
|
||||||
ac_ct_STRIP = @ac_ct_STRIP@
|
|
||||||
am__leading_dot = @am__leading_dot@
|
am__leading_dot = @am__leading_dot@
|
||||||
am__tar = @am__tar@
|
am__tar = @am__tar@
|
||||||
am__untar = @am__untar@
|
am__untar = @am__untar@
|
||||||
@ -261,6 +257,9 @@ build_os = @build_os@
|
|||||||
build_vendor = @build_vendor@
|
build_vendor = @build_vendor@
|
||||||
check_msgfmt = @check_msgfmt@
|
check_msgfmt = @check_msgfmt@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
docdir = @docdir@
|
||||||
|
dvidir = @dvidir@
|
||||||
enable_shared = @enable_shared@
|
enable_shared = @enable_shared@
|
||||||
enable_static = @enable_static@
|
enable_static = @enable_static@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
@ -280,21 +279,25 @@ host_alias = @host_alias@
|
|||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_os = @host_os@
|
host_os = @host_os@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
|
htmldir = @htmldir@
|
||||||
includedir = @includedir@
|
includedir = @includedir@
|
||||||
infodir = @infodir@
|
infodir = @infodir@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
libexecdir = @libexecdir@
|
libexecdir = @libexecdir@
|
||||||
libtool_VERSION = @libtool_VERSION@
|
libtool_VERSION = @libtool_VERSION@
|
||||||
|
localedir = @localedir@
|
||||||
localstatedir = @localstatedir@
|
localstatedir = @localstatedir@
|
||||||
lt_ECHO = @lt_ECHO@
|
lt_ECHO = @lt_ECHO@
|
||||||
mandir = @mandir@
|
mandir = @mandir@
|
||||||
mkdir_p = @mkdir_p@
|
mkdir_p = @mkdir_p@
|
||||||
multi_basedir = @multi_basedir@
|
multi_basedir = @multi_basedir@
|
||||||
oldincludedir = @oldincludedir@
|
oldincludedir = @oldincludedir@
|
||||||
|
pdfdir = @pdfdir@
|
||||||
port_specific_symbol_files = @port_specific_symbol_files@
|
port_specific_symbol_files = @port_specific_symbol_files@
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
program_transform_name = @program_transform_name@
|
program_transform_name = @program_transform_name@
|
||||||
|
psdir = @psdir@
|
||||||
sbindir = @sbindir@
|
sbindir = @sbindir@
|
||||||
sharedstatedir = @sharedstatedir@
|
sharedstatedir = @sharedstatedir@
|
||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
@ -783,6 +786,9 @@ c++locale.cc: ${glibcxx_srcdir}/$(CLOCALE_CC)
|
|||||||
|
|
||||||
basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC)
|
basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC)
|
||||||
$(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_CC) ./$@ || true
|
$(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_CC) ./$@ || true
|
||||||
|
|
||||||
|
vpath % $(top_srcdir)/src
|
||||||
|
vpath % $(top_srcdir)
|
||||||
strstream.lo: strstream.cc
|
strstream.lo: strstream.cc
|
||||||
$(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
|
$(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
|
||||||
strstream.o: strstream.cc
|
strstream.o: strstream.cc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user