Module Name:    src
Committed By:   maya
Date:           Sun Apr  7 14:08:35 UTC 2019

Modified Files:
        src/external/gpl3/gcc/dist/gcc: config.gcc

Log Message:
Make the post-netbsd 2.0 case the only case. NFC.

(Reducing diff to upstream)


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/external/gpl3/gcc/dist/gcc/config.gcc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/gcc/config.gcc
diff -u src/external/gpl3/gcc/dist/gcc/config.gcc:1.52 src/external/gpl3/gcc/dist/gcc/config.gcc:1.53
--- src/external/gpl3/gcc/dist/gcc/config.gcc:1.52	Tue Mar 19 23:55:28 2019
+++ src/external/gpl3/gcc/dist/gcc/config.gcc	Sun Apr  7 14:08:35 2019
@@ -797,32 +797,14 @@ case ${target} in
   gas=yes
   gnu_ld=yes
   use_gcc_stdint=wrap
-
-  # NetBSD 2.0 and later get POSIX threads enabled by default.
-  # Allow them to be explicitly enabled on any other version.
   case ${enable_threads} in
-    "")
-      case ${target} in
-        *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
-          thread_file='posix'
-          tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
-          ;;
-      esac
-      ;;
-    yes | posix)
+    "" | yes | posix)
       thread_file='posix'
       tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
       ;;
   esac
-
-  # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
-  # default (unless overridden by --disable-__cxa_atexit).
-  case ${target} in
-    *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
-      default_use_cxa_atexit=yes
-      ;;
-  esac
   nbsd_tm_file="${nbsd_tm_file} netbsd.h netbsd-stdint.h netbsd-elf.h"
+  default_use_cxa_atexit=yes
   ;;
 *-*-openbsd*)
   tmake_file="t-openbsd"

Reply via email to