summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--configure.in5
-rw-r--r--src/ChangeLog2
-rw-r--r--src/s/gnu-kfreebsd.h2
-rw-r--r--src/s/openbsd.h5
5 files changed, 9 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index da39ee2e48d..13512bc13ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,8 @@
2012-06-12 Glenn Morris <rgm@gnu.org>
+ * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
+
* configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s.
* configure.in: Anticipate platforms with no src/s file.
diff --git a/configure.in b/configure.in
index 2750ccdcd54..19fa655bf22 100644
--- a/configure.in
+++ b/configure.in
@@ -3125,6 +3125,11 @@ case $opsys in
;;
esac
+case $opsys in
+ gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;;
+ openbsd) opsysfile="s/netbsd.h" ;;
+esac
+
# Set up the CFLAGS for real compilation, so we can substitute it.
CFLAGS="$REAL_CFLAGS"
CPPFLAGS="$REAL_CPPFLAGS"
diff --git a/src/ChangeLog b/src/ChangeLog
index 2c5bf632bdb..bc588517b29 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
2012-06-12 Glenn Morris <rgm@gnu.org>
+ * s/gnu-kfreebsd.h, s/openbsd.h: Remove files.
+
* s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
Move BROKEN_SIGIO to configure.
diff --git a/src/s/gnu-kfreebsd.h b/src/s/gnu-kfreebsd.h
deleted file mode 100644
index c1e5de5c7a7..00000000000
--- a/src/s/gnu-kfreebsd.h
+++ /dev/null
@@ -1,2 +0,0 @@
-#include "gnu-linux.h"
-
diff --git a/src/s/openbsd.h b/src/s/openbsd.h
deleted file mode 100644
index 8c44cf65cc6..00000000000
--- a/src/s/openbsd.h
+++ /dev/null
@@ -1,5 +0,0 @@
-/* System file for openbsd. */
-
-/* Nearly the same as NetBSD. Note there are differences in configure. */
-#include "netbsd.h"
-