diff options
author | hobbs <hobbs> | 2005-10-10 20:29:49 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-10-10 20:29:49 (GMT) |
commit | 7e733ab325057aac1e7d23f4e6dda37e65bce9d2 (patch) | |
tree | 8dff482ab66b267064ff77683b382c9f74fedb13 /generic/tkInt.h | |
parent | 9500cbcc13a4de799d51779752efd4fecdfba4ea (diff) | |
download | tk-7e733ab325057aac1e7d23f4e6dda37e65bce9d2.zip tk-7e733ab325057aac1e7d23f4e6dda37e65bce9d2.tar.gz tk-7e733ab325057aac1e7d23f4e6dda37e65bce9d2.tar.bz2 |
* macosx/tkMacOSXInt.h: Move MODULE_SCOPE defn to tkInt.h and add
* generic/tkInt.h: WORDS_BIGENDIAN checks that will work with
OS X universal binary compiles. (steffen)
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 9c350af..cafe4a3 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.67 2005/09/21 10:54:40 dkf Exp $ + * RCS: $Id: tkInt.h,v 1.68 2005/10/10 20:29:49 hobbs Exp $ */ #ifndef _TKINT @@ -28,6 +28,45 @@ #endif /* + * Ensure WORDS_BIGENDIAN is defined correcly: + * Needs to happen here in addition to configure to work with fat compiles on + * Darwin (i.e. ppc and i386 at the same time). + */ + +#ifdef HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#ifdef HAVE_SYS_PARAM_H +# include <sys/param.h> +#endif +#ifdef BYTE_ORDER +# ifdef BIG_ENDIAN +# if BYTE_ORDER == BIG_ENDIAN +# undef WORDS_BIGENDIAN +# define WORDS_BIGENDIAN +# endif +# endif +# ifdef LITTLE_ENDIAN +# if BYTE_ORDER == LITTLE_ENDIAN +# undef WORDS_BIGENDIAN +# endif +# endif +#endif + +/* + * Used to tag functions that are only to be visible within the module being + * built and not outside it (where this is supported by the linker). + */ + +#ifndef MODULE_SCOPE +# ifdef __cplusplus +# define MODULE_SCOPE extern "C" +# else +# define MODULE_SCOPE extern +# endif +#endif + +/* * Opaque type declarations: */ |