diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-26 17:10:47 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-26 17:10:47 +0000 |
commit | 2aa8563c10b28e615895376a8a4bd6b90684e119 (patch) | |
tree | 70672fd5c23fa6f84b4391215a46ffc8747200dc /ace/config-lynxos.h | |
parent | ae4b47f13bcc4f15d5eee23fa7df7204331ecc79 (diff) | |
download | ATCD-2aa8563c10b28e615895376a8a4bd6b90684e119.tar.gz |
ChangeLogTag: Mon Jun 26 12:09:33 2000 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'ace/config-lynxos.h')
-rw-r--r-- | ace/config-lynxos.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/config-lynxos.h b/ace/config-lynxos.h index 1e91853806d..5ba6f39db59 100644 --- a/ace/config-lynxos.h +++ b/ace/config-lynxos.h @@ -122,8 +122,9 @@ #if ACE_MT_SAFE == 1 // Platform supports threads. # define ACE_HAS_PTHREADS -# if __GNUG__ > 2 || __GNUC_MINOR__ >= 9 - // g++ >= 2.9, assume LynxOS 3.1.0 or greater +# include <unistd.h> +# if _POSIX_VERSION >= 199506L + // LynxOS 3.1.0 or greater # define ACE_HAS_PTHREADS_STD // Though there's a pthread_sigmask man page, there isn't a // declaration in a system header file. |