[svn-r1372] Set enable-shared to no by default for TFLOPS and IRIX64 systems.

Shared lib and libtool are not working for them yet.
Users can still force enable-shared on by "configure -enable-shared ..."
This commit is contained in:
Albert Cheng 1999-06-23 18:24:17 -05:00
parent c78a6aedaf
commit aa8fd173a8
2 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,8 @@ PROD_CPPFLAGS=
PROFILE_CFLAGS=-pg
PROFILE_CPPFLAGS=
# Turn off shared lib option. It does not work for TFLOPS yet.
enable_shared="${enable_shared:-no}"
# Set this to the width required by printf() to print type `long
# long'. For instance, if the format would be `%lld' then set it to

View File

@ -80,5 +80,8 @@ case "X-$CC_BASENAME" in
# Extra profiling flags
PROFILE_CFLAGS=-pg
PROFILE_CPPFLAGS=
# Turn off shared lib option. It does not work for IRIX64 yet.
test `uname -s` = IRIX64 && enable_shared="${enable_shared:-no}"
;;
esac