svn commit: r327178 - in head/multimedia/vdr-plugin-epgsearch: . files

Juergen Lock nox at FreeBSD.org
Fri Sep 13 19:20:12 UTC 2013


Author: nox
Date: Fri Sep 13 19:20:11 2013
New Revision: 327178
URL: http://svnweb.freebsd.org/changeset/ports/327178

Log:
  - Fix bug uncovered by recent clang.
  - Bump PORTREVISION.
  
  Reported by:	beefy2 via pkg-fallout

Added:
  head/multimedia/vdr-plugin-epgsearch/files/patch-isnumber   (contents, props changed)
Modified:
  head/multimedia/vdr-plugin-epgsearch/Makefile

Modified: head/multimedia/vdr-plugin-epgsearch/Makefile
==============================================================================
--- head/multimedia/vdr-plugin-epgsearch/Makefile	Fri Sep 13 19:02:30 2013	(r327177)
+++ head/multimedia/vdr-plugin-epgsearch/Makefile	Fri Sep 13 19:20:11 2013	(r327178)
@@ -3,7 +3,7 @@
 
 PORTNAME=	vdr-plugin-epgsearch
 PORTVERSION=	1.0.1s20120322
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	multimedia
 MASTER_SITES=	http://winni.vdr-developer.org/epgsearch/downloads/beta/:beta \
 		LOCAL/nox/:snapshot

Added: head/multimedia/vdr-plugin-epgsearch/files/patch-isnumber
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/vdr-plugin-epgsearch/files/patch-isnumber	Fri Sep 13 19:20:11 2013	(r327178)
@@ -0,0 +1,30 @@
+--- a/epgsearchext.c
++++ b/epgsearchext.c
+@@ -39,6 +39,12 @@ The project's page is at http://winni.vd
+ #include "blacklist.h"
+ #include <math.h>
+ 
++#ifdef __FreeBSD__
++#ifdef isnumber
++#undef isnumber
++#endif
++#endif
++
+ cSearchExts SearchExts;
+ cSearchExts SearchTemplates;
+ 
+--- a/epgsearchsvdrp.c
++++ b/epgsearchsvdrp.c
+@@ -40,6 +40,12 @@ The project's page is at http://winni.vd
+ #include "conflictcheck.h"
+ #include "menu_main.h"
+ 
++#ifdef __FreeBSD__
++#ifdef isnumber
++#undef isnumber
++#endif
++#endif
++
+ using std::string;
+ using std::set;
+ 


More information about the svn-ports-all mailing list