diff options
author | DJ Delorie <dj@redhat.com> | 2002-03-04 22:01:27 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2002-03-04 22:01:27 +0000 |
commit | 50d4562d6e3ff62db0b966f77837b54f09183c36 (patch) | |
tree | 8c81602855f28dcb34acdd08a36f113041d2799c /libiberty/configure.in | |
parent | 25e2787005c2139fd4d92b1c78ce170da77c1672 (diff) | |
download | fsf-binutils-gdb-50d4562d6e3ff62db0b966f77837b54f09183c36.zip fsf-binutils-gdb-50d4562d6e3ff62db0b966f77837b54f09183c36.tar.gz fsf-binutils-gdb-50d4562d6e3ff62db0b966f77837b54f09183c36.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index fb930e4..f37fdc7 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -205,6 +205,7 @@ fi setobjs= CHECK= +target_header_dir= if test -n "${with_target_subdir}"; then # We are being configured as a target library. AC_REPLACE_FUNCS @@ -239,6 +240,27 @@ if test -n "${with_target_subdir}"; then fi + # We may wish to install the target headers somewhere. + AC_ARG_ENABLE(install-libiberty, + [ --enable-install-libiberty Install headers for end users], + enable_install_libiberty=$enableval, + enable_install_libiberty=no)dnl + + # Option parsed, now set things appropriately. + case x"$enable_install_libiberty" in + xyes|x) + target_header_dir=libiberty + ;; + xno) + target_header_dir= + ;; + *) + # This could be sanity-checked in various ways... + target_header_dir="${enable_install_libiberty}" + ;; + esac + + else # Not a target library, so we set things up to run the test suite. @@ -247,6 +269,7 @@ else fi AC_SUBST(CHECK) +AC_SUBST(target_header_dir) case "${host}" in *-*-cygwin* | *-*-mingw*) |