RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Ralf S. Engelschall
Root: /v/rpm/cvs Email: rse@rpm5.org
Module: rpm Date: 12-Nov-2007 15:33:57
Branch: HEAD Handle: 2007111214335700
Modified files:
rpm CHANGES configure.ac system.h
rpm/rpmio md4.c tiger.c
Log:
relocate <stdint.h> usage to system.h, too.
Summary:
Revision Changes Path
1.1813 +1 -0 rpm/CHANGES
2.250 +1 -1 rpm/configure.ac
1.6 +0 -4 rpm/rpmio/md4.c
1.7 +0 -4 rpm/rpmio/tiger.c
2.96 +3 -0 rpm/system.h
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/CHANGES
============================================================================
$ cvs diff -u -r1.1812 -r1.1813 CHANGES
--- rpm/CHANGES 12 Nov 2007 13:34:04 -0000 1.1812
+++ rpm/CHANGES 12 Nov 2007 14:33:57 -0000 1.1813
@@ -1,4 +1,5 @@
5.0a1 -> 5.0a2:
+ - rse: relocate <stdint.h> usage to "system.h", too.
- rse: relocate <inttypes.h> usage to "system.h" and add corresponding Autoconf check
- rse: fix type mismatches between function prototype and function definitions related to uint64_t
- rse: replace still existing u_int32_t with uint32_t to get building under Solaris
@@ .
patch -p0 <<'@@ .'
Index: rpm/configure.ac
============================================================================
$ cvs diff -u -r2.249 -r2.250 configure.ac
--- rpm/configure.ac 12 Nov 2007 13:34:04 -0000 2.249
+++ rpm/configure.ac 12 Nov 2007 14:33:57 -0000 2.250
@@ -475,7 +475,7 @@
machine/types.h mntent.h sys/mnttab.h sys/systemcfg.h dnl
sys/param.h sys/mount.h sys/mntctl.h sys/vmount.h dnl
libio.h err.h mcheck.h limits.h libgen.h float.h dnl
- glob.h poll.h netinet/in.h arpa/inet.h inttypes.h dnl
+ glob.h poll.h netinet/in.h arpa/inet.h stdint.h inttypes.h dnl
])
dnl # GNU gettext support
@@ .
patch -p0 <<'@@ .'
Index: rpm/rpmio/md4.c
============================================================================
$ cvs diff -u -r1.5 -r1.6 md4.c
--- rpm/rpmio/md4.c 19 Jul 2007 19:07:56 -0000 1.5
+++ rpm/rpmio/md4.c 12 Nov 2007 14:33:57 -0000 1.6
@@ -10,10 +10,6 @@
*/
#include "system.h"
-#if defined(HAVE_STDINT_H)
-#include <stdint.h>
-#endif
-
#include "md4.h"
#include <beecrypt/mp.h>
#include <beecrypt/endianness.h>
@@ .
patch -p0 <<'@@ .'
Index: rpm/rpmio/tiger.c
============================================================================
$ cvs diff -u -r1.6 -r1.7 tiger.c
--- rpm/rpmio/tiger.c 18 Sep 2007 06:47:54 -0000 1.6
+++ rpm/rpmio/tiger.c 12 Nov 2007 14:33:57 -0000 1.7
@@ -1,9 +1,5 @@
#include "system.h"
-#if defined(HAVE_STDINT_H)
-#include <stdint.h>
-#endif
-
#include "tiger.h"
#include <beecrypt/mp.h>
#include <beecrypt/endianness.h>
@@ .
patch -p0 <<'@@ .'
Index: rpm/system.h
============================================================================
$ cvs diff -u -r2.95 -r2.96 system.h
--- rpm/system.h 12 Nov 2007 13:34:04 -0000 2.95
+++ rpm/system.h 12 Nov 2007 14:33:57 -0000 2.96
@@ -10,6 +10,9 @@
#endif
#include <sys/types.h>
+#if defined(HAVE_STDINT_H)
+#include <stdint.h>
+#endif
#if defined(HAVE_INTTYPES_H)
#include <inttypes.h>
#endif
@@ .
Received on Mon Nov 12 15:33:57 2007