forked from Imagelibrary/rtems
2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac, aclocal/enable-bare.m4, aclocal/enable-inlines.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rtems-debug.m4, aclocal/multi.m4, aclocal/multilib.m4: Use AS_HELP_STRING instead of AC_HELP_STRING (deprecated in autoconf-2.59) * automake/local.am: Remove clean-local, depend-gcc.
This commit is contained in:
@@ -1,3 +1,13 @@
|
|||||||
|
2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* configure.ac, aclocal/enable-bare.m4,
|
||||||
|
aclocal/enable-inlines.m4, aclocal/enable-itron.m4,
|
||||||
|
aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
|
||||||
|
aclocal/enable-posix.m4, aclocal/enable-rtems-debug.m4, aclocal/multi.m4,
|
||||||
|
aclocal/multilib.m4: Use AS_HELP_STRING instead of AC_HELP_STRING
|
||||||
|
(deprecated in autoconf-2.59)
|
||||||
|
* automake/local.am: Remove clean-local, depend-gcc.
|
||||||
|
|
||||||
2004-01-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2004-01-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* wrapup/Makefile.am: Cosmetics.
|
* wrapup/Makefile.am: Cosmetics.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
AC_DEFUN([RTEMS_ENABLE_BARE],
|
AC_DEFUN([RTEMS_ENABLE_BARE],
|
||||||
[
|
[
|
||||||
AC_ARG_ENABLE(bare-cpu-cflags,
|
AC_ARG_ENABLE(bare-cpu-cflags,
|
||||||
AC_HELP_STRING([--enable-bare-cpu-cflags],[specify a particular cpu cflag (bare bsp specific)]),
|
AS_HELP_STRING(--enable-bare-cpu-cflags,specify a particular cpu cflag (bare bsp specific)),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
no) BARE_CPU_CFLAGS="" ;;
|
no) BARE_CPU_CFLAGS="" ;;
|
||||||
*) BARE_CPU_CFLAGS="${enableval}" ;;
|
*) BARE_CPU_CFLAGS="${enableval}" ;;
|
||||||
@@ -9,7 +9,7 @@ esac],
|
|||||||
[BARE_CPU_CFLAGS=""])
|
[BARE_CPU_CFLAGS=""])
|
||||||
|
|
||||||
AC_ARG_ENABLE(bare-cpu-model,
|
AC_ARG_ENABLE(bare-cpu-model,
|
||||||
AC_HELP_STRING([--enable-bare-cpu-model],[specify a particular cpu model (bare bsp specific)]),
|
AS_HELP_STRING(--enable-bare-cpu-model,specify a particular cpu model (bare bsp specific)),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
no) BARE_CPU_MODEL="" ;;
|
no) BARE_CPU_MODEL="" ;;
|
||||||
*) BARE_CPU_MODEL="${enableval}" ;;
|
*) BARE_CPU_MODEL="${enableval}" ;;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ dnl $Id$
|
|||||||
|
|
||||||
AC_DEFUN([RTEMS_ENABLE_INLINES],
|
AC_DEFUN([RTEMS_ENABLE_INLINES],
|
||||||
[AC_ARG_ENABLE(rtems-inlines,
|
[AC_ARG_ENABLE(rtems-inlines,
|
||||||
AC_HELP_STRING([--enable-rtems-inlines],[enable RTEMS inline functions (default:enabled, disable to use macros)]),
|
AS_HELP_STRING(--enable-rtems-inlines,enable RTEMS inline functions (default:enabled, disable to use macros)),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) enable_rtems_inlines=yes ;;
|
yes) enable_rtems_inlines=yes ;;
|
||||||
no) enable_rtems_inlines=no ;;
|
no) enable_rtems_inlines=no ;;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ AC_DEFUN([RTEMS_ENABLE_ITRON],
|
|||||||
## AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl
|
## AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl
|
||||||
|
|
||||||
AC_ARG_ENABLE(itron,
|
AC_ARG_ENABLE(itron,
|
||||||
AC_HELP_STRING([--enable-itron],[enable itron interface]),
|
AS_HELP_STRING(--enable-itron,enable itron interface),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) RTEMS_HAS_ITRON_API=yes ;;
|
yes) RTEMS_HAS_ITRON_API=yes ;;
|
||||||
no) RTEMS_HAS_ITRON_API=no ;;
|
no) RTEMS_HAS_ITRON_API=no ;;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ dnl $Id$
|
|||||||
AC_DEFUN([RTEMS_ENABLE_MULTIPROCESSING],
|
AC_DEFUN([RTEMS_ENABLE_MULTIPROCESSING],
|
||||||
[
|
[
|
||||||
AC_ARG_ENABLE(multiprocessing,
|
AC_ARG_ENABLE(multiprocessing,
|
||||||
AC_HELP_STRING([--enable-multiprocessing],[enable multiprocessing interface]),
|
AS_HELP_STRING(--enable-multiprocessing,enable multiprocessing interface),
|
||||||
[case "${enable_multiprocessing}" in
|
[case "${enable_multiprocessing}" in
|
||||||
yes) ;;
|
yes) ;;
|
||||||
no) ;;
|
no) ;;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ AC_DEFUN([RTEMS_ENABLE_NETWORKING],
|
|||||||
## AC_BEFORE([$0], [RTEMS_CHECK_NETWORKING])dnl
|
## AC_BEFORE([$0], [RTEMS_CHECK_NETWORKING])dnl
|
||||||
|
|
||||||
AC_ARG_ENABLE(networking,
|
AC_ARG_ENABLE(networking,
|
||||||
AC_HELP_STRING([--enable-networking],[enable TCP/IP stack]),
|
AS_HELP_STRING(--enable-networking,enable TCP/IP stack),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) RTEMS_HAS_NETWORKING=yes ;;
|
yes) RTEMS_HAS_NETWORKING=yes ;;
|
||||||
no) RTEMS_HAS_NETWORKING=no ;;
|
no) RTEMS_HAS_NETWORKING=no ;;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ AC_DEFUN([RTEMS_ENABLE_POSIX],
|
|||||||
## AC_BEFORE([$0], [RTEMS_CHECK_POSIX_API])dnl
|
## AC_BEFORE([$0], [RTEMS_CHECK_POSIX_API])dnl
|
||||||
|
|
||||||
AC_ARG_ENABLE(posix,
|
AC_ARG_ENABLE(posix,
|
||||||
AC_HELP_STRING([--enable-posix],[enable posix interface]),
|
AS_HELP_STRING(--enable-posix,enable posix interface),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) RTEMS_HAS_POSIX_API=yes ;;
|
yes) RTEMS_HAS_POSIX_API=yes ;;
|
||||||
no) RTEMS_HAS_POSIX_API=no ;;
|
no) RTEMS_HAS_POSIX_API=no ;;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
AC_DEFUN([RTEMS_ENABLE_RTEMS_DEBUG],
|
AC_DEFUN([RTEMS_ENABLE_RTEMS_DEBUG],
|
||||||
[
|
[
|
||||||
AC_ARG_ENABLE(rtems-debug,
|
AC_ARG_ENABLE(rtems-debug,
|
||||||
AC_HELP_STRING([--enable-rtems-debug],[enable RTEMS_DEBUG]),
|
AS_HELP_STRING(--enable-rtems-debug,enable RTEMS_DEBUG),
|
||||||
[case "${enable_rtems_debug}" in
|
[case "${enable_rtems_debug}" in
|
||||||
yes) enable_rtems_debug=yes ;;
|
yes) enable_rtems_debug=yes ;;
|
||||||
no) enable_rtems_debug=no ;;
|
no) enable_rtems_debug=no ;;
|
||||||
|
|||||||
@@ -3,8 +3,7 @@
|
|||||||
AC_DEFUN([AC_ENABLE_MULTILIB],
|
AC_DEFUN([AC_ENABLE_MULTILIB],
|
||||||
[
|
[
|
||||||
AC_ARG_ENABLE(multilib,
|
AC_ARG_ENABLE(multilib,
|
||||||
AC_HELP_STRING([--enable-multilib],
|
AS_HELP_STRING(--enable-multilib,build many library versions (default=no)),
|
||||||
[build many library versions (default=no)]),
|
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) multilib=yes ;;
|
yes) multilib=yes ;;
|
||||||
no) multilib=no ;;
|
no) multilib=no ;;
|
||||||
|
|||||||
@@ -1,17 +1,14 @@
|
|||||||
dnl This provides configure definitions used for multilib support
|
dnl This provides configure definitions used for multilib support
|
||||||
|
|
||||||
dnl parts of these macros are derived from newlib-1.8.2's multilib support
|
|
||||||
|
|
||||||
AC_DEFUN([RTEMS_ENABLE_MULTILIB],
|
AC_DEFUN([RTEMS_ENABLE_MULTILIB],
|
||||||
[
|
[
|
||||||
AC_ARG_ENABLE(multilib,
|
AC_ARG_ENABLE(multilib,
|
||||||
AC_HELP_STRING([--enable-multilib],
|
AS_HELP_STRING(--enable-multilib,build many library versions (default=no)),
|
||||||
[build many library versions (default=no)]),
|
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) multilib=yes ;;
|
yes) multilib=yes ;;
|
||||||
no) multilib=no ;;
|
no) multilib=no ;;
|
||||||
*) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
|
*) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
|
||||||
esac], [multilib=no])dnl
|
esac], [multilib=no])dnl
|
||||||
|
|
||||||
AM_CONDITIONAL(MULTILIB,test x"${multilib}" = x"yes")
|
AM_CONDITIONAL([MULTILIB],[test x"${multilib}" = x"yes"])
|
||||||
])
|
])
|
||||||
|
|||||||
@@ -4,11 +4,7 @@ preinstall-am: $(PREINSTALL_FILES)
|
|||||||
preinstall: preinstall-am
|
preinstall: preinstall-am
|
||||||
.PHONY: preinstall preinstall-am
|
.PHONY: preinstall preinstall-am
|
||||||
|
|
||||||
depend-am: depend-gcc
|
depend-am:
|
||||||
depend: depend-am
|
depend: depend-am
|
||||||
.PHONY: depend depend-am depend-gcc
|
.PHONY: depend depend-am
|
||||||
|
|
||||||
clean-local:
|
|
||||||
$(RM) -r o-optimize o-debug $(CLEANDIRS)
|
|
||||||
$(RM) Depends-o-optimize.tmp Depends-o-debug.tmp
|
|
||||||
|
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ AC_MSG_RESULT([$LIBRPC])
|
|||||||
])
|
])
|
||||||
|
|
||||||
AC_ARG_ENABLE([ada],
|
AC_ARG_ENABLE([ada],
|
||||||
[AC_HELP_STRING([--enable-ada],[enable ada support])],
|
[AS_HELP_STRING(--enable-ada,enable ada support)],
|
||||||
[case "${enable_ada}" in
|
[case "${enable_ada}" in
|
||||||
yes) ;;
|
yes) ;;
|
||||||
no) ;;
|
no) ;;
|
||||||
|
|||||||
Reference in New Issue
Block a user