diff options
author | deischen <deischen@FreeBSD.org> | 2003-09-21 07:59:16 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2003-09-21 07:59:16 +0000 |
commit | 4d5be919358b0052801ca4319ff7ac147d9b4469 (patch) | |
tree | d24400a0431de1d2d6b0a3041803e9261bff2ce3 /contrib | |
parent | 9982722580aabc9d8a1e963ad35a9f54e1365a69 (diff) | |
download | FreeBSD-src-4d5be919358b0052801ca4319ff7ac147d9b4469.zip FreeBSD-src-4d5be919358b0052801ca4319ff7ac147d9b4469.tar.gz |
The ports freeze may take longer than anticipated. Instead of
waiting for it to be delayed, temporarily back out the -pthread
removal until the freeze is lifted.
Freeze possibly taking longer than necessary: will
Requested by: kris
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/config/freebsd-spec.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/gcc/config/freebsd-spec.h b/contrib/gcc/config/freebsd-spec.h index fb3f8cc..63a56c0 100644 --- a/contrib/gcc/config/freebsd-spec.h +++ b/contrib/gcc/config/freebsd-spec.h @@ -159,10 +159,9 @@ is built with the --enable-threads configure-time option.} \ #include <sys/param.h> #if __FreeBSD_version >= 500016 #define FBSD_LIB_SPEC " \ - %{pthread: %eThe -pthread option is deprecated.} \ %{!shared: \ - %{!pg: -lc} \ - %{pg: -lc_p} \ + %{!pg: %{pthread:-lc_r} -lc} \ + %{pg: %{pthread:-lc_r_p} -lc_p} \ }" #else #define FBSD_LIB_SPEC " \ |