Thu Oct 30 09:04:20 2008 UTC ()
Only use one sort of fixed-size integer types. This way, it even
compiles on Solaris 10.


(is)
diff -r1.17 -r1.18 pkgsrc/misc/libcdio/distinfo
diff -r0 -r1.1 pkgsrc/misc/libcdio/patches/patch-ae
diff -r0 -r1.1 pkgsrc/misc/libcdio/patches/patch-af

cvs diff -r1.17 -r1.18 pkgsrc/misc/libcdio/distinfo (expand / switch to unified diff)

--- pkgsrc/misc/libcdio/distinfo 2008/05/22 13:18:55 1.17
+++ pkgsrc/misc/libcdio/distinfo 2008/10/30 09:04:20 1.18
@@ -1,9 +1,11 @@ @@ -1,9 +1,11 @@
1$NetBSD: distinfo,v 1.17 2008/05/22 13:18:55 drochner Exp $ 1$NetBSD: distinfo,v 1.18 2008/10/30 09:04:20 is Exp $
2 2
3SHA1 (libcdio-0.80.tar.gz) = 40c1558a65a9eca2b693d1951ed2664efbe7d1ed 3SHA1 (libcdio-0.80.tar.gz) = 40c1558a65a9eca2b693d1951ed2664efbe7d1ed
4RMD160 (libcdio-0.80.tar.gz) = 3ca404bffb107ad950505b8ccd9e659e306545cb 4RMD160 (libcdio-0.80.tar.gz) = 3ca404bffb107ad950505b8ccd9e659e306545cb
5Size (libcdio-0.80.tar.gz) = 2083287 bytes 5Size (libcdio-0.80.tar.gz) = 2083287 bytes
6SHA1 (patch-aa) = 8e70ee2840c19da3efc0c47dfa9f7ea400a1ec2e 6SHA1 (patch-aa) = 8e70ee2840c19da3efc0c47dfa9f7ea400a1ec2e
7SHA1 (patch-ab) = a2bcb4fec5acf46ede7386287dec3d0d4aa0d81e 7SHA1 (patch-ab) = a2bcb4fec5acf46ede7386287dec3d0d4aa0d81e
8SHA1 (patch-ac) = 7932908d34f8d1cc7946bce6a6d61d5036d102d6 8SHA1 (patch-ac) = 7932908d34f8d1cc7946bce6a6d61d5036d102d6
9SHA1 (patch-ad) = c675f7413a672cb7b37c073b01d43339467e636c 9SHA1 (patch-ad) = c675f7413a672cb7b37c073b01d43339467e636c
 10SHA1 (patch-ae) = 2d9248077d271640aa89327d716c0434f114d580
 11SHA1 (patch-af) = 112d329207e2dfdbd792113caef8dc03a71a294f

File Added: pkgsrc/misc/libcdio/patches/Attic/patch-ae
$NetBSD: patch-ae,v 1.1 2008/10/30 09:04:20 is Exp $

--- src/cddb.h.orig	2007-06-16 22:12:16.000000000 +0200
+++ src/cddb.h
@@ -38,7 +38,7 @@ cddb_opts_t cddb_opts;
       the total length of the disk, and 
       the number of tracks.
 */
-u_int32_t cddb_discid(CdIo_t *p_cdio, track_t i_tracks);
+uint32_t cddb_discid(CdIo_t *p_cdio, track_t i_tracks);
 
 #ifdef HAVE_CDDB
 #include <cddb/cddb.h>

File Added: pkgsrc/misc/libcdio/patches/Attic/patch-af
$NetBSD: patch-af,v 1.1 2008/10/30 09:04:20 is Exp $

--- src/cddb.c.orig	2007-06-16 22:12:16.000000000 +0200
+++ src/cddb.c
@@ -48,7 +48,7 @@ cddb_dec_digit_sum(int n)
       the total length of the disk, and 
       the number of tracks.
 */
-u_int32_t
+uint32_t
 cddb_discid(CdIo_t *p_cdio, track_t i_tracks)
 {
   int i,t,n=0;