| 74 | | AC_CHECK_HEADER([inttypes.h],[], |
|---|
| 75 | | [AC_CHECK_SIZEOF([char]) |
|---|
| 76 | | AC_CHECK_SIZEOF([short]) |
|---|
| 77 | | AC_CHECK_SIZEOF([int]) |
|---|
| 78 | | if test x"$ac_cv_sizeof_char" != x"1" -o \ |
|---|
| 79 | | x"$ac_cv_sizeof_short" != x"2" -o \ |
|---|
| 80 | | x"$ac_cv_sizeof_int" != x"4"; then |
|---|
| 81 | | AC_MSG_ERROR([can not build a default inttypes.h]) |
|---|
| 82 | | fi |
|---|
| 83 | | cat >$1/inttypes.h << EOF |
|---|
| 84 | | /* default inttypes.h for people who do not have it on their system */ |
|---|
| 85 | | |
|---|
| 86 | | #ifndef _INTTYPES_H |
|---|
| 87 | | #define _INTTYPES_H |
|---|
| 88 | | #if (!defined __int8_t_defined) && (!defined __BIT_TYPES_DEFINED__) |
|---|
| | 125 | AC_CHECK_HEADER([inttypes.h],[],[AX_CREATE_STDINT_H([$1/inttypes.h])])]) |
|---|
| | 126 | |
|---|
| | 127 | dnl from http://ac-archive.sourceforge.net/guidod/ax_create_stdint_h.html |
|---|
| | 128 | dnl modified: s/AC_COMPILE_CHECK_SIZEOF/AC_CHECK_SIZEOF/g |
|---|
| | 129 | |
|---|
| | 130 | dnl @synopsis AX_CREATE_STDINT_H [( HEADER-TO-GENERATE [, HEDERS-TO-CHECK])] |
|---|
| | 131 | dnl |
|---|
| | 132 | dnl the "ISO C9X: 7.18 Integer types <stdint.h>" section requires the |
|---|
| | 133 | dnl existence of an include file <stdint.h> that defines a set of |
|---|
| | 134 | dnl typedefs, especially uint8_t,int32_t,uintptr_t. |
|---|
| | 135 | dnl Many older installations will not provide this file, but some will |
|---|
| | 136 | dnl have the very same definitions in <inttypes.h>. In other enviroments |
|---|
| | 137 | dnl we can use the inet-types in <sys/types.h> which would define the |
|---|
| | 138 | dnl typedefs int8_t and u_int8_t respectivly. |
|---|
| | 139 | dnl |
|---|
| | 140 | dnl This macros will create a local "_stdint.h" or the headerfile given as |
|---|
| | 141 | dnl an argument. In many cases that file will just "#include <stdint.h>" |
|---|
| | 142 | dnl or "#include <inttypes.h>", while in other environments it will provide |
|---|
| | 143 | dnl the set of basic 'stdint's definitions/typedefs: |
|---|
| | 144 | dnl int8_t,uint8_t,int16_t,uint16_t,int32_t,uint32_t,intptr_t,uintptr_t |
|---|
| | 145 | dnl int_least32_t.. int_fast32_t.. intmax_t |
|---|
| | 146 | dnl which may or may not rely on the definitions of other files, |
|---|
| | 147 | dnl or using the AC_CHECK_SIZEOF macro to determine the actual |
|---|
| | 148 | dnl sizeof each type. |
|---|
| | 149 | dnl |
|---|
| | 150 | dnl if your header files require the stdint-types you will want to create an |
|---|
| | 151 | dnl installable file mylib-int.h that all your other installable header |
|---|
| | 152 | dnl may include. So if you have a library package named "mylib", just use |
|---|
| | 153 | dnl AX_CREATE_STDINT_H(mylib-int.h) |
|---|
| | 154 | dnl in configure.ac and go to install that very header file in Makefile.am |
|---|
| | 155 | dnl along with the other headers (mylib.h) - and the mylib-specific headers |
|---|
| | 156 | dnl can simply use "#include <mylib-int.h>" to obtain the stdint-types. |
|---|
| | 157 | dnl |
|---|
| | 158 | dnl Remember, if the system already had a valid <stdint.h>, the generated |
|---|
| | 159 | dnl file will include it directly. No need for fuzzy HAVE_STDINT_H things... |
|---|
| | 160 | dnl |
|---|
| | 161 | dnl @, (status: used on new platforms) (see http://ac-archive.sf.net/gstdint/) |
|---|
| | 162 | dnl @version $Id: acinclude.m4 594 2006-05-15 02:48:49Z sam $ |
|---|
| | 163 | dnl @author Guido Draheim <guidod@gmx.de> |
|---|
| | 164 | |
|---|
| | 165 | AC_DEFUN([AX_CREATE_STDINT_H], |
|---|
| | 166 | [# ------ AX CREATE STDINT H ------------------------------------- |
|---|
| | 167 | AC_MSG_CHECKING([for stdint types]) |
|---|
| | 168 | ac_stdint_h=`echo ifelse($1, , _stdint.h, $1)` |
|---|
| | 169 | # try to shortcircuit - if the default include path of the compiler |
|---|
| | 170 | # can find a "stdint.h" header then we assume that all compilers can. |
|---|
| | 171 | AC_CACHE_VAL([ac_cv_header_stdint_t],[ |
|---|
| | 172 | old_CXXFLAGS="$CXXFLAGS" ; CXXFLAGS="" |
|---|
| | 173 | old_CPPFLAGS="$CPPFLAGS" ; CPPFLAGS="" |
|---|
| | 174 | old_CFLAGS="$CFLAGS" ; CFLAGS="" |
|---|
| | 175 | AC_TRY_COMPILE([#include <stdint.h>],[int_least32_t v = 0;], |
|---|
| | 176 | [ac_cv_stdint_result="(assuming C99 compatible system)" |
|---|
| | 177 | ac_cv_header_stdint_t="stdint.h"; ], |
|---|
| | 178 | [ac_cv_header_stdint_t=""]) |
|---|
| | 179 | CXXFLAGS="$old_CXXFLAGS" |
|---|
| | 180 | CPPFLAGS="$old_CPPFLAGS" |
|---|
| | 181 | CFLAGS="$old_CFLAGS" ]) |
|---|
| | 182 | |
|---|
| | 183 | v="... $ac_cv_header_stdint_h" |
|---|
| | 184 | if test "$ac_stdint_h" = "stdint.h" ; then |
|---|
| | 185 | AC_MSG_RESULT([(are you sure you want them in ./stdint.h?)]) |
|---|
| | 186 | elif test "$ac_stdint_h" = "inttypes.h" ; then |
|---|
| | 187 | AC_MSG_RESULT([(are you sure you want them in ./inttypes.h?)]) |
|---|
| | 188 | elif test "_$ac_cv_header_stdint_t" = "_" ; then |
|---|
| | 189 | AC_MSG_RESULT([(putting them into $ac_stdint_h)$v]) |
|---|
| | 190 | else |
|---|
| | 191 | ac_cv_header_stdint="$ac_cv_header_stdint_t" |
|---|
| | 192 | AC_MSG_RESULT([$ac_cv_header_stdint (shortcircuit)]) |
|---|
| | 193 | fi |
|---|
| | 194 | |
|---|
| | 195 | if test "_$ac_cv_header_stdint_t" = "_" ; then # can not shortcircuit.. |
|---|
| | 196 | |
|---|
| | 197 | dnl .....intro message done, now do a few system checks..... |
|---|
| | 198 | dnl btw, all CHECK_TYPE macros do automatically "DEFINE" a type, therefore |
|---|
| | 199 | dnl we use the autoconf implementation detail _AC CHECK_TYPE_NEW instead |
|---|
| | 200 | |
|---|
| | 201 | inttype_headers=`echo $2 | sed -e 's/,/ /g'` |
|---|
| | 202 | |
|---|
| | 203 | ac_cv_stdint_result="(no helpful system typedefs seen)" |
|---|
| | 204 | AC_CACHE_CHECK([for stdint uintptr_t], [ac_cv_header_stdint_x],[ |
|---|
| | 205 | ac_cv_header_stdint_x="" # the 1997 typedefs (inttypes.h) |
|---|
| | 206 | AC_MSG_RESULT([(..)]) |
|---|
| | 207 | for i in stdint.h inttypes.h sys/inttypes.h $inttype_headers ; do |
|---|
| | 208 | unset ac_cv_type_uintptr_t |
|---|
| | 209 | unset ac_cv_type_uint64_t |
|---|
| | 210 | _AC_CHECK_TYPE_NEW(uintptr_t,[ac_cv_header_stdint_x=$i],dnl |
|---|
| | 211 | continue,[#include <$i>]) |
|---|
| | 212 | AC_CHECK_TYPE(uint64_t,[and64="/uint64_t"],[and64=""],[#include<$i>]) |
|---|
| | 213 | ac_cv_stdint_result="(seen uintptr_t$and64 in $i)" |
|---|
| | 214 | break; |
|---|
| | 215 | done |
|---|
| | 216 | AC_MSG_CHECKING([for stdint uintptr_t]) |
|---|
| | 217 | ]) |
|---|
| | 218 | |
|---|
| | 219 | if test "_$ac_cv_header_stdint_x" = "_" ; then |
|---|
| | 220 | AC_CACHE_CHECK([for stdint uint32_t], [ac_cv_header_stdint_o],[ |
|---|
| | 221 | ac_cv_header_stdint_o="" # the 1995 typedefs (sys/inttypes.h) |
|---|
| | 222 | AC_MSG_RESULT([(..)]) |
|---|
| | 223 | for i in inttypes.h sys/inttypes.h stdint.h $inttype_headers ; do |
|---|
| | 224 | unset ac_cv_type_uint32_t |
|---|
| | 225 | unset ac_cv_type_uint64_t |
|---|
| | 226 | AC_CHECK_TYPE(uint32_t,[ac_cv_header_stdint_o=$i],dnl |
|---|
| | 227 | continue,[#include <$i>]) |
|---|
| | 228 | AC_CHECK_TYPE(uint64_t,[and64="/uint64_t"],[and64=""],[#include<$i>]) |
|---|
| | 229 | ac_cv_stdint_result="(seen uint32_t$and64 in $i)" |
|---|
| | 230 | break; |
|---|
| | 231 | done |
|---|
| | 232 | AC_MSG_CHECKING([for stdint uint32_t]) |
|---|
| | 233 | ]) |
|---|
| | 234 | fi |
|---|
| | 235 | |
|---|
| | 236 | if test "_$ac_cv_header_stdint_x" = "_" ; then |
|---|
| | 237 | if test "_$ac_cv_header_stdint_o" = "_" ; then |
|---|
| | 238 | AC_CACHE_CHECK([for stdint u_int32_t], [ac_cv_header_stdint_u],[ |
|---|
| | 239 | ac_cv_header_stdint_u="" # the BSD typedefs (sys/types.h) |
|---|
| | 240 | AC_MSG_RESULT([(..)]) |
|---|
| | 241 | for i in sys/types.h inttypes.h sys/inttypes.h $inttype_headers ; do |
|---|
| | 242 | unset ac_cv_type_u_int32_t |
|---|
| | 243 | unset ac_cv_type_u_int64_t |
|---|
| | 244 | AC_CHECK_TYPE(u_int32_t,[ac_cv_header_stdint_u=$i],dnl |
|---|
| | 245 | continue,[#include <$i>]) |
|---|
| | 246 | AC_CHECK_TYPE(u_int64_t,[and64="/u_int64_t"],[and64=""],[#include<$i>]) |
|---|
| | 247 | ac_cv_stdint_result="(seen u_int32_t$and64 in $i)" |
|---|
| | 248 | break; |
|---|
| | 249 | done |
|---|
| | 250 | AC_MSG_CHECKING([for stdint u_int32_t]) |
|---|
| | 251 | ]) |
|---|
| | 252 | fi fi |
|---|
| | 253 | |
|---|
| | 254 | dnl if there was no good C99 header file, do some typedef checks... |
|---|
| | 255 | if test "_$ac_cv_header_stdint_x" = "_" ; then |
|---|
| | 256 | AC_MSG_CHECKING([for stdint datatype model]) |
|---|
| | 257 | AC_MSG_RESULT([(..)]) |
|---|
| | 258 | AC_CHECK_SIZEOF(char) |
|---|
| | 259 | AC_CHECK_SIZEOF(short) |
|---|
| | 260 | AC_CHECK_SIZEOF(int) |
|---|
| | 261 | AC_CHECK_SIZEOF(long) |
|---|
| | 262 | AC_CHECK_SIZEOF(void*) |
|---|
| | 263 | ac_cv_stdint_char_model="" |
|---|
| | 264 | ac_cv_stdint_char_model="$ac_cv_stdint_char_model$ac_cv_sizeof_char" |
|---|
| | 265 | ac_cv_stdint_char_model="$ac_cv_stdint_char_model$ac_cv_sizeof_short" |
|---|
| | 266 | ac_cv_stdint_char_model="$ac_cv_stdint_char_model$ac_cv_sizeof_int" |
|---|
| | 267 | ac_cv_stdint_long_model="" |
|---|
| | 268 | ac_cv_stdint_long_model="$ac_cv_stdint_long_model$ac_cv_sizeof_int" |
|---|
| | 269 | ac_cv_stdint_long_model="$ac_cv_stdint_long_model$ac_cv_sizeof_long" |
|---|
| | 270 | ac_cv_stdint_long_model="$ac_cv_stdint_long_model$ac_cv_sizeof_voidp" |
|---|
| | 271 | name="$ac_cv_stdint_long_model" |
|---|
| | 272 | case "$ac_cv_stdint_char_model/$ac_cv_stdint_long_model" in |
|---|
| | 273 | 122/242) name="$name, IP16 (standard 16bit machine)" ;; |
|---|
| | 274 | 122/244) name="$name, LP32 (standard 32bit mac/win)" ;; |
|---|
| | 275 | 122/*) name="$name (unusual int16 model)" ;; |
|---|
| | 276 | 124/444) name="$name, ILP32 (standard 32bit unixish)" ;; |
|---|
| | 277 | 124/488) name="$name, LP64 (standard 64bit unixish)" ;; |
|---|
| | 278 | 124/448) name="$name, LLP64 (unusual 64bit unixish)" ;; |
|---|
| | 279 | 124/*) name="$name (unusual int32 model)" ;; |
|---|
| | 280 | 128/888) name="$name, ILP64 (unusual 64bit numeric)" ;; |
|---|
| | 281 | 128/*) name="$name (unusual int64 model)" ;; |
|---|
| | 282 | 222/*|444/*) name="$name (unusual dsptype)" ;; |
|---|
| | 283 | *) name="$name (very unusal model)" ;; |
|---|
| | 284 | esac |
|---|
| | 285 | AC_MSG_RESULT([combined for stdint datatype model... $name]) |
|---|
| | 286 | fi |
|---|
| | 287 | |
|---|
| | 288 | if test "_$ac_cv_header_stdint_x" != "_" ; then |
|---|
| | 289 | ac_cv_header_stdint="$ac_cv_header_stdint_x" |
|---|
| | 290 | elif test "_$ac_cv_header_stdint_o" != "_" ; then |
|---|
| | 291 | ac_cv_header_stdint="$ac_cv_header_stdint_o" |
|---|
| | 292 | elif test "_$ac_cv_header_stdint_u" != "_" ; then |
|---|
| | 293 | ac_cv_header_stdint="$ac_cv_header_stdint_u" |
|---|
| | 294 | else |
|---|
| | 295 | ac_cv_header_stdint="stddef.h" |
|---|
| | 296 | fi |
|---|
| | 297 | |
|---|
| | 298 | AC_MSG_CHECKING([for extra inttypes in chosen header]) |
|---|
| | 299 | AC_MSG_RESULT([($ac_cv_header_stdint)]) |
|---|
| | 300 | dnl see if int_least and int_fast types are present in _this_ header. |
|---|
| | 301 | unset ac_cv_type_int_least32_t |
|---|
| | 302 | unset ac_cv_type_int_fast32_t |
|---|
| | 303 | AC_CHECK_TYPE(int_least32_t,,,[#include <$ac_cv_header_stdint>]) |
|---|
| | 304 | AC_CHECK_TYPE(int_fast32_t,,,[#include<$ac_cv_header_stdint>]) |
|---|
| | 305 | AC_CHECK_TYPE(intmax_t,,,[#include <$ac_cv_header_stdint>]) |
|---|
| | 306 | |
|---|
| | 307 | fi # shortcircut to system "stdint.h" |
|---|
| | 308 | # ------------------ PREPARE VARIABLES ------------------------------ |
|---|
| | 309 | if test "$GCC" = "yes" ; then |
|---|
| | 310 | ac_cv_stdint_message="using gnu compiler "`$CC --version | head -1` |
|---|
| | 311 | else |
|---|
| | 312 | ac_cv_stdint_message="using $CC" |
|---|
| | 313 | fi |
|---|
| | 314 | |
|---|
| | 315 | AC_MSG_RESULT([make use of $ac_cv_header_stdint in $ac_stdint_h dnl |
|---|
| | 316 | $ac_cv_stdint_result]) |
|---|
| | 317 | |
|---|
| | 318 | # ----------------- DONE inttypes.h checks START header ------------- |
|---|
| | 319 | AC_CONFIG_COMMANDS([$ac_stdint_h],[ |
|---|
| | 320 | AC_MSG_NOTICE(creating $ac_stdint_h : $_ac_stdint_h) |
|---|
| | 321 | ac_stdint=$tmp/_stdint.h |
|---|
| | 322 | |
|---|
| | 323 | echo "#ifndef" $_ac_stdint_h >$ac_stdint |
|---|
| | 324 | echo "#define" $_ac_stdint_h "1" >>$ac_stdint |
|---|
| | 325 | echo "#ifndef" _GENERATED_STDINT_H >>$ac_stdint |
|---|
| | 326 | echo "#define" _GENERATED_STDINT_H '"'$PACKAGE $VERSION'"' >>$ac_stdint |
|---|
| | 327 | echo "/* generated $ac_cv_stdint_message */" >>$ac_stdint |
|---|
| | 328 | if test "_$ac_cv_header_stdint_t" != "_" ; then |
|---|
| | 329 | echo "#define _STDINT_HAVE_STDINT_H" "1" >>$ac_stdint |
|---|
| | 330 | fi |
|---|
| | 331 | |
|---|
| | 332 | cat >>$ac_stdint <<STDINT_EOF |
|---|
| | 333 | |
|---|
| | 334 | /* ................... shortcircuit part ........................... */ |
|---|
| | 335 | |
|---|
| | 336 | #if defined HAVE_STDINT_H || defined _STDINT_HAVE_STDINT_H |
|---|
| | 337 | #include <stdint.h> |
|---|
| | 338 | #else |
|---|
| | 339 | #include <stddef.h> |
|---|
| | 340 | |
|---|
| | 341 | /* .................... configured part ............................ */ |
|---|
| | 342 | |
|---|
| | 343 | STDINT_EOF |
|---|
| | 344 | |
|---|
| | 345 | echo "/* whether we have a C99 compatible stdint header file */" >>$ac_stdint |
|---|
| | 346 | if test "_$ac_cv_header_stdint_x" != "_" ; then |
|---|
| | 347 | ac_header="$ac_cv_header_stdint_x" |
|---|
| | 348 | echo "#define _STDINT_HEADER_INTPTR" '"'"$ac_header"'"' >>$ac_stdint |
|---|
| | 349 | else |
|---|
| | 350 | echo "/* #undef _STDINT_HEADER_INTPTR */" >>$ac_stdint |
|---|
| | 351 | fi |
|---|
| | 352 | |
|---|
| | 353 | echo "/* whether we have a C96 compatible inttypes header file */" >>$ac_stdint |
|---|
| | 354 | if test "_$ac_cv_header_stdint_o" != "_" ; then |
|---|
| | 355 | ac_header="$ac_cv_header_stdint_o" |
|---|
| | 356 | echo "#define _STDINT_HEADER_UINT32" '"'"$ac_header"'"' >>$ac_stdint |
|---|
| | 357 | else |
|---|
| | 358 | echo "/* #undef _STDINT_HEADER_UINT32 */" >>$ac_stdint |
|---|
| | 359 | fi |
|---|
| | 360 | |
|---|
| | 361 | echo "/* whether we have a BSD compatible inet types header */" >>$ac_stdint |
|---|
| | 362 | if test "_$ac_cv_header_stdint_u" != "_" ; then |
|---|
| | 363 | ac_header="$ac_cv_header_stdint_u" |
|---|
| | 364 | echo "#define _STDINT_HEADER_U_INT32" '"'"$ac_header"'"' >>$ac_stdint |
|---|
| | 365 | else |
|---|
| | 366 | echo "/* #undef _STDINT_HEADER_U_INT32 */" >>$ac_stdint |
|---|
| | 367 | fi |
|---|
| | 368 | |
|---|
| | 369 | echo "" >>$ac_stdint |
|---|
| | 370 | |
|---|
| | 371 | if test "_$ac_header" != "_" ; then if test "$ac_header" != "stddef.h" ; then |
|---|
| | 372 | echo "#include <$ac_header>" >>$ac_stdint |
|---|
| | 373 | echo "" >>$ac_stdint |
|---|
| | 374 | fi fi |
|---|
| | 375 | |
|---|
| | 376 | echo "/* which 64bit typedef has been found */" >>$ac_stdint |
|---|
| | 377 | if test "$ac_cv_type_uint64_t" = "yes" ; then |
|---|
| | 378 | echo "#define _STDINT_HAVE_UINT64_T" "1" >>$ac_stdint |
|---|
| | 379 | else |
|---|
| | 380 | echo "/* #undef _STDINT_HAVE_UINT64_T */" >>$ac_stdint |
|---|
| | 381 | fi |
|---|
| | 382 | if test "$ac_cv_type_u_int64_t" = "yes" ; then |
|---|
| | 383 | echo "#define _STDINT_HAVE_U_INT64_T" "1" >>$ac_stdint |
|---|
| | 384 | else |
|---|
| | 385 | echo "/* #undef _STDINT_HAVE_U_INT64_T */" >>$ac_stdint |
|---|
| | 386 | fi |
|---|
| | 387 | echo "" >>$ac_stdint |
|---|
| | 388 | |
|---|
| | 389 | echo "/* which type model has been detected */" >>$ac_stdint |
|---|
| | 390 | if test "_$ac_cv_stdint_char_model" != "_" ; then |
|---|
| | 391 | echo "#define _STDINT_CHAR_MODEL" "$ac_cv_stdint_char_model" >>$ac_stdint |
|---|
| | 392 | echo "#define _STDINT_LONG_MODEL" "$ac_cv_stdint_long_model" >>$ac_stdint |
|---|
| | 393 | else |
|---|
| | 394 | echo "/* #undef _STDINT_CHAR_MODEL // skipped */" >>$ac_stdint |
|---|
| | 395 | echo "/* #undef _STDINT_LONG_MODEL // skipped */" >>$ac_stdint |
|---|
| | 396 | fi |
|---|
| | 397 | echo "" >>$ac_stdint |
|---|
| | 398 | |
|---|
| | 399 | echo "/* whether int_least types were detected */" >>$ac_stdint |
|---|
| | 400 | if test "$ac_cv_type_int_least32_t" = "yes"; then |
|---|
| | 401 | echo "#define _STDINT_HAVE_INT_LEAST32_T" "1" >>$ac_stdint |
|---|
| | 402 | else |
|---|
| | 403 | echo "/* #undef _STDINT_HAVE_INT_LEAST32_T */" >>$ac_stdint |
|---|
| | 404 | fi |
|---|
| | 405 | echo "/* whether int_fast types were detected */" >>$ac_stdint |
|---|
| | 406 | if test "$ac_cv_type_int_fast32_t" = "yes"; then |
|---|
| | 407 | echo "#define _STDINT_HAVE_INT_FAST32_T" "1" >>$ac_stdint |
|---|
| | 408 | else |
|---|
| | 409 | echo "/* #undef _STDINT_HAVE_INT_FAST32_T */" >>$ac_stdint |
|---|
| | 410 | fi |
|---|
| | 411 | echo "/* whether intmax_t type was detected */" >>$ac_stdint |
|---|
| | 412 | if test "$ac_cv_type_intmax_t" = "yes"; then |
|---|
| | 413 | echo "#define _STDINT_HAVE_INTMAX_T" "1" >>$ac_stdint |
|---|
| | 414 | else |
|---|
| | 415 | echo "/* #undef _STDINT_HAVE_INTMAX_T */" >>$ac_stdint |
|---|
| | 416 | fi |
|---|
| | 417 | echo "" >>$ac_stdint |
|---|
| | 418 | |
|---|
| | 419 | cat >>$ac_stdint <<STDINT_EOF |
|---|
| | 420 | /* .................... detections part ............................ */ |
|---|
| | 421 | |
|---|
| | 422 | /* whether we need to define bitspecific types from compiler base types */ |
|---|
| | 423 | #ifndef _STDINT_HEADER_INTPTR |
|---|
| | 424 | #ifndef _STDINT_HEADER_UINT32 |
|---|
| | 425 | #ifndef _STDINT_HEADER_U_INT32 |
|---|
| | 426 | #define _STDINT_NEED_INT_MODEL_T |
|---|
| | 427 | #else |
|---|
| | 428 | #define _STDINT_HAVE_U_INT_TYPES |
|---|
| | 429 | #endif |
|---|
| | 430 | #endif |
|---|
| | 431 | #endif |
|---|
| | 432 | |
|---|
| | 433 | #ifdef _STDINT_HAVE_U_INT_TYPES |
|---|
| | 434 | #undef _STDINT_NEED_INT_MODEL_T |
|---|
| | 435 | #endif |
|---|
| | 436 | |
|---|
| | 437 | #ifdef _STDINT_CHAR_MODEL |
|---|
| | 438 | #if _STDINT_CHAR_MODEL+0 == 122 || _STDINT_CHAR_MODEL+0 == 124 |
|---|
| | 439 | #ifndef _STDINT_BYTE_MODEL |
|---|
| | 440 | #define _STDINT_BYTE_MODEL 12 |
|---|
| | 441 | #endif |
|---|
| | 442 | #endif |
|---|
| | 443 | #endif |
|---|
| | 444 | |
|---|
| | 445 | #ifndef _STDINT_HAVE_INT_LEAST32_T |
|---|
| | 446 | #define _STDINT_NEED_INT_LEAST_T |
|---|
| | 447 | #endif |
|---|
| | 448 | |
|---|
| | 449 | #ifndef _STDINT_HAVE_INT_FAST32_T |
|---|
| | 450 | #define _STDINT_NEED_INT_FAST_T |
|---|
| | 451 | #endif |
|---|
| | 452 | |
|---|
| | 453 | #ifndef _STDINT_HEADER_INTPTR |
|---|
| | 454 | #define _STDINT_NEED_INTPTR_T |
|---|
| | 455 | #ifndef _STDINT_HAVE_INTMAX_T |
|---|
| | 456 | #define _STDINT_NEED_INTMAX_T |
|---|
| | 457 | #endif |
|---|
| | 458 | #endif |
|---|
| | 459 | |
|---|
| | 460 | |
|---|
| | 461 | /* .................... definition part ............................ */ |
|---|
| | 462 | |
|---|
| | 463 | /* some system headers have good uint64_t */ |
|---|
| | 464 | #ifndef _HAVE_UINT64_T |
|---|
| | 465 | #if defined _STDINT_HAVE_UINT64_T || defined HAVE_UINT64_T |
|---|
| | 466 | #define _HAVE_UINT64_T |
|---|
| | 467 | #elif defined _STDINT_HAVE_U_INT64_T || defined HAVE_U_INT64_T |
|---|
| | 468 | #define _HAVE_UINT64_T |
|---|
| | 469 | typedef u_int64_t uint64_t; |
|---|
| | 470 | #endif |
|---|
| | 471 | #endif |
|---|
| | 472 | |
|---|
| | 473 | #ifndef _HAVE_UINT64_T |
|---|
| | 474 | /* .. here are some common heuristics using compiler runtime specifics */ |
|---|
| | 475 | #if defined __STDC_VERSION__ && defined __STDC_VERSION__ >= 199901L |
|---|
| | 476 | #define _HAVE_UINT64_T |
|---|
| | 477 | typedef long long int64_t; |
|---|
| | 478 | typedef unsigned long long uint64_t; |
|---|
| | 479 | |
|---|
| | 480 | #elif !defined __STRICT_ANSI__ |
|---|
| | 481 | #if defined _MSC_VER || defined __WATCOMC__ || defined __BORLANDC__ |
|---|
| | 482 | #define _HAVE_UINT64_T |
|---|
| | 483 | typedef __int64 int64_t; |
|---|
| | 484 | typedef unsigned __int64 uint64_t; |
|---|
| | 485 | |
|---|
| | 486 | #elif defined __GNUC__ || defined __MWERKS__ || defined __ELF__ |
|---|
| | 487 | /* note: all ELF-systems seem to have loff-support which needs 64-bit */ |
|---|
| | 488 | #if !defined _NO_LONGLONG |
|---|
| | 489 | #define _HAVE_UINT64_T |
|---|
| | 490 | typedef long long int64_t; |
|---|
| | 491 | typedef unsigned long long uint64_t; |
|---|
| | 492 | #endif |
|---|
| | 493 | |
|---|
| | 494 | #elif defined __alpha || (defined __mips && defined _ABIN32) |
|---|
| | 495 | #if !defined _NO_LONGLONG |
|---|
| | 496 | typedef long int64_t; |
|---|
| | 497 | typedef unsigned long uint64_t; |
|---|
| | 498 | #endif |
|---|
| | 499 | /* compiler/cpu type to define int64_t */ |
|---|
| | 500 | #endif |
|---|
| | 501 | #endif |
|---|
| | 502 | #endif |
|---|
| | 503 | |
|---|
| | 504 | #if defined _STDINT_HAVE_U_INT_TYPES |
|---|
| | 505 | /* int8_t int16_t int32_t defined by inet code, redeclare the u_intXX types */ |
|---|
| | 506 | typedef u_int8_t uint8_t; |
|---|
| | 507 | typedef u_int16_t uint16_t; |
|---|
| | 508 | typedef u_int32_t uint32_t; |
|---|
| | 509 | |
|---|
| | 510 | /* glibc compatibility */ |
|---|
| | 511 | #ifndef __int8_t_defined |
|---|
| 103 | | #endif |
|---|
| 104 | | #endif |
|---|
| 105 | | #endif |
|---|
| 106 | | EOF |
|---|
| 107 | | ])]) |
|---|
| | 582 | typedef long long int64_t; |
|---|
| | 583 | #endif |
|---|
| | 584 | #else |
|---|
| | 585 | #define _STDINT_NO_INT32_T |
|---|
| | 586 | #endif |
|---|
| | 587 | #else |
|---|
| | 588 | #define _STDINT_NO_INT8_T |
|---|
| | 589 | #define _STDINT_NO_INT32_T |
|---|
| | 590 | #endif |
|---|
| | 591 | #endif |
|---|
| | 592 | |
|---|
| | 593 | /* |
|---|
| | 594 | * quote from SunOS-5.8 sys/inttypes.h: |
|---|
| | 595 | * Use at your own risk. As of February 1996, the committee is squarely |
|---|
| | 596 | * behind the fixed sized types; the "least" and "fast" types are still being |
|---|
| | 597 | * discussed. The probability that the "fast" types may be removed before |
|---|
| | 598 | * the standard is finalized is high enough that they are not currently |
|---|
| | 599 | * implemented. |
|---|
| | 600 | */ |
|---|
| | 601 | |
|---|
| | 602 | #if defined _STDINT_NEED_INT_LEAST_T |
|---|
| | 603 | typedef int8_t int_least8_t; |
|---|
| | 604 | typedef int16_t int_least16_t; |
|---|
| | 605 | typedef int32_t int_least32_t; |
|---|
| | 606 | #ifdef _HAVE_UINT64_T |
|---|
| | 607 | typedef int64_t int_least64_t; |
|---|
| | 608 | #endif |
|---|
| | 609 | |
|---|
| | 610 | typedef uint8_t uint_least8_t; |
|---|
| | 611 | typedef uint16_t uint_least16_t; |
|---|
| | 612 | typedef uint32_t uint_least32_t; |
|---|
| | 613 | #ifdef _HAVE_UINT64_T |
|---|
| | 614 | typedef uint64_t uint_least64_t; |
|---|
| | 615 | #endif |
|---|
| | 616 | /* least types */ |
|---|
| | 617 | #endif |
|---|
| | 618 | |
|---|
| | 619 | #if defined _STDINT_NEED_INT_FAST_T |
|---|
| | 620 | typedef int8_t int_fast8_t; |
|---|
| | 621 | typedef int int_fast16_t; |
|---|
| | 622 | typedef int32_t int_fast32_t; |
|---|
| | 623 | #ifdef _HAVE_UINT64_T |
|---|
| | 624 | typedef int64_t int_fast64_t; |
|---|
| | 625 | #endif |
|---|
| | 626 | |
|---|
| | 627 | typedef uint8_t uint_fast8_t; |
|---|
| | 628 | typedef unsigned uint_fast16_t; |
|---|
| | 629 | typedef uint32_t uint_fast32_t; |
|---|
| | 630 | #ifdef _HAVE_UINT64_T |
|---|
| | 631 | typedef uint64_t uint_fast64_t; |
|---|
| | 632 | #endif |
|---|
| | 633 | /* fast types */ |
|---|
| | 634 | #endif |
|---|
| | 635 | |
|---|
| | 636 | #ifdef _STDINT_NEED_INTMAX_T |
|---|
| | 637 | #ifdef _HAVE_UINT64_T |
|---|
| | 638 | typedef int64_t intmax_t; |
|---|
| | 639 | typedef uint64_t uintmax_t; |
|---|
| | 640 | #else |
|---|
| | 641 | typedef long intmax_t; |
|---|
| | 642 | typedef unsigned long uintmax_t; |
|---|
| | 643 | #endif |
|---|
| | 644 | #endif |
|---|
| | 645 | |
|---|
| | 646 | #ifdef _STDINT_NEED_INTPTR_T |
|---|
| | 647 | #ifndef __intptr_t_defined |
|---|
| | 648 | #define __intptr_t_defined |
|---|
| | 649 | /* we encourage using "long" to store pointer values, never use "int" ! */ |
|---|
| | 650 | #if _STDINT_LONG_MODEL+0 == 242 || _STDINT_LONG_MODEL+0 == 484 |
|---|
| | 651 | typedef unsinged int uintptr_t; |
|---|
| | 652 | typedef int intptr_t; |
|---|
| | 653 | #elif _STDINT_LONG_MODEL+0 == 244 || _STDINT_LONG_MODEL+0 == 444 |
|---|
| | 654 | typedef unsigned long uintptr_t; |
|---|
| | 655 | typedef long intptr_t; |
|---|
| | 656 | #elif _STDINT_LONG_MODEL+0 == 448 && defined _HAVE_UINT64_T |
|---|
| | 657 | typedef uint64_t uintptr_t; |
|---|
| | 658 | typedef int64_t intptr_t; |
|---|
| | 659 | #else /* matches typical system types ILP32 and LP64 - but not IP16 or LLP64 */ |
|---|
| | 660 | typedef unsigned long uintptr_t; |
|---|
| | 661 | typedef long intptr_t; |
|---|
| | 662 | #endif |
|---|
| | 663 | #endif |
|---|
| | 664 | #endif |
|---|
| | 665 | |
|---|
| | 666 | /* shortcircuit*/ |
|---|
| | 667 | #endif |
|---|
| | 668 | /* once */ |
|---|
| | 669 | #endif |
|---|
| | 670 | #endif |
|---|
| | 671 | STDINT_EOF |
|---|
| | 672 | if cmp -s $ac_stdint_h $ac_stdint 2>/dev/null; then |
|---|
| | 673 | AC_MSG_NOTICE([$ac_stdint_h is unchanged]) |
|---|
| | 674 | else |
|---|
| | 675 | ac_dir=`AS_DIRNAME(["$ac_stdint_h"])` |
|---|
| | 676 | AS_MKDIR_P(["$ac_dir"]) |
|---|
| | 677 | rm -f $ac_stdint_h |
|---|
| | 678 | mv $ac_stdint $ac_stdint_h |
|---|
| | 679 | fi |
|---|
| | 680 | ],[# variables for create stdint.h replacement |
|---|
| | 681 | PACKAGE="$PACKAGE" |
|---|
| | 682 | VERSION="$VERSION" |
|---|
| | 683 | ac_stdint_h="$ac_stdint_h" |
|---|
| | 684 | _ac_stdint_h=AS_TR_CPP(_$PACKAGE-$ac_stdint_h) |
|---|
| | 685 | ac_cv_stdint_message="$ac_cv_stdint_message" |
|---|
| | 686 | ac_cv_header_stdint_t="$ac_cv_header_stdint_t" |
|---|
| | 687 | ac_cv_header_stdint_x="$ac_cv_header_stdint_x" |
|---|
| | 688 | ac_cv_header_stdint_o="$ac_cv_header_stdint_o" |
|---|
| | 689 | ac_cv_header_stdint_u="$ac_cv_header_stdint_u" |
|---|
| | 690 | ac_cv_type_uint64_t="$ac_cv_type_uint64_t" |
|---|
| | 691 | ac_cv_type_u_int64_t="$ac_cv_type_u_int64_t" |
|---|
| | 692 | ac_cv_stdint_char_model="$ac_cv_stdint_char_model" |
|---|
| | 693 | ac_cv_stdint_long_model="$ac_cv_stdint_long_model" |
|---|
| | 694 | ac_cv_type_int_least32_t="$ac_cv_type_int_least32_t" |
|---|
| | 695 | ac_cv_type_int_fast32_t="$ac_cv_type_int_fast32_t" |
|---|
| | 696 | ac_cv_type_intmax_t="$ac_cv_type_intmax_t" |
|---|
| | 697 | ]) |
|---|
| | 698 | ]) |
|---|