diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-06 21:26:23 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-06 21:26:23 +0000 |
commit | 07da521484d5a3159493068fd444b2e9878e8994 (patch) | |
tree | e4c225fd418923cdfb0f28cb9e681d9c5f368cf1 /configure.in | |
parent | b531302c309303ac837ca87e56556b12348ffa7b (diff) | |
download | gcc-07da521484d5a3159493068fd444b2e9878e8994.tar.gz |
* configure.in: Add --enable-libssp and --disable-libssp.
* configure: Regenerate with autoconf-2.13.
* gcc/doc/install.texi (--disable-libssp): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101668 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index d7d23243f03..6d3c11c19d2 100644 --- a/configure.in +++ b/configure.in @@ -307,6 +307,14 @@ if test "${ENABLE_LIBADA}" != "yes" ; then noconfigdirs="$noconfigdirs gnattools" fi +AC_ARG_ENABLE(libssp, +[ --enable-libssp Builds libssp directory], +ENABLE_LIBSSP=$enableval, +ENABLE_LIBSSP=yes) +if test "${ENABLE_LIBSSP}" != "yes" ; then + noconfigdirs="$noconfigdirs target-libssp" +fi + # Save it here so that, even in case of --enable-libgcj, if the Java # front-end isn't enabled, we still get libgcj disabled. libgcj_saved=$libgcj |