diff options
| author | Glenn Morris | 2012-07-29 23:18:28 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-07-29 23:18:28 -0700 |
| commit | d34d6ffc97bea4bc246b1f764f9d9ecdf169e0c2 (patch) | |
| tree | e50a15baa544a0acac2b452be544d0ac6471bf69 | |
| parent | dc5493f11d93f4a97ebc37dac5df286746496bf8 (diff) | |
| download | emacs-d34d6ffc97bea4bc246b1f764f9d9ecdf169e0c2.tar.gz emacs-d34d6ffc97bea4bc246b1f764f9d9ecdf169e0c2.zip | |
Remove some empty src/s files.
* configure.ac (opsysfile): Set to empty on freebsd, gnu-linux,
gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware.
* src/s/freebsd.h, src/s/gnu-linux.h, src/s/sol2-6.h, src/s/unixware.h:
Remove empty files.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/s/freebsd.h | 22 | ||||
| -rw-r--r-- | src/s/gnu-linux.h | 22 | ||||
| -rw-r--r-- | src/s/sol2-6.h | 21 | ||||
| -rw-r--r-- | src/s/unixware.h | 20 |
7 files changed, 14 insertions, 87 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-07-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.ac (opsysfile): Set to empty on freebsd, gnu-linux, | ||
| 4 | gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware. | ||
| 5 | |||
| 1 | 2012-07-30 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-07-30 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Merge from gnulib, incorporating: | 8 | Merge from gnulib, incorporating: |
diff --git a/configure.ac b/configure.ac index b43087a0aa3..cd730251ba4 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -3677,6 +3677,7 @@ case $opsys in | |||
| 3677 | ;; | 3677 | ;; |
| 3678 | 3678 | ||
| 3679 | freebsd) | 3679 | freebsd) |
| 3680 | opsysfile= | ||
| 3680 | AC_DEFINE(BSD4_2, []) | 3681 | AC_DEFINE(BSD4_2, []) |
| 3681 | dnl Hack to avoid calling AC_PREPROC_IFELSE multiple times. | 3682 | dnl Hack to avoid calling AC_PREPROC_IFELSE multiple times. |
| 3682 | dnl Would not be needed with autoconf >= 2.67, where the | 3683 | dnl Would not be needed with autoconf >= 2.67, where the |
| @@ -3694,6 +3695,7 @@ case $opsys in | |||
| 3694 | ;; | 3695 | ;; |
| 3695 | 3696 | ||
| 3696 | gnu-linux | gnu-kfreebsd ) | 3697 | gnu-linux | gnu-kfreebsd ) |
| 3698 | opsysfile= | ||
| 3697 | AC_DEFINE(USG, []) | 3699 | AC_DEFINE(USG, []) |
| 3698 | AC_DEFINE(GNU_LINUX, [], [Define if ths system is compatible with GNU/Linux.]) | 3700 | AC_DEFINE(GNU_LINUX, [], [Define if ths system is compatible with GNU/Linux.]) |
| 3699 | ;; | 3701 | ;; |
| @@ -3711,12 +3713,14 @@ case $opsys in | |||
| 3711 | ;; | 3713 | ;; |
| 3712 | 3714 | ||
| 3713 | sol2*) | 3715 | sol2*) |
| 3716 | opsysfile="s/usg5-4-common.h" | ||
| 3714 | AC_DEFINE(USG, []) | 3717 | AC_DEFINE(USG, []) |
| 3715 | AC_DEFINE(USG5, []) | 3718 | AC_DEFINE(USG5, []) |
| 3716 | AC_DEFINE(SOLARIS2, [], [Define if the system is Solaris.]) | 3719 | AC_DEFINE(SOLARIS2, [], [Define if the system is Solaris.]) |
| 3717 | ;; | 3720 | ;; |
| 3718 | 3721 | ||
| 3719 | unixware) | 3722 | unixware) |
| 3723 | opsysfile="s/usg5-4-common.h" | ||
| 3720 | AC_DEFINE(USG, []) | 3724 | AC_DEFINE(USG, []) |
| 3721 | AC_DEFINE(USG5, []) | 3725 | AC_DEFINE(USG5, []) |
| 3722 | ;; | 3726 | ;; |
| @@ -3736,8 +3740,6 @@ case $opsys in | |||
| 3736 | 3740 | ||
| 3737 | gnu) opsysfile= ;; | 3741 | gnu) opsysfile= ;; |
| 3738 | 3742 | ||
| 3739 | gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;; | ||
| 3740 | |||
| 3741 | hpux11) | 3743 | hpux11) |
| 3742 | dnl See comments in sysdep.c:sys_signal. | 3744 | dnl See comments in sysdep.c:sys_signal. |
| 3743 | dnl SA_RESTART resets the timeout of `select' on hpux11. | 3745 | dnl SA_RESTART resets the timeout of `select' on hpux11. |
diff --git a/src/ChangeLog b/src/ChangeLog index 6825a22c08a..913c3bc865d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-07-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h: | ||
| 4 | Remove empty files. | ||
| 5 | |||
| 1 | 2012-07-30 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-07-30 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Export to GDB most of lisp.h's remaining object-like macros. | 8 | Export to GDB most of lisp.h's remaining object-like macros. |
diff --git a/src/s/freebsd.h b/src/s/freebsd.h deleted file mode 100644 index 9177403f426..00000000000 --- a/src/s/freebsd.h +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | /* System description header for FreeBSD systems. | ||
| 2 | |||
| 3 | Copyright (C) 1994-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | Author: Shawn M. Carey | ||
| 6 | (according to authors.el) | ||
| 7 | |||
| 8 | This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 11 | it under the terms of the GNU General Public License as published by | ||
| 12 | the Free Software Foundation, either version 3 of the License, or | ||
| 13 | (at your option) any later version. | ||
| 14 | |||
| 15 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | GNU General Public License for more details. | ||
| 19 | |||
| 20 | You should have received a copy of the GNU General Public License | ||
| 21 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 22 | |||
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h deleted file mode 100644 index 2847fd6d19c..00000000000 --- a/src/s/gnu-linux.h +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | /* This file is the configuration file for Linux-based GNU systems | ||
| 2 | |||
| 3 | Copyright (C) 1985-1986, 1992, 1994, 1996, 1999, 2001-2012 | ||
| 4 | Free Software Foundation, Inc. | ||
| 5 | |||
| 6 | This file was put together by Michael K. Johnson and Rik Faith. | ||
| 7 | |||
| 8 | This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 11 | it under the terms of the GNU General Public License as published by | ||
| 12 | the Free Software Foundation, either version 3 of the License, or | ||
| 13 | (at your option) any later version. | ||
| 14 | |||
| 15 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | GNU General Public License for more details. | ||
| 19 | |||
| 20 | You should have received a copy of the GNU General Public License | ||
| 21 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 22 | |||
diff --git a/src/s/sol2-6.h b/src/s/sol2-6.h deleted file mode 100644 index 3bed55598b7..00000000000 --- a/src/s/sol2-6.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | /* Definitions file for GNU Emacs running on Solaris 2.6. | ||
| 2 | |||
| 3 | Copyright (C) 1999-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | #include "usg5-4-common.h" | ||
| 21 | |||
diff --git a/src/s/unixware.h b/src/s/unixware.h deleted file mode 100644 index 59c74a56f4e..00000000000 --- a/src/s/unixware.h +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | /* s/ file for Unixware. | ||
| 2 | |||
| 3 | Copyright (C) 1999-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | #include "usg5-4-common.h" | ||