diff options
author | grant <grant@pkgsrc.org> | 2003-07-30 17:21:06 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-07-30 17:21:06 +0000 |
commit | 8257275c8b2b3bf27a564a3413321f1c056720d1 (patch) | |
tree | d081c552d4b686ee1e71ddf4e65de840aef8de87 /audio/SDL_mixer | |
parent | 4de50fcf1bd8c4628ef623c3f9bc1ca6ea64bcbc (diff) | |
download | pkgsrc-8257275c8b2b3bf27a564a3413321f1c056720d1.tar.gz |
fix multiline literals in configure script to appease gcc3.3.
from Jonathan Perkin in PR pkg/22294.
Diffstat (limited to 'audio/SDL_mixer')
-rw-r--r-- | audio/SDL_mixer/distinfo | 3 | ||||
-rw-r--r-- | audio/SDL_mixer/patches/patch-ab | 25 |
2 files changed, 27 insertions, 1 deletions
diff --git a/audio/SDL_mixer/distinfo b/audio/SDL_mixer/distinfo index 4d82309a0e5..c244c1f6a13 100644 --- a/audio/SDL_mixer/distinfo +++ b/audio/SDL_mixer/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2003/05/11 02:23:19 salo Exp $ +$NetBSD: distinfo,v 1.3 2003/07/30 17:21:06 grant Exp $ SHA1 (SDL_mixer-1.2.5.tar.gz) = 48c7c7143f0a0a21e94e743ca0fafd7ae33f62dd Size (SDL_mixer-1.2.5.tar.gz) = 936765 bytes SHA1 (patch-aa) = c55dcaf2251370131d90d6834eb8244c08342d98 +SHA1 (patch-ab) = b14eacc9fcc377ace9475a25408cf59689ba4c29 diff --git a/audio/SDL_mixer/patches/patch-ab b/audio/SDL_mixer/patches/patch-ab new file mode 100644 index 00000000000..1c09d3d7d58 --- /dev/null +++ b/audio/SDL_mixer/patches/patch-ab @@ -0,0 +1,25 @@ +$NetBSD: patch-ab,v 1.1 2003/07/30 17:21:08 grant Exp $ + +--- configure.orig 2003-03-07 06:29:16.000000000 +0000 ++++ configure 2003-07-29 12:14:17.192643000 +0100 +@@ -2458,16 +2458,11 @@ + } + else + { +- printf("\n*** 'smpeg-config --version' returned %d.%d.%d, but the +-minimum version\n", $smpeg_major_version, $smpeg_minor_version, +-$smpeg_micro_version); +- printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is +-correct, then it is\n", major, minor, micro); ++ printf("\n*** 'smpeg-config --version' returned %d.%d.%d, but the minimum version\n", $smpeg_major_version, $smpeg_minor_version, $smpeg_micro_version); ++ printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is correct, then it is\n", major, minor, micro); + printf("*** best to upgrade to the required version.\n"); +- printf("*** If smpeg-config was wrong, set the environment variable +-SMPEG_CONFIG\n"); +- printf("*** to point to the correct copy of smpeg-config, and remove +-the file\n"); ++ printf("*** If smpeg-config was wrong, set the environment variable SMPEG_CONFIG\n"); ++ printf("*** to point to the correct copy of smpeg-config, and remove the file\n"); + printf("*** config.cache before re-running configure\n"); + return 1; + } |