diff options
author | H.J. Lu <hjl@gnu.org> | 1999-04-02 14:17:49 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-02 07:17:49 -0700 |
commit | 88101ab976e7d4f0df929ec525f6c576f7f22391 (patch) | |
tree | cbb6578d43ea22467a008e492c4f33e302b59ba8 /configure | |
parent | 09b893bba75609fa03a01600d46b001c288ba2f8 (diff) | |
download | gcc-88101ab976e7d4f0df929ec525f6c576f7f22391.tar.gz |
configure (gxx_include_dir): Removed.
* configure (gxx_include_dir): Removed.
* configure.in (gxx_include_dir): Handle it.
* Makefile.in: Likewise.
* libio/configure.in (gxx_include_dir): Handle it.
* libio/Makefile.in: Likewise.
* libstdc++/configure.in (gxx_include_dir): Handle it.
* libstdc++/Makefile.in: Likewise.
From-SVN: r26126
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/configure b/configure index 8031282ed99..a7d3cb8b1e2 100755 --- a/configure +++ b/configure @@ -1331,35 +1331,6 @@ EOF echo site_makefile_frag = ${invsubdir}${site_makefile_frag} >>${Makefile} fi - # provide a proper gxx_include_dir to all subdirs. - # Note, if you change the default, make sure to fix both here - # and in the gcc subdirectory. - # Check whether --with-gxx-include-dir or --without-gxx-include-dir was given. - gxx_include_dir= - if test -n "${with_gxx_include_dir}"; then - case "${with_gxx_include_dir}" in - yes ) - echo "configure: error: bad value ${withval} given for g++ include directory" 1>&2 - exit 1 - ;; - no ) - ;; - * ) - gxx_include_dir=${with_gxx_include_dir} - ;; - esac - fi - if test x${gxx_include_dir} = x; then - if test x${enable_version_specific_runtime_libs} = xyes; then - echo gxx_include_dir = '${libsubdir}/include/g++' >> ${Makefile} - else - . ${topsrcdir}/config.if - echo gxx_include_dir = '${prefix}/include/g++'-${libstdcxx_interface} >> ${Makefile} - fi - else - echo gxx_include_dir = ${gxx_include_dir} >> ${Makefile} - fi - # record if we want to build shared libs. if test -z "${enable_shared}"; then echo enable_shared = no >> ${Makefile} |