diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-02 20:24:24 +0100 | 
|---|---|---|
| committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:47:10 +0100 | 
| commit | da0640518f67545df6a1da30c916fbc452d38a39 (patch) | |
| tree | ce20ee69d0807b0583564f987a56c6fb3506072a | |
| parent | fface33dd731a711688b56593bb703c38090e782 (diff) | |
| download | samba-da0640518f67545df6a1da30c916fbc452d38a39.tar.gz samba-da0640518f67545df6a1da30c916fbc452d38a39.tar.bz2 samba-da0640518f67545df6a1da30c916fbc452d38a39.zip  | |
r26232: Provide replacement for stdint.i for users of older versions of swig.
(This used to be commit fb2150a07aa6460165efb4587c86ecc820cdeac0)
| -rwxr-xr-x | source4/autogen.sh | 2 | ||||
| -rw-r--r-- | source4/scripting/python/replace/stdint.i | 109 | 
2 files changed, 110 insertions, 1 deletions
diff --git a/source4/autogen.sh b/source4/autogen.sh index 667ac89a44..5f71a09bf8 100755 --- a/source4/autogen.sh +++ b/source4/autogen.sh @@ -70,7 +70,7 @@ if which $SWIG >/dev/null 2>&1; then  	for I in $SWIG_FILES  	do  		echo "$0: running $SWIG for $I" -		swig -python -keyword $I +		swig -python -keyword -Iscripting/python/replace $I  	done  fi diff --git a/source4/scripting/python/replace/stdint.i b/source4/scripting/python/replace/stdint.i new file mode 100644 index 0000000000..7b48ca3884 --- /dev/null +++ b/source4/scripting/python/replace/stdint.i @@ -0,0 +1,109 @@ +/* ----------------------------------------------------------------------------- + * See the LICENSE file for information on copyright, usage and redistribution + * of SWIG, and the README file for authors - http://www.swig.org/release.html. + * + * stdint.i + * + * SWIG library file for ISO C99 types: 7.18 Integer types <stdint.h> + * ----------------------------------------------------------------------------- */ + +%{ +#include <stdint.h>		// Use the C99 official header +%} + +%include <swigarch.i> + +/* Exact integral types.  */ + +/* Signed.  */ + +typedef signed char		int8_t; +typedef short int		int16_t; +typedef int			int32_t; +#if defined(SWIGWORDSIZE64) +typedef long int		int64_t; +#else +typedef long long int		int64_t; +#endif + +/* Unsigned.  */ +typedef unsigned char		uint8_t; +typedef unsigned short int	uint16_t; +typedef unsigned int		uint32_t; +#if defined(SWIGWORDSIZE64) +typedef unsigned long int	uint64_t; +#else +typedef unsigned long long int	uint64_t; +#endif + + +/* Small types.  */ + +/* Signed.  */ +typedef signed char		int_least8_t; +typedef short int		int_least16_t; +typedef int			int_least32_t; +#if defined(SWIGWORDSIZE64) +typedef long int		int_least64_t; +#else +typedef long long int		int_least64_t; +#endif + +/* Unsigned.  */ +typedef unsigned char		uint_least8_t; +typedef unsigned short int	uint_least16_t; +typedef unsigned int		uint_least32_t; +#if defined(SWIGWORDSIZE64) +typedef unsigned long int	uint_least64_t; +#else +typedef unsigned long long int	uint_least64_t; +#endif + + +/* Fast types.  */ + +/* Signed.  */ +typedef signed char		int_fast8_t; +#if defined(SWIGWORDSIZE64) +typedef long int		int_fast16_t; +typedef long int		int_fast32_t; +typedef long int		int_fast64_t; +#else +typedef int			int_fast16_t; +typedef int			int_fast32_t; +typedef long long int		int_fast64_t; +#endif + +/* Unsigned.  */ +typedef unsigned char		uint_fast8_t; +#if defined(SWIGWORDSIZE64) +typedef unsigned long int	uint_fast16_t; +typedef unsigned long int	uint_fast32_t; +typedef unsigned long int	uint_fast64_t; +#else +typedef unsigned int		uint_fast16_t; +typedef unsigned int		uint_fast32_t; +typedef unsigned long long int	uint_fast64_t; +#endif + + +/* Types for `void *' pointers.  */ +#if defined(SWIGWORDSIZE64) +typedef long int		intptr_t; +typedef unsigned long int	uintptr_t; +#else +typedef int			intptr_t; +typedef unsigned int		uintptr_t; +#endif + + +/* Largest integral types.  */ +#if defined(SWIGWORDSIZE64) +typedef long int		intmax_t; +typedef unsigned long int	uintmax_t; +#else +typedef long long int		intmax_t; +typedef unsigned long long int	uintmax_t; +#endif + +  | 
