1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Fix runtime issue: Non-integer frame rates could not be handled

- Fix incorrect handling of input arguments (new patch file patch-src_cmdlineextractor.h)
  Submitter proposed fix after talking to upstream author
- Bump PORTREVISION

PR:		ports/185738
Submitted by:	Sergey Chernikov (no e-mail address)
Approved by:	thierry (mentor)
MFH:		2014Q1
This commit is contained in:
Thomas Zander 2014-01-26 09:01:55 +00:00
parent c7f26330fd
commit 64fedd9aff
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=341157
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= oggvideotools PORTNAME= oggvideotools
PORTVERSION= 0.8a PORTVERSION= 0.8a
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= multimedia CATEGORIES= multimedia
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME} MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}

View File

@ -0,0 +1,11 @@
--- src/cmdlineextractor.h.orig 2010-05-30 21:11:10.000000000 +0200
+++ src/cmdlineextractor.h 2014-01-25 18:46:51.620972183 +0100
@@ -20,7 +20,7 @@
#include "oggComment.h"
#include "blendElement.h"
-const std::string validChars ( "0123456789,x" );
+const std::string validChars ( "0123456789,x:" );
const std::string
validTextChars ( "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 /\\.,=;:-_" );