summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal/enable-shttpd.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-04-29 05:12:49 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-04-29 05:12:49 +0000
commite4f7ccb456a7d06d5fe9d5b6f634bfa8138e57b3 (patch)
treed6e7567dff61cd7206556b8ddf255848534edd49 /cpukit/aclocal/enable-shttpd.m4
parent2010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e4f7ccb456a7d06d5fe9d5b6f634bfa8138e57b3.tar.bz2
New.
Diffstat (limited to '')
-rw-r--r--cpukit/aclocal/enable-shttpd.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/cpukit/aclocal/enable-shttpd.m4 b/cpukit/aclocal/enable-shttpd.m4
new file mode 100644
index 0000000000..5398c5308a
--- /dev/null
+++ b/cpukit/aclocal/enable-shttpd.m4
@@ -0,0 +1,12 @@
+dnl $Id$
+
+AC_DEFUN([RTEMS_ENABLE_SHTTPD],
+[
+AC_ARG_ENABLE([shttpd],
+AS_HELP_STRING([--enable-shttpd],[enable (small httpd) shttpd (DEPRECATED)]),
+[case "${enableval}" in
+ yes) enable_shttpd=yes ;;
+ no) enable_shttpd=no ;;
+ *) AC_MSG_ERROR(bad value ${enableval} for enable-shttpd option) ;;
+esac],[enable_shttpd=no])
+])