diff options
author | Ulrich Drepper <drepper@cygnus.com> | 1997-09-16 10:01:55 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-16 10:01:55 -0600 |
commit | e693cc28bbfeb1c1728bec4392505d2eba2b1090 (patch) | |
tree | 6f133200943f818cad1e94da16393eadfe8dd250 /libstdc++/configure.in | |
parent | 610ce97e654a9f2ed5e103bddd936988c5768538 (diff) | |
download | gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.zip gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.tar.gz gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.tar.bz2 |
Uli's libio/libstdc++ patches.
From-SVN: r15486
Diffstat (limited to 'libstdc++/configure.in')
-rw-r--r-- | libstdc++/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libstdc++/configure.in b/libstdc++/configure.in index 942c261..b67cef5 100644 --- a/libstdc++/configure.in +++ b/libstdc++/configure.in @@ -41,6 +41,11 @@ if [ "${shared}" = "yes" ]; then esac fi +# Make sure the right flags are defined for multi-threading. +case "${target}" in + *-*-linux-gnu) frags="${frags} linux.mt" ;; +esac + for frag in ${frags}; do frag=${srcdir}/config/$frag if [ -f ${frag} ]; then |