summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-05-12 12:40:37 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-05-12 12:40:37 +0000
commitf321fdc83f43c1c01d5da6bf58a77baa7116ec75 (patch)
tree158567b00c2617960ae1a2fbd85e37f2c830b967
parent2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f321fdc83f43c1c01d5da6bf58a77baa7116ec75.tar.bz2
2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Let --enable-deprecated default to "no".
-rw-r--r--cpukit/ChangeLog1
-rw-r--r--cpukit/configure.ac4
2 files changed, 3 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 57c263a1cb..a9a381b01b 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,6 @@
2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>
+ * configure.ac: Let --enable-deprecated default to "no".
* libnetworking/net/if_arp.h: Remove BYTE_PACK.
* libnetworking/net/if_llc.h: Update from FreeBSD, add __packed.
* libnetworking/net/route.h: Partial update from FreeBSD.
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index fb7c2f911b..c0f5b5186c 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -70,8 +70,8 @@ AC_ARG_ENABLE([deprecated],
[case "${enable_deprecated}" in
yes) ;;
no) ;;
- *) enable_deprecated=yes ;;
-esac],[enable_deprecated=yes])
+ *) enable_deprecated=no ;;
+esac],[enable_deprecated=no])
AM_CONDITIONAL([DEPRECATED],[test "$enable_deprecated" = "yes"])
# HACK: We should use a feature-based configuration.