configure.in (INTERFACE): Remove.
2002-06-26 Benjamin Kosnik <bkoz@redhat.com> * configure.in (INTERFACE): Remove. (release_VERSION): Remove. * acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Change include placement. (libstdcxx_interface): Change. Use gcc methods to determine version. * configure: Regenerate. * aclocal.m4: Regenerate. From-SVN: r55028
This commit is contained in:
parent
7692f832b4
commit
41970073a9
13 changed files with 1241 additions and 1253 deletions
|
@ -1,3 +1,12 @@
|
|||
2002-06-26 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* configure.in (INTERFACE): Remove.
|
||||
(release_VERSION): Remove.
|
||||
* acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Change include placement.
|
||||
(libstdcxx_interface): Change. Use gcc methods to determine version.
|
||||
* configure: Regenerate.
|
||||
* aclocal.m4: Regenerate.
|
||||
|
||||
2002-06-25 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* acinclude.m4 (GLIBCPP_CONFIGURE): Split out
|
||||
|
|
|
@ -130,7 +130,6 @@ gxx_include_dir = @gxx_include_dir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.3 cygnus
|
||||
|
|
|
@ -1809,10 +1809,6 @@ glibcpp_toolexecdir=no
|
|||
glibcpp_toolexeclibdir=no
|
||||
glibcpp_prefixdir=${prefix}
|
||||
|
||||
AC_MSG_CHECKING([for interface version number])
|
||||
libstdcxx_interface=$INTERFACE
|
||||
AC_MSG_RESULT($libstdcxx_interface)
|
||||
|
||||
# Process the option --with-gxx-include-dir=<path to include-files directory>
|
||||
AC_MSG_CHECKING([for --with-gxx-include-dir])
|
||||
AC_ARG_WITH(gxx-include-dir,
|
||||
|
@ -1844,26 +1840,30 @@ version_specific_libs=no)dnl
|
|||
# Option set, now we can test it.
|
||||
AC_MSG_RESULT($version_specific_libs)
|
||||
|
||||
# Get the gcc version number. This is lifted from gcc/configure.in
|
||||
AC_MSG_CHECKING([for gcc version number])
|
||||
changequote(,)dnl
|
||||
gcc_version_trigger=${srcdir}/../gcc/version.c
|
||||
gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
|
||||
gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
|
||||
changequote([,])dnl
|
||||
AC_MSG_RESULT($gcc_version)
|
||||
|
||||
# Default case for install directory for include files.
|
||||
if test $version_specific_libs = no && test $gxx_include_dir = no; then
|
||||
gxx_include_dir='$(prefix)'/include/c++/${gcc_version}
|
||||
fi
|
||||
|
||||
# Version-specific runtime libs processing.
|
||||
if test $version_specific_libs = yes; then
|
||||
# Need the gcc compiler version to know where to install libraries
|
||||
# and header files if --enable-version-specific-runtime-libs option
|
||||
# is selected.
|
||||
changequote(,)dnl
|
||||
gcc_version_trigger=${srcdir}/../gcc/version.c
|
||||
gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
|
||||
gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
|
||||
if test x"$gxx_include_dir" = x"no"; then
|
||||
gxx_include_dir='$(libdir)/gcc-lib/$(target_alias)/'${gcc_version}/include/g++
|
||||
gxx_include_dir='$(libdir)/gcc-lib/$(target_alias)/'${gcc_version}/include/c++
|
||||
fi
|
||||
glibcpp_toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
|
||||
glibcpp_toolexeclibdir='$(toolexecdir)/'${gcc_version}'$(MULTISUBDIR)'
|
||||
changequote([,])dnl
|
||||
fi
|
||||
|
||||
# Default case for install directory for include files.
|
||||
if test $version_specific_libs = no &&
|
||||
test $gxx_include_dir = no; then
|
||||
gxx_include_dir='$(prefix)'/include/g++-${libstdcxx_interface}
|
||||
fi
|
||||
|
||||
# Calculate glibcpp_toolexecdir, glibcpp_toolexeclibdir
|
||||
|
|
32
libstdc++-v3/aclocal.m4
vendored
32
libstdc++-v3/aclocal.m4
vendored
|
@ -1821,10 +1821,6 @@ glibcpp_toolexecdir=no
|
|||
glibcpp_toolexeclibdir=no
|
||||
glibcpp_prefixdir=${prefix}
|
||||
|
||||
AC_MSG_CHECKING([for interface version number])
|
||||
libstdcxx_interface=$INTERFACE
|
||||
AC_MSG_RESULT($libstdcxx_interface)
|
||||
|
||||
# Process the option --with-gxx-include-dir=<path to include-files directory>
|
||||
AC_MSG_CHECKING([for --with-gxx-include-dir])
|
||||
AC_ARG_WITH(gxx-include-dir,
|
||||
|
@ -1856,26 +1852,30 @@ version_specific_libs=no)dnl
|
|||
# Option set, now we can test it.
|
||||
AC_MSG_RESULT($version_specific_libs)
|
||||
|
||||
# Get the gcc version number. This is lifted from gcc/configure.in
|
||||
AC_MSG_CHECKING([for gcc version number])
|
||||
changequote(,)dnl
|
||||
gcc_version_trigger=${srcdir}/../gcc/version.c
|
||||
gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
|
||||
gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
|
||||
changequote([,])dnl
|
||||
AC_MSG_RESULT($gcc_version)
|
||||
|
||||
# Default case for install directory for include files.
|
||||
if test $version_specific_libs = no && test $gxx_include_dir = no; then
|
||||
gxx_include_dir='$(prefix)'/include/c++/${gcc_version}
|
||||
fi
|
||||
|
||||
# Version-specific runtime libs processing.
|
||||
if test $version_specific_libs = yes; then
|
||||
# Need the gcc compiler version to know where to install libraries
|
||||
# and header files if --enable-version-specific-runtime-libs option
|
||||
# is selected.
|
||||
changequote(,)dnl
|
||||
gcc_version_trigger=${srcdir}/../gcc/version.c
|
||||
gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([^\"]*\)\".*/\1/'`
|
||||
gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
|
||||
if test x"$gxx_include_dir" = x"no"; then
|
||||
gxx_include_dir='$(libdir)/gcc-lib/$(target_alias)/'${gcc_version}/include/g++
|
||||
gxx_include_dir='$(libdir)/gcc-lib/$(target_alias)/'${gcc_version}/include/c++
|
||||
fi
|
||||
glibcpp_toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
|
||||
glibcpp_toolexeclibdir='$(toolexecdir)/'${gcc_version}'$(MULTISUBDIR)'
|
||||
changequote([,])dnl
|
||||
fi
|
||||
|
||||
# Default case for install directory for include files.
|
||||
if test $version_specific_libs = no &&
|
||||
test $gxx_include_dir = no; then
|
||||
gxx_include_dir='$(prefix)'/include/g++-${libstdcxx_interface}
|
||||
fi
|
||||
|
||||
# Calculate glibcpp_toolexecdir, glibcpp_toolexeclibdir
|
||||
|
|
2407
libstdc++-v3/configure
vendored
2407
libstdc++-v3/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -12,9 +12,6 @@ ORIGINAL_LD_FOR_MULTILIBS=$LD
|
|||
|
||||
PACKAGE=libstdc++
|
||||
AC_SUBST(PACKAGE)
|
||||
# For typical GNU versioning info, format is MAJOR.MINOR.MICRO
|
||||
release_VERSION=3.1.1
|
||||
AC_SUBST(release_VERSION)
|
||||
# For libtool versioning info, format is CURRENT:REVISION:AGE
|
||||
libtool_VERSION=4:1:0
|
||||
AC_SUBST(libtool_VERSION)
|
||||
|
@ -378,9 +375,6 @@ else
|
|||
multilib_arg=
|
||||
fi
|
||||
|
||||
# Needed so that g++ can find the correct include subdir automatically.
|
||||
INTERFACE=v3
|
||||
|
||||
# Export all the install information
|
||||
GLIBCPP_EXPORT_INSTALL_INFO
|
||||
|
||||
|
|
|
@ -125,7 +125,6 @@ glibcpp_toolexeclibdir = @glibcpp_toolexeclibdir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.3 cygnus
|
||||
|
|
|
@ -127,7 +127,6 @@ gxx_include_dir = @gxx_include_dir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.3 cygnus
|
||||
|
|
|
@ -129,7 +129,6 @@ gxx_include_dir = @gxx_include_dir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.3 cygnus
|
||||
|
|
|
@ -125,7 +125,6 @@ gxx_include_dir = @gxx_include_dir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.3 cygnus
|
||||
|
|
|
@ -129,7 +129,6 @@ gxx_include_dir = @gxx_include_dir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
PACKAGE = @PACKAGE@
|
||||
|
|
|
@ -122,7 +122,6 @@ gxx_include_dir = @gxx_include_dir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
AUTOMAKE_OPTIONS = 1.3 cygnus
|
||||
|
|
|
@ -129,7 +129,6 @@ gxx_include_dir = @gxx_include_dir@
|
|||
ifGNUmake = @ifGNUmake@
|
||||
libio_la = @libio_la@
|
||||
libtool_VERSION = @libtool_VERSION@
|
||||
release_VERSION = @release_VERSION@
|
||||
toplevel_srcdir = @toplevel_srcdir@
|
||||
|
||||
AUTOMAKE_OPTIONS = cygnus dejagnu
|
||||
|
|
Loading…
Add table
Reference in a new issue