change log for rtems (2010-04-29)
rtems-vc at rtems.org
rtems-vc at rtems.org
Thu Apr 29 06:11:37 UTC 2010
*ralf*:
New.
A 1.1 cpukit/aclocal/enable-httpd.m4
A 1.1 cpukit/aclocal/enable-shttpd.m4
diff -u /dev/null rtems/cpukit/aclocal/enable-httpd.m4:1.1
--- /dev/null Thu Apr 29 01:11:34 2010
+++ rtems/cpukit/aclocal/enable-httpd.m4 Thu Apr 29 00:12:49 2010
@@ -0,0 +1,12 @@
+dnl $Id$
+
+AC_DEFUN([RTEMS_ENABLE_HTTPD],
+[
+AC_ARG_ENABLE([httpd],
+AS_HELP_STRING([--enable-httpd],[enable (GoAhead) httpd (DEPRECATED)]),
+[case "${enableval}" in
+ yes) enable_httpd=yes ;;
+ no) enable_httpd=no ;;
+ *) AC_MSG_ERROR(bad value ${enableval} for enable-httpd option) ;;
+esac],[enable_httpd=no])
+])
diff -u /dev/null rtems/cpukit/aclocal/enable-shttpd.m4:1.1
--- /dev/null Thu Apr 29 01:11:35 2010
+++ rtems/cpukit/aclocal/enable-shttpd.m4 Thu Apr 29 00:12:49 2010
@@ -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])
+])
*ralf*:
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
* aclocal/enable-httpd.m4, aclocal/enable-shttpd.m4: New.
M 1.2273 cpukit/ChangeLog
diff -u rtems/cpukit/ChangeLog:1.2272 rtems/cpukit/ChangeLog:1.2273
--- rtems/cpukit/ChangeLog:1.2272 Wed Apr 28 22:13:13 2010
+++ rtems/cpukit/ChangeLog Thu Apr 29 00:13:01 2010
@@ -1,5 +1,9 @@
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * aclocal/enable-httpd.m4, aclocal/enable-shttpd.m4: New.
+
+2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
+
* libnetworking/libc/map_v4v6.c: Use uintptr_t instead of u_long for
better 16bit target compliance.
*ralf*:
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
* configure.ac: Add RTEMS_ENABLE_SHTTPD, RTEMS_ENABLE_HTTPD.
Introduce AM_CONDITIONALS LIBHTTPD, LIBSHTTPD.
M 1.2274 cpukit/ChangeLog
M 1.179 cpukit/configure.ac
diff -u rtems/cpukit/ChangeLog:1.2273 rtems/cpukit/ChangeLog:1.2274
--- rtems/cpukit/ChangeLog:1.2273 Thu Apr 29 00:13:01 2010
+++ rtems/cpukit/ChangeLog Thu Apr 29 00:15:35 2010
@@ -1,5 +1,7 @@
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * configure.ac: Add RTEMS_ENABLE_SHTTPD, RTEMS_ENABLE_HTTPD.
+ Introduce AM_CONDITIONALS LIBHTTPD, LIBSHTTPD.
* aclocal/enable-httpd.m4, aclocal/enable-shttpd.m4: New.
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
diff -u rtems/cpukit/configure.ac:1.178 rtems/cpukit/configure.ac:1.179
--- rtems/cpukit/configure.ac:1.178 Mon Apr 12 01:36:35 2010
+++ rtems/cpukit/configure.ac Thu Apr 29 00:15:39 2010
@@ -18,6 +18,8 @@
RTEMS_ENABLE_ITRON
RTEMS_ENABLE_RTEMS_DEBUG
RTEMS_ENABLE_NETWORKING
+RTEMS_ENABLE_HTTPD
+RTEMS_ENABLE_SHTTPD
RTEMS_ENV_RTEMSCPU
RTEMS_CHECK_RTEMS_DEBUG
@@ -267,6 +269,10 @@
AM_CONDITIONAL(HAS_PTHREADS,test x"$rtems_cv_HAS_POSIX_API" = x"yes")
AM_CONDITIONAL(LIBITRON,test x"$rtems_cv_HAS_ITRON_API" = x"yes")
AM_CONDITIONAL(LIBNETWORKING,test x"$rtems_cv_HAS_NETWORKING" = x"yes")
+AM_CONDITIONAL([LIBHTTPD],[test x"$rtems_cv_HAS_NETWORKING" = xyes \
+test x"$enable_httpd" = xyes])
+AM_CONDITIONAL([LIBSHTTPD],[test x"$rtems_cv_HAS_NETWORKING" = xyes \
+test x"$enable_shttpd" = xyes])
AM_CONDITIONAL([NEED_SYS_CDEFS_H],[test x"$NEED_SYS_CDEFS_H" = x"yes"])
AM_CONDITIONAL([NEED_SYS_QUEUE_H],[test x"$NEED_SYS_QUEUE_H" = x"yes"])
*ralf*:
Use LIBHTTPD.
M 1.31 cpukit/httpd/Makefile.am
diff -u rtems/cpukit/httpd/Makefile.am:1.30 rtems/cpukit/httpd/Makefile.am:1.31
--- rtems/cpukit/httpd/Makefile.am:1.30 Thu Dec 6 09:19:08 2007
+++ rtems/cpukit/httpd/Makefile.am Thu Apr 29 00:17:12 2010
@@ -2,11 +2,13 @@
## $Id$
##
+## DEPRECATED, don't use.
+
include $(top_srcdir)/automake/compile.am
AM_CPPFLAGS += -DWEBS -DUEMF
-if LIBNETWORKING
+if LIBHTTPD
## Always install this header file. Both webservers use it.
include_HEADERS = rtems_webserver.h
*ralf*:
Use SLIBHTTPD.
M 1.5 cpukit/shttpd/Makefile.am
diff -u rtems/cpukit/shttpd/Makefile.am:1.4 rtems/cpukit/shttpd/Makefile.am:1.5
--- rtems/cpukit/shttpd/Makefile.am:1.4 Mon Jul 23 23:05:47 2007
+++ rtems/cpukit/shttpd/Makefile.am Thu Apr 29 00:17:21 2010
@@ -1,6 +1,8 @@
+# DEPRECATED, don't use.
+
include $(top_srcdir)/automake/compile.am
-if LIBNETWORKING
+if LIBSHTTPD
include_shttpddir = $(includedir)/shttpd
project_lib_LIBRARIES = libshttpd.a
*ralf*:
Regenerate.
M 1.15 cpukit/httpd/preinstall.am
M 1.3 cpukit/shttpd/preinstall.am
diff -u rtems/cpukit/httpd/preinstall.am:1.14 rtems/cpukit/httpd/preinstall.am:1.15
--- rtems/cpukit/httpd/preinstall.am:1.14 Thu Dec 6 09:19:08 2007
+++ rtems/cpukit/httpd/preinstall.am Thu Apr 29 00:17:34 2010
@@ -28,7 +28,7 @@
@: > $(PROJECT_INCLUDE)/$(dirstamp)
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/$(dirstamp)
-if LIBNETWORKING
+if LIBHTTPD
$(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems_webserver.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems_webserver.h
diff -u rtems/cpukit/shttpd/preinstall.am:1.2 rtems/cpukit/shttpd/preinstall.am:1.3
--- rtems/cpukit/shttpd/preinstall.am:1.2 Mon Jun 11 10:11:55 2007
+++ rtems/cpukit/shttpd/preinstall.am Thu Apr 29 00:17:34 2010
@@ -23,7 +23,7 @@
@: > $(PROJECT_LIB)/$(dirstamp)
PREINSTALL_DIRS += $(PROJECT_LIB)/$(dirstamp)
-if LIBNETWORKING
+if LIBSHTTPD
$(PROJECT_INCLUDE)/shttpd/$(dirstamp):
@$(MKDIR_P) $(PROJECT_INCLUDE)/shttpd
@: > $(PROJECT_INCLUDE)/shttpd/$(dirstamp)
*ralf*:
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
* httpd/Makefile.am: Use LIBHTTPD.
* shttpd/Makefile.am: Use LIBSHTTPD.
M 1.2275 cpukit/ChangeLog
diff -u rtems/cpukit/ChangeLog:1.2274 rtems/cpukit/ChangeLog:1.2275
--- rtems/cpukit/ChangeLog:1.2274 Thu Apr 29 00:15:35 2010
+++ rtems/cpukit/ChangeLog Thu Apr 29 00:17:44 2010
@@ -1,5 +1,7 @@
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * httpd/Makefile.am: Use LIBHTTPD.
+ * shttpd/Makefile.am: Use LIBSHTTPD.
* configure.ac: Add RTEMS_ENABLE_SHTTPD, RTEMS_ENABLE_HTTPD.
Introduce AM_CONDITIONALS LIBHTTPD, LIBSHTTPD.
* aclocal/enable-httpd.m4, aclocal/enable-shttpd.m4: New.
*ralf*:
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
* aclocal/enable-itron.m4: Cosmetics.
M 1.2276 cpukit/ChangeLog
M 1.6 cpukit/aclocal/enable-itron.m4
diff -u rtems/cpukit/ChangeLog:1.2275 rtems/cpukit/ChangeLog:1.2276
--- rtems/cpukit/ChangeLog:1.2275 Thu Apr 29 00:17:44 2010
+++ rtems/cpukit/ChangeLog Thu Apr 29 00:18:41 2010
@@ -1,5 +1,6 @@
2010-04-29 Ralf Corsépius <ralf.corsepius at rtems.org>
+ * aclocal/enable-itron.m4: Cosmetics.
* httpd/Makefile.am: Use LIBHTTPD.
* shttpd/Makefile.am: Use LIBSHTTPD.
* configure.ac: Add RTEMS_ENABLE_SHTTPD, RTEMS_ENABLE_HTTPD.
diff -u rtems/cpukit/aclocal/enable-itron.m4:1.5 rtems/cpukit/aclocal/enable-itron.m4:1.6
--- rtems/cpukit/aclocal/enable-itron.m4:1.5 Thu Jul 23 16:22:25 2009
+++ rtems/cpukit/aclocal/enable-itron.m4 Thu Apr 29 00:18:41 2010
@@ -2,8 +2,8 @@
AC_DEFUN([RTEMS_ENABLE_ITRON],
[
-AC_ARG_ENABLE(itron,
-AS_HELP_STRING(--enable-itron,enable itron interface),
+AC_ARG_ENABLE([itron],
+AS_HELP_STRING([--enable-itron],[enable itron interface (DEPRECATED)]),
[case "${enableval}" in
yes) RTEMS_HAS_ITRON_API=yes ;;
no) RTEMS_HAS_ITRON_API=no ;;
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20100429/3ea15d53/attachment.html>
More information about the vc
mailing list