summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-13 15:49:18 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-13 15:49:18 +0000
commitcd2fcd516ea9e8408a25c07c451c946cc4b0cb1b (patch)
treed08afb6c076a627328f47eb591c08e9a304e5647 /make
parent2004-04-13 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-cd2fcd516ea9e8408a25c07c451c946cc4b0cb1b.tar.bz2
2004-04-13 Ralf Corsepius <ralf_corsepius@rtems.org>
* custom/FreeBSD-posix.cfg: Remove LIBC_DEFINES (Meaningless with FreeBSD and now unused). * custom/Solaris-posix.cfg: Add -D__EXTENSIONS__ to CPU_CFLAGS.
Diffstat (limited to 'make')
-rw-r--r--make/ChangeLog6
-rw-r--r--make/custom/FreeBSD-posix.cfg2
-rw-r--r--make/custom/Solaris-posix.cfg2
3 files changed, 7 insertions, 3 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index fa432de91a..15eb5cbec8 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-13 Ralf Corsepius <ralf_corsepius@rtems.org>
+
+ * custom/FreeBSD-posix.cfg: Remove LIBC_DEFINES (Meaningless
+ with FreeBSD and now unused).
+ * custom/Solaris-posix.cfg: Add -D__EXTENSIONS__ to CPU_CFLAGS.
+
2004-04-12 David Querbach <querbach@realtime.bc.ca>
* custom/ss555.cfg: New file.
diff --git a/make/custom/FreeBSD-posix.cfg b/make/custom/FreeBSD-posix.cfg
index b44239bf4f..2509a028a7 100644
--- a/make/custom/FreeBSD-posix.cfg
+++ b/make/custom/FreeBSD-posix.cfg
@@ -11,8 +11,6 @@ RTEMS_BSP_FAMILY=posix
include $(RTEMS_ROOT)/make/custom/default.cfg
-LIBC_DEFINES =-D_POSIX_C_SOURCE
-
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS
CFLAGS_OPTIMIZE_V = -O2
diff --git a/make/custom/Solaris-posix.cfg b/make/custom/Solaris-posix.cfg
index 3d872e1ebb..82bbc30e3d 100644
--- a/make/custom/Solaris-posix.cfg
+++ b/make/custom/Solaris-posix.cfg
@@ -14,7 +14,7 @@ RTEMS_BSP_FAMILY=posix
include $(RTEMS_ROOT)/make/custom/default.cfg
-CPU_CFLAGS += -Dsolaris2
+CPU_CFLAGS += -Dsolaris2 -D__EXTENSIONS__
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS