diff options
| author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-13 01:58:37 +0000 |
|---|---|---|
| committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-13 01:58:37 +0000 |
| commit | b9ee5a08be7f3dde3796ab01c5fa4afa04479d2e (patch) | |
| tree | fe8f5a1e41acd5fcbf4051e5d5a70a43bbab584d | |
| parent | f073886543def29293e8f3bbfa700e5226802728 (diff) | |
| download | ppe42-gcc-b9ee5a08be7f3dde3796ab01c5fa4afa04479d2e.tar.gz ppe42-gcc-b9ee5a08be7f3dde3796ab01c5fa4afa04479d2e.zip | |
* config/darwin.h: Add include guards. Remove old, now incorrect,
comment about STANDARD_EXEC_PREFIX.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77746 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/config/darwin.h | 10 |
2 files changed, 8 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1d08e5309e7..7d843f9c12f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2004-02-12 Geoffrey Keating <geoffk@apple.com> + * config/darwin.h: Add include guards. Remove old, now incorrect, + comment about STANDARD_EXEC_PREFIX. + * Makefile.in (install-man): Use $(CPP_INSTALL_NAME) and $(GCOV_INSTALL_NAME) to install manpages. Remove generic rule for installing .1 manpages. Add rules for installing cpp diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 8d80b771b75..8cf92a096cd 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -20,6 +20,9 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef CONFIG_DARWIN_H +#define CONFIG_DARWIN_H + /* The definitions in this file are common to all processor types running Darwin, which is the kernel for Mac OS X. Darwin is basically a BSD user layer laid over a Mach kernel, then evolved @@ -30,11 +33,6 @@ Boston, MA 02111-1307, USA. */ /* Although NeXT ran on many different architectures, as of Jan 2001 the only supported Darwin targets are PowerPC and x86. */ -/* Technically, STANDARD_EXEC_PREFIX should be /usr/libexec/, but in - practice this makes it hard to install new compilers elsewhere, so - leave it undefined and expect system builders to set configure args - correctly. */ - /* One of Darwin's NeXT legacies is the Mach-O format, which is partly like a.out and partly like COFF, with additional features like multi-architecture binary support. */ @@ -831,3 +829,5 @@ enum machopic_addr_class { #define ASM_APP_ON "" #undef ASM_APP_OFF #define ASM_APP_OFF "" + +#endif /* CONFIG_DARWIN_H */ |

