diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-03 00:41:34 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-03 00:41:34 +0000 |
commit | 72448b028fb01bea78e10e0599d3e6dac3d9c1d1 (patch) | |
tree | 8dfd99b70ff4208b0fa09f9555f5e45feb5a4c2b /m4 | |
parent | d6c727b84a30c05b30e0618f17c8b6e866494deb (diff) | |
download | ATCD-72448b028fb01bea78e10e0599d3e6dac3d9c1d1.tar.gz |
* m4/compiler.m4: Explicitly add the `-xildoff' flag to Sun CC's
LDFLAGS. This is just a precautionary measure. It shouldn't
be needed.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/compiler.m4 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/m4/compiler.m4 b/m4/compiler.m4 index 5b41ec125e7..32b76cc162f 100644 --- a/m4/compiler.m4 +++ b/m4/compiler.m4 @@ -160,6 +160,15 @@ AC_DEFUN(ACE_SET_COMPILER_FLAGS, dnl *sunos4*) ;; *solaris2*) + case "$CXX" in + CC) + CXXFLAGS="$CXXFLAGS" + ACE_CXXFLAGS="$ACE_CXXFLAGS" + DCXXFLAGS="$DCXXFLAGS" + OCXXFLAGS="$OCXXFLAGS" + LDFLAGS="$LDFLAGS -xildoff" + ;; + esac ;; *tandem*) ;; |