diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-06-28 09:07:17 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-06-28 09:07:17 +0000 |
commit | 5796f2d63b120874297b7278d47392a3064eac60 (patch) | |
tree | ed2222c1e9284d30a07edaf2c87df53ec1849d7c /lang/gcc295 | |
parent | bb915d772a50970d8c7690baaabb9614b80c8042 (diff) | |
download | ports-5796f2d63b120874297b7278d47392a3064eac60.tar.gz ports-5796f2d63b120874297b7278d47392a3064eac60.zip |
Cleanup the FREEBSD_NATIVE stuff, which we don't use anymore in this context.
Notes
Notes:
svn path=/head/; revision=19866
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 0ec7426b5f30..fe538d18cb7c 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 */ |