diff options
author | sumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-11 01:26:42 +0000 |
---|---|---|
committer | sumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-11 01:26:42 +0000 |
commit | 86373f526967a617d5bbc181b701bccad5e093f6 (patch) | |
tree | be0942d50fa36f7178974095ca255e5fb34cefa5 /TAO | |
parent | 49d7b65edd53aaa8be72fb2d4c313517950977cd (diff) | |
download | ATCD-86373f526967a617d5bbc181b701bccad5e093f6.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog-98c | 5 | ||||
-rw-r--r-- | TAO/tao/orbconf.h | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c index daf668ed6fc..1e60c9185e2 100644 --- a/TAO/ChangeLog-98c +++ b/TAO/ChangeLog-98c @@ -1,3 +1,8 @@ +Mon Nov 10 19:26:03 1997 Sumedh Mungee <sumedh@lindy.cs.wustl.edu> + + * tao/orbconf.h (SIZEOF_INT): FreeBSD and NetBSD have 4 byte + ints. Thanks to Nanbor for pointing this out. + Mon Nov 10 18:30:22 1997 Sumedh Mungee <sumedh@lindy.cs.wustl.edu> * tao/orbobj.cpp: Added template instantiation for ACE_Atomic_Op. diff --git a/TAO/tao/orbconf.h b/TAO/tao/orbconf.h index 43b70e0925f..b3ee1074e16 100644 --- a/TAO/tao/orbconf.h +++ b/TAO/tao/orbconf.h @@ -58,11 +58,11 @@ #endif // The number of bytes in an int. -# if defined (_WIN32) || defined (linux) || defined (VXWORKS) -# define SIZEOF_INT 4 -# else // Win16 -# define SIZEOF_INT 2 -# endif // Win32/Win16 +#if defined (_WIN32) || defined (linux) || defined (ACE_NETBSD) || defined (FreeBSD_2_1) || defined (VXWORKS) +# define SIZEOF_INT 4 +#else // Win16 +# define SIZEOF_INT 2 +#endif // Win32/Win16 // The number of bytes in a long. #define SIZEOF_LONG 4 |