Author: pebender
Date: Wed Jan 14 16:52:42 2009
New Revision: 4247

Added:
     
trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/files/mythtv-0.20-changeset_19245.patch
     
trunk/gar-minimyth/script/myth-0.20/mythtv/files/mythtv-0.20-changeset_19245.patch
     
trunk/gar-minimyth/script/myth-0.21/mythtv/files/mythtv-0.21-changeset_19245.patch
Modified:
    trunk/gar-minimyth/html/minimyth/document-changelog.txt
    trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/Makefile
    trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/checksums
    trunk/gar-minimyth/script/myth-0.20/mythtv/Makefile
    trunk/gar-minimyth/script/myth-0.20/mythtv/checksums
    trunk/gar-minimyth/script/myth-0.21/mythtv/Makefile
    trunk/gar-minimyth/script/myth-0.21/mythtv/checksums

Log:
- Fixed a bug when compiling MythTV 0.20 or 0.21 with the 2.6.28 linux
   headers by backporting MythTV SVN changeset 19245.



Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt     (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt     Wed Jan 14  
16:52:42 2009
@@ -1,7 +1,7 @@
  MiniMyth Changelog

   
--------------------------------------------------------------------------------
-Changes since 63 (2009-01-13):
+Changes since 63 (2009-01-14):

  Current MythTV versions
      MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch  
svn 16082,
@@ -85,6 +85,8 @@
        included in MiniMyth.
      - Fixed a bug in kernel-2.6.28/linux that could cause packages that
        include linux/serial.h to fail to compile.
+    - Fixed a bug when compiling MythTV 0.20 or 0.21 with the 2.6.28 linux
+      headers by backporting MythTV SVN changeset 19245.

  Updated packages
      Updated db/sqlite.

Modified: trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/Makefile
==============================================================================
--- trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/Makefile (original)
+++ trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/Makefile Wed Jan 14  
16:52:42 2009
@@ -5,6 +5,7 @@
  DISTFILES = $(DISTNAME).tar.bz2
  PATCHFILES  =
  PATCHFILES += \
+       $(DISTNAME_SHORT)-changeset_19245.patch \
        $(DISTNAME_SHORT)-ticket-3035-20070207.patch \
        $(DISTNAME_SHORT)-ticket-4225-20071220.patch \
        $(DISTNAME_SHORT)-dvdnav_shared.patch \

Modified: trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/checksums
==============================================================================
--- trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/checksums        
(original)
+++ trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/checksums        Wed Jan 
14  
16:52:42 2009
@@ -1,3 +1,4 @@
+695ea02e5b2d573076329777c4c31987   
download/mythtv-0.20-changeset_19245.patch
  43b6d9c7a82098c9c4836a1159edb51a   
download/mythtv-0.20-ticket-3035-20070207.patch
  84c48c347be19ddee6ec2870dc9d2b58   
download/mythtv-0.20-ticket-4225-20071220.patch
  646546a3ab5a213757997d56347a28b4  download/mythtv-0.20-dvdnav_shared.patch

Added:  
trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/files/mythtv-0.20-changeset_19245.patch
==============================================================================
--- (empty file)
+++  
trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/files/mythtv-0.20-changeset_19245.patch
       
Wed Jan 14 16:52:42 2009
@@ -0,0 +1,21 @@
+diff -Naur mythtv-0.20-16082-old/libs/libmythtv/dvbtypes.h  
mythtv-0.20-16082-new/libs/libmythtv/dvbtypes.h
+--- mythtv-0.20-16082-old/libs/libmythtv/dvbtypes.h    2008-09-15  
14:04:57.000000000 -0700
++++ mythtv-0.20-16082-new/libs/libmythtv/dvbtypes.h    2009-01-14  
16:42:32.000000000 -0800
+@@ -25,7 +25,7 @@
+ #include <qmutex.h>
+
+ #include <linux/dvb/version.h>
+-#if (DVB_API_VERSION != 3)
++#if (DVB_API_VERSION != 3 && DVB_API_VERSION != 5)
+ #error "DVB driver includes with API version 3 not found!"
+ #endif
+
+@@ -36,7 +36,7 @@
+ #include <linux/dvb/frontend.h>
+ #include <linux/dvb/dmx.h>
+
+-#if (DVB_API_VERSION >= 3 && DVB_API_VERSION_MINOR >= 1)
++#if ((DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1) ||  
(DVB_API_VERSION > 3))
+ #    define USE_ATSC
+ #else
+ #warning DVB API version < 3.1

Modified: trunk/gar-minimyth/script/myth-0.20/mythtv/Makefile
==============================================================================
--- trunk/gar-minimyth/script/myth-0.20/mythtv/Makefile (original)
+++ trunk/gar-minimyth/script/myth-0.20/mythtv/Makefile Wed Jan 14 16:52:42  
2009
@@ -5,6 +5,7 @@
  DISTFILES = $(DISTNAME).tar.bz2
  PATCHFILES  =
  PATCHFILES += \
+       $(DISTNAME_SHORT)-changeset_19245.patch \
        $(DISTNAME_SHORT)-ticket-3035-20070207.patch \
        $(DISTNAME_SHORT)-ticket-4225-20071220.patch \
        $(DISTNAME_SHORT)-dvdnav_shared.patch \

Modified: trunk/gar-minimyth/script/myth-0.20/mythtv/checksums
==============================================================================
--- trunk/gar-minimyth/script/myth-0.20/mythtv/checksums        (original)
+++ trunk/gar-minimyth/script/myth-0.20/mythtv/checksums        Wed Jan 14  
16:52:42 2009
@@ -1,3 +1,4 @@
+695ea02e5b2d573076329777c4c31987   
download/mythtv-0.20-changeset_19245.patch
  cb751a4ee51e741ee1f26fadfd858880   
download/mythtv-0.20-ticket-3035-20070207.patch
  7b3a199ef094358091629aebe2f18c65   
download/mythtv-0.20-ticket-4225-20071220.patch
  646546a3ab5a213757997d56347a28b4  download/mythtv-0.20-dvdnav_shared.patch

Added:  
trunk/gar-minimyth/script/myth-0.20/mythtv/files/mythtv-0.20-changeset_19245.patch
==============================================================================
--- (empty file)
+++  
trunk/gar-minimyth/script/myth-0.20/mythtv/files/mythtv-0.20-changeset_19245.patch
       
Wed Jan 14 16:52:42 2009
@@ -0,0 +1,21 @@
+diff -Naur mythtv-0.20-16082-old/libs/libmythtv/dvbtypes.h  
mythtv-0.20-16082-new/libs/libmythtv/dvbtypes.h
+--- mythtv-0.20-16082-old/libs/libmythtv/dvbtypes.h    2008-09-15  
14:04:57.000000000 -0700
++++ mythtv-0.20-16082-new/libs/libmythtv/dvbtypes.h    2009-01-14  
16:42:32.000000000 -0800
+@@ -25,7 +25,7 @@
+ #include <qmutex.h>
+
+ #include <linux/dvb/version.h>
+-#if (DVB_API_VERSION != 3)
++#if (DVB_API_VERSION != 3 && DVB_API_VERSION != 5)
+ #error "DVB driver includes with API version 3 not found!"
+ #endif
+
+@@ -36,7 +36,7 @@
+ #include <linux/dvb/frontend.h>
+ #include <linux/dvb/dmx.h>
+
+-#if (DVB_API_VERSION >= 3 && DVB_API_VERSION_MINOR >= 1)
++#if ((DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1) ||  
(DVB_API_VERSION > 3))
+ #    define USE_ATSC
+ #else
+ #warning DVB API version < 3.1

Modified: trunk/gar-minimyth/script/myth-0.21/mythtv/Makefile
==============================================================================
--- trunk/gar-minimyth/script/myth-0.21/mythtv/Makefile (original)
+++ trunk/gar-minimyth/script/myth-0.21/mythtv/Makefile Wed Jan 14 16:52:42  
2009
@@ -5,6 +5,7 @@
  DISTFILES = $(DISTNAME).tar.bz2
  PATCHFILES  =
  PATCHFILES += \
+       $(DISTNAME_SHORT)-changeset_19245.patch \
        $(DISTNAME_SHORT)-dvdnav_shared.patch \
        $(DISTNAME_SHORT)-libdvdread_udf.patch \
        $(DISTNAME_SHORT)-fftw3f.patch \

Modified: trunk/gar-minimyth/script/myth-0.21/mythtv/checksums
==============================================================================
--- trunk/gar-minimyth/script/myth-0.21/mythtv/checksums        (original)
+++ trunk/gar-minimyth/script/myth-0.21/mythtv/checksums        Wed Jan 14  
16:52:42 2009
@@ -1,3 +1,4 @@
+707ead439183d5b61ebd2a768c8b24ad   
download/mythtv-0.21-changeset_19245.patch
  bb5a7d07bf8b6f045ab4062c0a7001a8  download/mythtv-0.21-dvdnav_shared.patch
  cc35d01921f0f3f15bfe4560d10e9f11  download/mythtv-0.21-libdvdread_udf.patch
  449ffad3b2489de0f7ffc27736a73a5e  download/mythtv-0.21-fftw3f.patch

Added:  
trunk/gar-minimyth/script/myth-0.21/mythtv/files/mythtv-0.21-changeset_19245.patch
==============================================================================
--- (empty file)
+++  
trunk/gar-minimyth/script/myth-0.21/mythtv/files/mythtv-0.21-changeset_19245.patch
       
Wed Jan 14 16:52:42 2009
@@ -0,0 +1,21 @@
+diff -Naur mythtv-0.21-19653-old/libs/libmythtv/dvbtypes.h  
mythtv-0.21-19653-new/libs/libmythtv/dvbtypes.h
+--- mythtv-0.21-19653-old/libs/libmythtv/dvbtypes.h    2009-01-13  
13:18:50.000000000 -0800
++++ mythtv-0.21-19653-new/libs/libmythtv/dvbtypes.h    2009-01-14  
16:46:34.000000000 -0800
+@@ -19,7 +19,7 @@
+ #include <linux/dvb/frontend.h>
+ #include <linux/dvb/dmx.h>
+
+-#if (DVB_API_VERSION != 3)
++#if (DVB_API_VERSION != 3 && DVB_API_VERSION != 5)
+ #    error "DVB driver includes with API version 3 not found!"
+ #endif
+
+@@ -27,7 +27,7 @@
+ #    define DVB_API_VERSION_MINOR 0
+ #endif
+
+-#if (DVB_API_VERSION >= 3 && DVB_API_VERSION_MINOR >= 1)
++#if ((DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1) ||  
(DVB_API_VERSION > 3))
+ #    define USE_ATSC
+ #else
+ #warning DVB API version < 3.1

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to