diff options
author | obrien <obrien@FreeBSD.org> | 1999-06-28 09:07:17 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-06-28 09:07:17 +0000 |
commit | 2222cbc7d76f9510656d5021e796ff12868d1a24 (patch) | |
tree | 671381bbda5ae580adfd503b831b91e426d8060a /lang/gcc295 | |
parent | 746bb626583c8cbf454f76f25b1027708f96dcb0 (diff) | |
download | FreeBSD-ports-2222cbc7d76f9510656d5021e796ff12868d1a24.zip FreeBSD-ports-2222cbc7d76f9510656d5021e796ff12868d1a24.tar.gz |
Cleanup the FREEBSD_NATIVE stuff, which we don't use anymore in this context.
Diffstat (limited to 'lang/gcc295')
-rw-r--r-- | lang/gcc295/files/freebsd.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/lang/gcc295/files/freebsd.h b/lang/gcc295/files/freebsd.h index 0ec7426..fe538d1 100644 --- a/lang/gcc295/files/freebsd.h +++ b/lang/gcc295/files/freebsd.h @@ -81,40 +81,3 @@ Boston, MA 02111-1307, USA. */ /* Tell libgcc2.c that FreeBSD targets support atexit(3). */ #define HAVE_ATEXIT - - -/* FREEBSD_NATIVE is defined when gcc is integrated into the FreeBSD - source tree so it can be configured appropriately without using - the GNU configure/build mechanism. */ - -#ifdef FREEBSD_NATIVE - -/* Look for the include files in the system-defined places. */ - -#define GPLUSPLUS_INCLUDE_DIR "/usr/include/g++" -#define GCC_INCLUDE_DIR "/usr/include" - -/* Now that GCC knows what the include path applies to, put the G++ one first. - C++ can now have include files that override the default C ones. */ -#define INCLUDE_DEFAULTS \ - { \ - { GPLUSPLUS_INCLUDE_DIR, "C++", 1, 1 }, \ - { GCC_INCLUDE_DIR, "GCC", 0, 0 }, \ - { 0, 0, 0, 0 } \ - } - -/* Under FreeBSD, the normal location of the compiler back ends is the - /usr/libexec directory. */ - -#define STANDARD_EXEC_PREFIX "/usr/libexec/" -#define TOOLDIR_BASE_PREFIX "/usr/libexec/" - -/* Under FreeBSD, the normal location of the various *crt*.o files is the - /usr/lib directory. */ - -#define STANDARD_STARTFILE_PREFIX "/usr/lib/" - -/* FreeBSD is 4.4BSD derived */ -#define bsd4_4 - -#endif /* FREEBSD_NATIVE */ |