|
From: Marcel T. <te...@us...> - 2005-07-15 03:50:02
|
Update of /cvsroot/openwince/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25802 Modified Files: ChangeLog NEWS acinclude.m4 Log Message: 2005-07-15 Marcel Telka <ma...@te...> * acinclude.m4 (AX_CREATE_STDINT_H): Fixed typo (unsinged -> unsigned). Index: acinclude.m4 =================================================================== RCS file: /cvsroot/openwince/include/acinclude.m4,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- acinclude.m4 14 Jul 2005 16:16:35 -0000 1.3 +++ acinclude.m4 15 Jul 2005 03:49:53 -0000 1.4 @@ -552,7 +552,7 @@ #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; Index: ChangeLog =================================================================== RCS file: /cvsroot/openwince/include/ChangeLog,v retrieving revision 1.84 retrieving revision 1.85 diff -u -d -r1.84 -r1.85 --- ChangeLog 14 Jul 2005 16:16:35 -0000 1.84 +++ ChangeLog 15 Jul 2005 03:49:53 -0000 1.85 @@ -1,3 +1,7 @@ +2005-07-15 Marcel Telka <ma...@te...> + + * acinclude.m4 (AX_CREATE_STDINT_H): Fixed typo (unsinged -> unsigned). + 2005-07-14 Marcel Telka <ma...@te...> * acinclude.m4 (AX_CREATE_STDINT_H): Updated to version from ac-archive 0.5.63. Index: NEWS =================================================================== RCS file: /cvsroot/openwince/include/NEWS,v retrieving revision 1.54 retrieving revision 1.55 diff -u -d -r1.54 -r1.55 --- NEWS 14 Jul 2005 16:16:35 -0000 1.54 +++ NEWS 15 Jul 2005 03:49:53 -0000 1.55 @@ -4,6 +4,7 @@ * 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): |