2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>

* configure.ac: Let --enable-deprecated default to "no".
This commit is contained in:
Ralf Corsepius
2005-05-12 12:40:37 +00:00
parent ec5880b659
commit f321fdc83f
2 changed files with 3 additions and 2 deletions

View File

@@ -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.

View File

@@ -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.