1169689Skan/* Operating system specific defines to be used when targeting GCC for any
2169689Skan   Solaris 2 system up to Solaris 2.6.
3169689Skan   Copyright 2004 Free Software Foundation, Inc.
4169689Skan
5169689SkanThis file is part of GCC.
6169689Skan
7169689SkanGCC is free software; you can redistribute it and/or modify
8169689Skanit under the terms of the GNU General Public License as published by
9169689Skanthe Free Software Foundation; either version 2, or (at your option)
10169689Skanany later version.
11169689Skan
12169689SkanGCC is distributed in the hope that it will be useful,
13169689Skanbut WITHOUT ANY WARRANTY; without even the implied warranty of
14169689SkanMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15169689SkanGNU General Public License for more details.
16169689Skan
17169689SkanYou should have received a copy of the GNU General Public License
18169689Skanalong with GCC; see the file COPYING.  If not, write to
19169689Skanthe Free Software Foundation, 51 Franklin Street, Fifth Floor,
20169689SkanBoston, MA 02110-1301, USA.  */
21169689Skan
22169689Skan#undef CPP_SUBTARGET_SPEC
23169689Skan#define CPP_SUBTARGET_SPEC "\
24169689Skan%{pthreads|pthread:-D_REENTRANT -D_PTHREADS95} \
25169689Skan%{!pthreads:%{!pthread:%{threads:-D_REENTRANT -D_SOLARIS_THREADS}}} \
26169689Skan%{compat-bsd:-iwithprefixbefore ucbinclude -I/usr/ucbinclude} \
27169689Skan"
28