Commit 52a57250 by Benjamin Kosnik Committed by Benjamin Kosnik

acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Set glibcpp_srcdir amd…

acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Set glibcpp_srcdir amd glibcpp_prefixdir with absolute paths.


2001-05-18  Benjamin Kosnik  <bkoz@redhat.com>

	* acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Set glibcpp_srcdir
	amd glibcpp_prefixdir with absolute paths.

	* include/bits/c++config (__GLIBCPP__): Bump.
	* acinclude.m4 (GLIBCPP_CONFIGURE): Correct version number.

From-SVN: r42253
parent 132887fd
2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
* acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Set glibcpp_srcdir
amd glibcpp_prefixdir with absolute paths.
* include/bits/c++config (__GLIBCPP__): Bump.
* acinclude.m4 (GLIBCPP_CONFIGURE): Correct version number.
2001-05-18 Gabriel Dos Reis <gdr@codesourcery.com> 2001-05-18 Gabriel Dos Reis <gdr@codesourcery.com>
* include/bits/std_valarray.h (valarray<>::operator[] const): * include/bits/std_valarray.h (valarray<>::operator[] const):
......
...@@ -17,7 +17,7 @@ AC_DEFUN(GLIBCPP_CONFIGURE, [ ...@@ -17,7 +17,7 @@ AC_DEFUN(GLIBCPP_CONFIGURE, [
glibcpp_basedir=$auxdir/$1/libstdc++-v3 glibcpp_basedir=$auxdir/$1/libstdc++-v3
AC_SUBST(glibcpp_basedir) AC_SUBST(glibcpp_basedir)
AM_INIT_AUTOMAKE(libstdc++, 2.91) AM_INIT_AUTOMAKE(libstdc++, 2.92)
# Never versions of autoconf add an underscore to these functions. # Never versions of autoconf add an underscore to these functions.
# Prevent future problems ... # Prevent future problems ...
...@@ -1578,10 +1578,10 @@ glibcpp_toolexecdir=no ...@@ -1578,10 +1578,10 @@ glibcpp_toolexecdir=no
glibcpp_toolexeclibdir=no glibcpp_toolexeclibdir=no
# Export build and source directories. # Export build and source directories.
tmp_builddir=`pwd` # These need to be absolute paths, thus the use of pwd.
glibcpp_builddir=$tmp_builddir glibcpp_builddir=`pwd`
glibcpp_srcdir=${srcdir} glibcpp_srcdir=`cd ${srcdir} && pwd`
glibcpp_prefixdir=${prefix} glibcpp_prefixdir=`cd ${prefix} && pwd`
AC_MSG_CHECKING([for interface version number]) AC_MSG_CHECKING([for interface version number])
libstdcxx_interface=$INTERFACE libstdcxx_interface=$INTERFACE
......
...@@ -29,7 +29,7 @@ AC_DEFUN(GLIBCPP_CONFIGURE, [ ...@@ -29,7 +29,7 @@ AC_DEFUN(GLIBCPP_CONFIGURE, [
glibcpp_basedir=$auxdir/$1/libstdc++-v3 glibcpp_basedir=$auxdir/$1/libstdc++-v3
AC_SUBST(glibcpp_basedir) AC_SUBST(glibcpp_basedir)
AM_INIT_AUTOMAKE(libstdc++, 2.91) AM_INIT_AUTOMAKE(libstdc++, 2.92)
# Never versions of autoconf add an underscore to these functions. # Never versions of autoconf add an underscore to these functions.
# Prevent future problems ... # Prevent future problems ...
...@@ -1590,10 +1590,10 @@ glibcpp_toolexecdir=no ...@@ -1590,10 +1590,10 @@ glibcpp_toolexecdir=no
glibcpp_toolexeclibdir=no glibcpp_toolexeclibdir=no
# Export build and source directories. # Export build and source directories.
tmp_builddir=`pwd` # These need to be absolute paths, thus the use of pwd.
glibcpp_builddir=$tmp_builddir glibcpp_builddir=`pwd`
glibcpp_srcdir=${srcdir} glibcpp_srcdir=`cd ${srcdir} && pwd`
glibcpp_prefixdir=${prefix} glibcpp_prefixdir=`cd ${prefix} && pwd`
AC_MSG_CHECKING([for interface version number]) AC_MSG_CHECKING([for interface version number])
libstdcxx_interface=$INTERFACE libstdcxx_interface=$INTERFACE
......
...@@ -959,7 +959,7 @@ fi ...@@ -959,7 +959,7 @@ fi
PACKAGE=libstdc++ PACKAGE=libstdc++
VERSION=2.91 VERSION=2.92
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
...@@ -16498,10 +16498,10 @@ glibcpp_toolexecdir=no ...@@ -16498,10 +16498,10 @@ glibcpp_toolexecdir=no
glibcpp_toolexeclibdir=no glibcpp_toolexeclibdir=no
# Export build and source directories. # Export build and source directories.
tmp_builddir=`pwd` # These need to be absolute paths, thus the use of pwd.
glibcpp_builddir=$tmp_builddir glibcpp_builddir=`pwd`
glibcpp_srcdir=${srcdir} glibcpp_srcdir=`cd ${srcdir} && pwd`
glibcpp_prefixdir=${prefix} glibcpp_prefixdir=`cd ${prefix} && pwd`
echo $ac_n "checking for interface version number""... $ac_c" 1>&6 echo $ac_n "checking for interface version number""... $ac_c" 1>&6
echo "configure:16508: checking for interface version number" >&5 echo "configure:16508: checking for interface version number" >&5
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include <bits/os_defines.h> #include <bits/os_defines.h>
// The current version of the C++ library in compressed ISO date format. // The current version of the C++ library in compressed ISO date format.
#define __GLIBCPP__ 20010417 #define __GLIBCPP__ 20010517
// This is necessary until GCC supports separate template // This is necessary until GCC supports separate template
// compilation. // compilation.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment