svn commit: r382371 - head/multimedia/xbmc-addon-pvr/files

Jan Beich jbeich at FreeBSD.org
Fri Mar 27 07:06:56 UTC 2015


Author: jbeich
Date: Fri Mar 27 07:06:54 2015
New Revision: 382371
URL: https://svnweb.freebsd.org/changeset/ports/382371
QAT: https://qat.redports.org/buildarchive/r382371/

Log:
  Unbreak build on 10.0 and 10.1 after r381731
  
  time_t tends to be bootlegged otherwise:
  
    lib/cppmyth/cppmyth/src/mythtypes.h:28,
    /usr/include/c++/4.2/string:47,
    /usr/include/c++/4.2/bits/char_traits.h:46,
    /usr/include/c++/4.2/bits/stl_algobase.h:70,
    /usr/include/c++/4.2/iosfwd:46,
    /usr/include/c++/4.2/bits/c++io.h:43,
    /usr/include/c++/4.2/bits/gthr.h:114,
    /usr/include/c++/4.2/bits/gthr-default.h:43,
    /usr/include/pthread.h:47,
    /usr/include/time.h:65,
  
    lib/cppmyth/cppmyth/src/mythtypes.h:28:
    /usr/include/c++/v1/string:434:
    /usr/include/c++/v1/__config:23:
    /usr/include/unistd.h:37:
    /usr/include/sys/types.h:209:
  
  Reported by:	decke (maintainer, via pkg-fallout)
  Pointy hat:	jbeich

Added:
  head/multimedia/xbmc-addon-pvr/files/patch-lib_cppmyth_cppmyth_src_mythtypes.h   (contents, props changed)

Added: head/multimedia/xbmc-addon-pvr/files/patch-lib_cppmyth_cppmyth_src_mythtypes.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/xbmc-addon-pvr/files/patch-lib_cppmyth_cppmyth_src_mythtypes.h	Fri Mar 27 07:06:54 2015	(r382371)
@@ -0,0 +1,10 @@
+--- lib/cppmyth/cppmyth/src/mythtypes.h.orig	2015-03-01 20:42:14 UTC
++++ lib/cppmyth/cppmyth/src/mythtypes.h
+@@ -27,6 +27,7 @@
+ 
+ #include <string>
+ #include <stdint.h>
++#include <time.h>
+ #include <vector>
+ #include <map>
+ 


More information about the svn-ports-head mailing list