diff options
author | Steve Huston <shuston@riverace.com> | 2004-08-02 13:08:23 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2004-08-02 13:08:23 +0000 |
commit | 97454750cbbf9667501f7bba652b55f4af273945 (patch) | |
tree | a4a8d964077543dc03df7c230b2dffd7b7200b4c /apps/JAWS3 | |
parent | 9c7eebc2f27f6cbbfc0d988adebdea94a437600e (diff) | |
download | ATCD-97454750cbbf9667501f7bba652b55f4af273945.tar.gz |
ChangeLogTag:(not committed) Steve Huston <shuston@riverace.com>
* ace/os_include/os_signal.h: Removed the #include os_time.h - it's
not needed for anything in this header, and for some reason, it
introduces a type oddity on HP-UX - aC++ gets the idea there's a
tentative struct sigaction and doesn't match the real one, causing
compile errors in ACE_OS::sigaction().
* ace/Signal.{h inl}: Removed the hack typedef ACE_SIGACTION that
was allegedly put in for an HP-UX C++ bug. It's not needed and is
causing further problems. #include "ace/os_include/os_signal.h"
to get the needed signal-related types.
* apps/JAWS3/jaws3/Event_Result.h: Changed #include "ace/OS.h" to
"ace/OS_NS_errno.h". Removing the "big hammer" OS.h stuff. This
fixes a compile error in OS_TLI.inl on HP-UX w/ aC++. Why? I
have no idea... there's something odd still about orders of
includes and/or preprocessor defs or something. This odd compile
error creeps up every once in a while and is always related to
fudging something somewhere (see fix above for signal...) but
this one doesn't have an apparant cause.
Diffstat (limited to 'apps/JAWS3')
-rw-r--r-- | apps/JAWS3/jaws3/Event_Result.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/JAWS3/jaws3/Event_Result.h b/apps/JAWS3/jaws3/Event_Result.h index 3cc83de4b5e..ede97487a5e 100644 --- a/apps/JAWS3/jaws3/Event_Result.h +++ b/apps/JAWS3/jaws3/Event_Result.h @@ -4,7 +4,7 @@ #ifndef JAWS_EVENT_RESULT_H #define JAWS_EVENT_RESULT_H -#include "ace/OS.h" +#include "ace/OS_NS_errno.h" #include "jaws3/Export.h" |