diff options
| author | Glenn Morris | 2012-06-12 13:53:25 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-06-12 13:53:25 -0400 |
| commit | 0d3697298d82ee2ccfd0d316e29342224298df39 (patch) | |
| tree | 5ecc15015704bc036e29a7caec222a0bf79f9dc8 | |
| parent | 45fa9c0fbf53ff12f78991698ec996737072d66e (diff) | |
| download | emacs-0d3697298d82ee2ccfd0d316e29342224298df39.tar.gz emacs-0d3697298d82ee2ccfd0d316e29342224298df39.zip | |
Remove a couple of src/s files
* configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
* src/s/gnu-kfreebsd.h, src/s/openbsd.h: Remove files.
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | configure.in | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/s/gnu-kfreebsd.h | 2 | ||||
| -rw-r--r-- | src/s/openbsd.h | 5 |
5 files changed, 9 insertions, 7 deletions
| @@ -6,6 +6,8 @@ | |||
| 6 | 6 | ||
| 7 | 2012-06-12 Glenn Morris <rgm@gnu.org> | 7 | 2012-06-12 Glenn Morris <rgm@gnu.org> |
| 8 | 8 | ||
| 9 | * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd. | ||
| 10 | |||
| 9 | * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s. | 11 | * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s. |
| 10 | 12 | ||
| 11 | * configure.in: Anticipate platforms with no src/s file. | 13 | * 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 | |||
| 3125 | ;; | 3125 | ;; |
| 3126 | esac | 3126 | esac |
| 3127 | 3127 | ||
| 3128 | case $opsys in | ||
| 3129 | gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;; | ||
| 3130 | openbsd) opsysfile="s/netbsd.h" ;; | ||
| 3131 | esac | ||
| 3132 | |||
| 3128 | # Set up the CFLAGS for real compilation, so we can substitute it. | 3133 | # Set up the CFLAGS for real compilation, so we can substitute it. |
| 3129 | CFLAGS="$REAL_CFLAGS" | 3134 | CFLAGS="$REAL_CFLAGS" |
| 3130 | CPPFLAGS="$REAL_CPPFLAGS" | 3135 | 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 @@ | |||
| 1 | 2012-06-12 Glenn Morris <rgm@gnu.org> | 1 | 2012-06-12 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * s/gnu-kfreebsd.h, s/openbsd.h: Remove files. | ||
| 4 | |||
| 3 | * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h: | 5 | * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h: |
| 4 | Move BROKEN_SIGIO to configure. | 6 | Move BROKEN_SIGIO to configure. |
| 5 | 7 | ||
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 @@ | |||
| 1 | #include "gnu-linux.h" | ||
| 2 | |||
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 @@ | |||
| 1 | /* System file for openbsd. */ | ||
| 2 | |||
| 3 | /* Nearly the same as NetBSD. Note there are differences in configure. */ | ||
| 4 | #include "netbsd.h" | ||
| 5 | |||