diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2007-08-24 21:02:37 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2007-08-24 21:02:37 +0000 |
commit | b083a92b078309e22785b7575c25d686c59399a5 (patch) | |
tree | 963bd6c76cd45f666db625cde63d5b17c5f855ef /media-libs/libart_lgpl/files | |
parent | old (diff) | |
download | historical-b083a92b078309e22785b7575c25d686c59399a5.tar.gz historical-b083a92b078309e22785b7575c25d686c59399a5.tar.bz2 historical-b083a92b078309e22785b7575c25d686c59399a5.zip |
Cross compile patch take two: actually use correct types
Package-Manager: portage-2.1.3.6
Diffstat (limited to 'media-libs/libart_lgpl/files')
-rw-r--r-- | media-libs/libart_lgpl/files/libart_lgpl-2.3.19-crosscompile.patch | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/media-libs/libart_lgpl/files/libart_lgpl-2.3.19-crosscompile.patch b/media-libs/libart_lgpl/files/libart_lgpl-2.3.19-crosscompile.patch index 3949354e7f28..f295f4d7ea2a 100644 --- a/media-libs/libart_lgpl/files/libart_lgpl-2.3.19-crosscompile.patch +++ b/media-libs/libart_lgpl/files/libart_lgpl-2.3.19-crosscompile.patch @@ -1,20 +1,24 @@ diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN libart_lgpl-2.3.19.orig/art_config.h libart_lgpl-2.3.19/art_config.h --- libart_lgpl-2.3.19.orig/art_config.h 2007-02-28 08:00:44.000000000 -0500 -+++ libart_lgpl-2.3.19/art_config.h 2007-08-20 14:11:22.000000000 -0400 -@@ -1,10 +1,5 @@ ++++ libart_lgpl-2.3.19/art_config.h 2007-08-24 16:25:28.000000000 -0400 +@@ -1,10 +1,7 @@ /* Automatically generated by gen_art_config.c */ -#define ART_SIZEOF_CHAR 1 -#define ART_SIZEOF_SHORT 2 -#define ART_SIZEOF_INT 4 -#define ART_SIZEOF_LONG 4 -- - typedef unsigned char art_u8; - typedef unsigned short art_u16; - typedef unsigned int art_u32; ++#include <stdint.h> + +-typedef unsigned char art_u8; +-typedef unsigned short art_u16; +-typedef unsigned int art_u32; ++typedef uint8_t art_u8; ++typedef uint16_t art_u16; ++typedef uint32_t art_u32; diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN libart_lgpl-2.3.19.orig/Makefile.am libart_lgpl-2.3.19/Makefile.am --- libart_lgpl-2.3.19.orig/Makefile.am 2007-01-01 18:59:22.000000000 -0500 -+++ libart_lgpl-2.3.19/Makefile.am 2007-08-20 13:59:02.000000000 -0400 ++++ libart_lgpl-2.3.19/Makefile.am 2007-08-24 15:42:44.000000000 -0400 @@ -3,11 +3,6 @@ noinst_PROGRAMS = testart testuta gen_ar bin_SCRIPTS = \ libart2-config @@ -29,7 +33,7 @@ diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN libart_lgpl-2.3.19.orig/ libart-config.in \ diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN libart_lgpl-2.3.19.orig/Makefile.in libart_lgpl-2.3.19/Makefile.in --- libart_lgpl-2.3.19.orig/Makefile.in 2007-02-28 08:00:24.000000000 -0500 -+++ libart_lgpl-2.3.19/Makefile.in 2007-08-20 13:59:11.000000000 -0400 ++++ libart_lgpl-2.3.19/Makefile.in 2007-08-24 15:42:44.000000000 -0400 @@ -254,7 +254,6 @@ top_srcdir = @top_srcdir@ bin_SCRIPTS = \ libart2-config |