diff options
author | dholland <dholland@pkgsrc.org> | 2011-09-04 04:42:40 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2011-09-04 04:42:40 +0000 |
commit | 0ae482c90a23c6cd7800e5b5372bcf60bf9e6644 (patch) | |
tree | 62a117560d6f8705928a7fe59b12bac05393fa06 | |
parent | 4d92a17a476b95ef8b6628ad0af6fb3cee4b6467 (diff) | |
download | pkgsrc-0ae482c90a23c6cd7800e5b5372bcf60bf9e6644.tar.gz |
Fix gcc/c99 inline mess.
-rw-r--r-- | audio/mp3_check/distinfo | 4 | ||||
-rw-r--r-- | audio/mp3_check/patches/patch-ab | 28 |
2 files changed, 27 insertions, 5 deletions
diff --git a/audio/mp3_check/distinfo b/audio/mp3_check/distinfo index f2530d1c4b5..ab54eae27c1 100644 --- a/audio/mp3_check/distinfo +++ b/audio/mp3_check/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.7 2009/07/30 20:12:39 drochner Exp $ +$NetBSD: distinfo,v 1.8 2011/09/04 04:42:40 dholland Exp $ SHA1 (mp3_check-1.98.tar.gz) = 64f796d9b29fecb34ce05b05d75404aadd8fdb52 RMD160 (mp3_check-1.98.tar.gz) = d05203fdd1bc7079b6dfb71ed4f3b0ad074256b4 Size (mp3_check-1.98.tar.gz) = 83098 bytes SHA1 (patch-aa) = a58c9a6ff729e9bc41b259146773a18440a41a8e -SHA1 (patch-ab) = 6c63b7addb3721d392a00d36e8efef8464b66ebd +SHA1 (patch-ab) = 91d2760874cecf7f6a718c93107ff753870e4b4f SHA1 (patch-ac) = 297f6315c44801764acae0b2f34ed1e05f6fefce diff --git a/audio/mp3_check/patches/patch-ab b/audio/mp3_check/patches/patch-ab index 8f9a9f73e3e..a530482092d 100644 --- a/audio/mp3_check/patches/patch-ab +++ b/audio/mp3_check/patches/patch-ab @@ -1,8 +1,21 @@ -$NetBSD: patch-ab,v 1.1 2002/01/21 11:34:57 wiz Exp $ +$NetBSD: patch-ab,v 1.2 2011/09/04 04:42:41 dholland Exp $ ---- mp3_check_misc.c.orig Sat Sep 16 05:36:01 2000 +- fix gcc/c99 inline mess +- initialize the uninitialized (not sure if this is necessary or just to + silence the compiler) + +--- mp3_check_misc.c.orig 2000-09-16 03:36:01.000000000 +0000 +++ mp3_check_misc.c -@@ -631,6 +631,8 @@ +@@ -11,7 +11,7 @@ + #include "support_functions.h" + + // Function prototypes go here. +-inline int move_to_next_frame(char *possible_mp3_tag, frame_info *mp3_i, gen_info *file_info, command_flags *flags, FILE *); ++static inline int move_to_next_frame(char *possible_mp3_tag, frame_info *mp3_i, gen_info *file_info, command_flags *flags, FILE *); + int get_char_from_file(FILE *, unsigned int *header_value, gen_info *file_info, command_flags *flags, char *possible_mp3_tag); + int scan_file(FILE *, char *filename, meta_options *flag_options, command_flags *flags); + int parse_args(char **argv, meta_options *flag_options, command_flags *flags); +@@ -631,6 +631,8 @@ parse_args(argv, flag_options, flags) int error_count = 0; int found_file = FALSE; @@ -11,3 +24,12 @@ $NetBSD: patch-ab,v 1.1 2002/01/21 11:34:57 wiz Exp $ do { if (*argv) { +@@ -670,7 +672,7 @@ parse_args(argv, flag_options, flags) + return(PASS); + } + +-inline int ++static inline int + move_to_next_frame(possible_mp3_tag, mp3_i, file_info, flags, fp) + char *possible_mp3_tag; + frame_info *mp3_i; |