search for: _stdint_h

Displaying 3 results from an estimated 3 matches for "_stdint_h".

Did you mean: stdint_h
2017 Jul 21
1
Problem compiling dovecot 2.2.31 on Solaris
...iler, stdint.h is $ find /usr/include -name stdint.h /usr/include/sys/stdint.h /usr/include/stdint.h from SUNWhea on S10 and system/header on S11. Nevertheless it's missing on Solaris 8 and 9. You can make your own, this worked for me on Solaris 9 at least once, untested recently: #ifndef _STDINT_H #define _STDINT_H #include <sys/int_types.h> #include <sys/int_limits.h> #include <sys/int_const.h> #endif /* _STDINT_H */ Or just #define what you think it needs, it's not complex.
2017 Jul 21
3
Problem compiling dovecot 2.2.31 on Solaris
I'm trying to compile under SunOS 5.8 Generic_117350-28 sun4u sparc SUNW,Ultra-5_10 (I know it's a bit oldish :-) and I get this error: /bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -std=gnu99 -g -O2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -fno-builtin-strftime
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
...ation, are permitted provided that the following conditions @@ -35,125 +36,199 @@ /* Use the real stdint.h if it's there (taken from Paul Hsieh's pstdint.h) */ #if (defined(__STDC__) && __STDC__ && __STDC_VERSION__ >= 199901L) || (defined(__GNUC__) && (defined(_STDINT_H) || defined(_STDINT_H_)) || defined (HAVE_STDINT_H)) -#include <stdint.h> +# include <stdint.h> + typedef int8_t opus_int8; + typedef uint8_t opus_uint8; typedef int16_t opus_int16; typedef uint16_t opus_uint16; typedef int32_t opus_int32; typedef uint32_t opus_ui...