summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.configure7
-rw-r--r--configure2
-rw-r--r--configure.in2
3 files changed, 6 insertions, 5 deletions
diff --git a/README.configure b/README.configure
index 58e183ab35..96591913dd 100644
--- a/README.configure
+++ b/README.configure
@@ -22,7 +22,7 @@ RTEMS-specific option are supported:
--disable-rtems-inlines
--disable-posix
--disable-tests
- --disable-ka9q
+ --disable-networking
--enable-cxx
--enable-bare-cpu-model=<MODEL>
--enable-bare-cpu-cflags=<FLAGS>
@@ -40,8 +40,9 @@ used when configuring RTEMS installations:
By default, the RTEMS posix interface is built for targets that support
it. It can be disabled with the --disable-posix option.
-By default, the RTEMS port of the KA9Q TCP/IP stack is build for targets
-that support it. It can be disabled with the --disable-ka9q option.
+By default, the RTEMS networking support is built for targets which
+support it. It can be specifically disabled for those targets
+with the --disable-networking option.
By default, the RTEMS support of C++ is disabled. It can be enabled
with the --enable-cxx option. If the rtems++ C++ library is installed
diff --git a/configure b/configure
index 2e0f2886ac..a97caec424 100644
--- a/configure
+++ b/configure
@@ -1203,7 +1203,7 @@ rm -rf conftestdata
echo "$ac_t""$rtems_cv_prog_MKDIR_P" 1>&6
test "$rtems_cv_prog_MKDIR_P" = "yes" && MKDIR="$MKDIR -p"
-test "$rtems_cv_prog_MKDIR_M" = "yes" && MKDIR="$MKDIR -m 0755"
+#test "$rtems_cv_prog_MKDIR_M" = "yes" && MKDIR="$MKDIR -m 0755"
# Extract the first word of "touch", so it can be a program name with args.
set dummy touch; ac_word=$2
diff --git a/configure.in b/configure.in
index f6ddc6923f..774f32f10f 100644
--- a/configure.in
+++ b/configure.in
@@ -109,7 +109,7 @@ RTEMS_PATH_MKDIR
RTEMS_PROG_MKDIR_M
RTEMS_PROG_MKDIR_P
test "$rtems_cv_prog_MKDIR_P" = "yes" && MKDIR="$MKDIR -p"
-test "$rtems_cv_prog_MKDIR_M" = "yes" && MKDIR="$MKDIR -m 0755"
+#test "$rtems_cv_prog_MKDIR_M" = "yes" && MKDIR="$MKDIR -m 0755"
AC_PATH_PROG(TOUCH,touch)
AC_PATH_PROG(CMP,cmp)