2005-07-15 Marcel Telka <marcel@telka.sk>

* acinclude.m4 (AX_CREATE_STDINT_H): Fixed typo (unsinged -> unsigned).


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@658 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 20 years ago
parent 7547073cc3
commit 83923c9a4b

@ -1,3 +1,7 @@
2005-07-15 Marcel Telka <marcel@telka.sk>
* acinclude.m4 (AX_CREATE_STDINT_H): Fixed typo (unsinged -> unsigned).
2005-07-14 Marcel Telka <marcel@telka.sk>
* acinclude.m4 (AX_CREATE_STDINT_H): Updated to version from ac-archive 0.5.63.

@ -4,6 +4,7 @@ include-0.4.1:
* Updated stdint.h support from latest ac-archive package for better conformance
with SUSv3 standard.
* Fixed typo (compiler error) in common stdint.h implementation.
include-0.4 (2005-07-12):

@ -552,7 +552,7 @@ typedef unsigned long uintmax_t;
#define __intptr_t_defined
/* we encourage using "long" to store pointer values, never use "int" ! */
#if _STDINT_LONG_MODEL+0 == 242 || _STDINT_LONG_MODEL+0 == 484
typedef unsinged int uintptr_t;
typedef unsigned int uintptr_t;
typedef int intptr_t;
#elif _STDINT_LONG_MODEL+0 == 244 || _STDINT_LONG_MODEL+0 == 444
typedef unsigned long uintptr_t;

Loading…
Cancel
Save