diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-29 00:13:12 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-29 00:13:12 +0000 |
commit | fc436f4fc7b1f0915c6ec849e02da10d3b2f57ed (patch) | |
tree | d65b0cd7c7a401e6c14fd317d17b5867949ff824 /m4 | |
parent | 0db2fea07d68b81162b4fa0b6be1a215de2acbb4 (diff) | |
download | ATCD-fc436f4fc7b1f0915c6ec849e02da10d3b2f57ed.tar.gz |
Accidentally broke "-mt" flag check. Fixed it.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/threads.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/m4/threads.m4 b/m4/threads.m4 index 7682bd40e71..d803402235b 100644 --- a/m4/threads.m4 +++ b/m4/threads.m4 @@ -51,6 +51,9 @@ dnl Check if compiler accepts specific flag to enable threads ace_save_CXXFLAGS="$CXXFLAGS" ace_save_CFLAGS="$CFLAGS" + CXXFLAGS="$CXXFLAGS -mt" + CFLAGS="$CFLAGS -mt" + ACE_CACHE_CHECK(if compiler can use -mt flag, ace_cv_feature_has_mt_flag, [ |