diff options
author | naddy <naddy@FreeBSD.org> | 2005-07-06 23:04:42 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2005-07-06 23:04:42 +0800 |
commit | 5cec6d39db438e0361bbd1f92b7cdd1781d45439 (patch) | |
tree | 6779df1b59e7f8aa5db99ab0129377196154feb4 /audio/vorbis-tools | |
parent | b25dfa2b0b94d333a958e52b104ba8aa8bce1e25 (diff) | |
download | freebsd-ports-gnome-5cec6d39db438e0361bbd1f92b7cdd1781d45439.tar.gz freebsd-ports-gnome-5cec6d39db438e0361bbd1f92b7cdd1781d45439.tar.zst freebsd-ports-gnome-5cec6d39db438e0361bbd1f92b7cdd1781d45439.zip |
Fix building with gcc 2.95.
Reported by: Randy Pratt <rpratt1950@earthlink.net>, kris (pointyhat)
Diffstat (limited to 'audio/vorbis-tools')
-rw-r--r-- | audio/vorbis-tools/files/patch-oggenc_encode.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/audio/vorbis-tools/files/patch-oggenc_encode.c b/audio/vorbis-tools/files/patch-oggenc_encode.c new file mode 100644 index 000000000000..f03cc5942a5a --- /dev/null +++ b/audio/vorbis-tools/files/patch-oggenc_encode.c @@ -0,0 +1,21 @@ + +$FreeBSD$ + +--- oggenc/encode.c.orig ++++ oggenc/encode.c +@@ -160,6 +160,7 @@ + /* do we have optional hard bitrate restrictions? */ + if(opt->max_bitrate > 0 || opt->min_bitrate > 0){ + struct ovectl_ratemanage2_arg ai; ++ long bitrate; + vorbis_encode_ctl(&vi, OV_ECTL_RATEMANAGE2_GET, &ai); + + /* libvorbis 1.1 (and current svn) doesn't actually fill this in, +@@ -173,7 +174,6 @@ + Also, note that this won't work correctly unless you have a very + recent (2005/03/04 or later) version of libvorbis from svn). + */ +- long bitrate; + + { + vorbis_info vi2; |