Corrected typo where "+ " was pasted in from another window.

Added c/src/lib/libbsp/m68k/mvme162/consolex/Makefile to list.
This commit is contained in:
Joel Sherrill
1997-08-01 20:22:29 +00:00
parent adf7b5c4ba
commit 3f70e3cb93
2 changed files with 20 additions and 14 deletions

28
configure vendored
View File

@@ -27,7 +27,7 @@ ac_help="$ac_help
--disable-rtems-inlines disable RTEMS inline functions (use macros)"
ac_help="$ac_help
\
+ --enable-cpp enable C++ support, and build the rtems++ library"
--enable-cpp enable C++ support, and build the rtems++ library"
ac_help="$ac_help
\
--enable-gcc28 enable use of gcc 2.8.x features"
@@ -668,6 +668,7 @@ c/src/lib/libbsp/m68k/mvme147s/wrapup/Makefile \
c/src/lib/libbsp/m68k/mvme162/Makefile \
c/src/lib/libbsp/m68k/mvme162/clock/Makefile \
c/src/lib/libbsp/m68k/mvme162/console/Makefile \
c/src/lib/libbsp/m68k/mvme162/consolex/Makefile \
c/src/lib/libbsp/m68k/mvme162/include/Makefile \
c/src/lib/libbsp/m68k/mvme162/startup/Makefile \
c/src/lib/libbsp/m68k/mvme162/timer/Makefile \
@@ -977,7 +978,7 @@ c/src/tests/tools/unix/Makefile \
c/src/tests/tools/unix/posix/Makefile"
echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
echo "configure:981: checking whether ${MAKE-make} sets \${MAKE}" >&5
echo "configure:982: checking whether ${MAKE-make} sets \${MAKE}" >&5
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
@@ -1050,7 +1051,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
fi
echo $ac_n "checking host system type""... $ac_c" 1>&6
echo "configure:1054: checking host system type" >&5
echo "configure:1055: checking host system type" >&5
host_alias=$host
case "$host_alias" in
@@ -1071,7 +1072,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo "$ac_t""$host" 1>&6
echo $ac_n "checking target system type""... $ac_c" 1>&6
echo "configure:1075: checking target system type" >&5
echo "configure:1076: checking target system type" >&5
target_alias=$target
case "$target_alias" in
@@ -1089,7 +1090,7 @@ target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo "$ac_t""$target" 1>&6
echo $ac_n "checking build system type""... $ac_c" 1>&6
echo "configure:1093: checking build system type" >&5
echo "configure:1094: checking build system type" >&5
build_alias=$build
case "$build_alias" in
@@ -1175,16 +1176,19 @@ else
fi
+ # Check whether --enable-cpp or --disable-cpp was given.
# Check whether --enable-cpp or --disable-cpp was given.
if test "${enable_cpp+set}" = set; then
enableval="$enable_cpp"
\
yes
fi
RTEMS_HAS_CPLUSPLUS=yes ;;
case "${enableval}" in
yes) RTEMS_HAS_CPLUSPLUS=yes ;;
no) RTEMS_HAS_CPLUSPLUS=no ;;
*) { echo "configure: error: bad value ${enableval} for enable-cpp option" 1>&2; exit 1; } ;;
esac],RTEMS_HAS_CPLUSPLUS=no)
esac
else
RTEMS_HAS_CPLUSPLUS=no
fi
# Check whether --enable-gcc28 or --disable-gcc28 was given.
if test "${enable_gcc28+set}" = set; then
@@ -1305,7 +1309,7 @@ do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
echo "configure:1309: checking for $ac_word" >&5
echo "configure:1313: checking for $ac_word" >&5
if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@@ -1334,7 +1338,7 @@ test -n "$AWK" && break
done
echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
echo "configure:1338: checking whether ln -s works" >&5
echo "configure:1342: checking whether ln -s works" >&5
if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else

View File

@@ -119,6 +119,7 @@ c/src/lib/libbsp/m68k/mvme147s/wrapup/Makefile \
c/src/lib/libbsp/m68k/mvme162/Makefile \
c/src/lib/libbsp/m68k/mvme162/clock/Makefile \
c/src/lib/libbsp/m68k/mvme162/console/Makefile \
c/src/lib/libbsp/m68k/mvme162/consolex/Makefile \
c/src/lib/libbsp/m68k/mvme162/include/Makefile \
c/src/lib/libbsp/m68k/mvme162/startup/Makefile \
c/src/lib/libbsp/m68k/mvme162/timer/Makefile \
@@ -465,8 +466,9 @@ AC_ARG_ENABLE(rtems-inlines, \
*) AC_MSG_ERROR(bad value ${enableval} for disable-rtems-inlines option) ;;
esac],[RTEMS_USE_MACROS=no])
+ AC_ARG_ENABLE(cpp, \
+ [ --enable-cpp enable C++ support, and build the rtems++ library], \
AC_ARG_ENABLE(cpp, \
[ --enable-cpp enable C++ support, and build the rtems++ library], \
[case "${enableval}" in
yes) RTEMS_HAS_CPLUSPLUS=yes ;;
no) RTEMS_HAS_CPLUSPLUS=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for enable-cpp option) ;;