diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2011-01-08 17:56:56 +0000 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2011-01-08 17:56:56 +0000 |
commit | 25a421b0e88ad9dda4a2e0434afd983799fdf2ad (patch) | |
tree | 12fe02a6e002fecf7b2b8e14a7f7755d1f0b2b54 /config.h.in | |
parent | 86c91dc8191c9b0266eaa86a8fa416627f9da207 (diff) |
configure.in: define the {int,uint}*_t types with AC_TYPE_*.
* * *
drop d_size
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 54501855..371d658f 100644 --- a/config.h.in +++ b/config.h.in @@ -105,8 +105,29 @@ /* Version number of package */ #undef VERSION +/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>, + <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +#undef _UINT32_T + /* Use char pointers for newer libiconv */ #undef inbuf_t +/* Define to the type of a signed integer type of width exactly 16 bits if + such a type exists and the standard includes do not define it. */ +#undef int16_t + +/* Define to the type of a signed integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +#undef int32_t + /* Define the real type of socklen_t */ #undef socklen_t + +/* Define to the type of an unsigned integer type of width exactly 16 bits if + such a type exists and the standard includes do not define it. */ +#undef uint16_t + +/* Define to the type of an unsigned integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +#undef uint32_t |