diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-08-26 08:13:18 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-08-26 08:13:18 +0000 |
commit | ec7fde72a277a01047e44d9bdf8670785349e7e1 (patch) | |
tree | 9fd693936f56d9b0b0327d7cdedcba44134966b1 /apps | |
parent | 5d8a7e8e0c44a4cdeefbfc2cc2e76a11efa3340b (diff) | |
download | ATCD-ec7fde72a277a01047e44d9bdf8670785349e7e1.tar.gz |
ChangeLogTag: Thu Aug 26 06:47:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/JAWS/ChangeLog | 17 | ||||
-rw-r--r-- | apps/JAWS/clients/Caching/http_client.cpp | 9 | ||||
-rw-r--r-- | apps/JAWS/server/HTTP_Response.cpp | 1 |
3 files changed, 18 insertions, 9 deletions
diff --git a/apps/JAWS/ChangeLog b/apps/JAWS/ChangeLog index 0b8c3274945..3b8e95edbdb 100644 --- a/apps/JAWS/ChangeLog +++ b/apps/JAWS/ChangeLog @@ -1,3 +1,10 @@ +Thu Aug 26 08:13:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl> + + * clients/Caching/http_client.cpp: + * server/HTTP_Response.cpp: + Added include of ace/os_include/os_ctype.h to fix compile problems + in our daily builds. + Tue Feb 25 18:58:26 2003 Carlos O'Ryan <coryan@atdesk.com> * clients/WebSTONE/src/cgi-send: @@ -44,19 +51,19 @@ Mon Aug 13 14:04:44 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> 1) Allow a static libHTTPU.a to be built when "make static_libs_only=1" is used. - + 2) When I try to build both JAWS and JAWS2 with the same ACE_ROOT, the libJAWS.* that is built and installed first prevents the other JAWS from properly compiling. This resolves this problem by renaming the JAWS2 library to libJAWS2.*. - + 3) The JAWS2 subdirectory is now descended into by - apps/Makefile. - + apps/Makefile. + 4) The Makefile in JAWS2 now descends into HTTPU and JAWS to build those libraries. - + Tue Jun 12 20:35:26 2001 Krishnakumar B <kitty@cs.wustl.edu> * clients/Blobby/Blob_Handler.cpp: diff --git a/apps/JAWS/clients/Caching/http_client.cpp b/apps/JAWS/clients/Caching/http_client.cpp index 6022cb289f2..6b02c1f15fb 100644 --- a/apps/JAWS/clients/Caching/http_client.cpp +++ b/apps/JAWS/clients/Caching/http_client.cpp @@ -4,7 +4,7 @@ // // = LIBRARY // apps/JAWS/clients/Caching -// +// // = FILENAME // http_client.cpp // @@ -14,10 +14,11 @@ // // = AUTHOR // James Hu -// +// // ============================================================================ #include "http_handler.h" +#include "ace/os_include/os_ctype.h" ACE_RCSID(Caching, http_client, "$Id$") @@ -50,8 +51,8 @@ main (int, char *[]) if (*s == '!') { - do - s++; + do + s++; while (isspace (*s)); // Shell command. diff --git a/apps/JAWS/server/HTTP_Response.cpp b/apps/JAWS/server/HTTP_Response.cpp index 50c14604253..d590d0dd13f 100644 --- a/apps/JAWS/server/HTTP_Response.cpp +++ b/apps/JAWS/server/HTTP_Response.cpp @@ -4,6 +4,7 @@ #include "ace/Mem_Map.h" #include "ace/Log_Msg.h" #include "ace/OS_NS_stdio.h" +#include "ace/os_include/os_ctype.h" #include "HTTP_Response.h" #include "HTTP_Request.h" |