summaryrefslogtreecommitdiff
path: root/lang/egcs
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-06-28 09:07:17 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-06-28 09:07:17 +0000
commit5796f2d63b120874297b7278d47392a3064eac60 (patch)
treeed2222c1e9284d30a07edaf2c87df53ec1849d7c /lang/egcs
parentChange PKGNAMEs to conform to guidelines. (diff)
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/egcs')
-rw-r--r--lang/egcs/files/freebsd.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/lang/egcs/files/freebsd.h b/lang/egcs/files/freebsd.h
index 0ec7426b5f30..fe538d18cb7c 100644
--- a/lang/egcs/files/freebsd.h
+++ b/lang/egcs/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 */