[mythtv-commits] Ticket #6806: Mac OS X: build fails for release-0-21-fixes

MythTV mythtv at cvs.mythtv.org
Tue Aug 4 21:05:31 UTC 2009


#6806: Mac OS X: build fails for release-0-21-fixes
-------------------------------------+--------------------------------------
 Reporter:  dweller at devonweller.com  |        Owner:  ijr       
     Type:  defect                   |       Status:  new       
 Priority:  minor                    |    Milestone:  unknown   
Component:  MythTV - General         |      Version:  0.21-fixes
 Severity:  medium                   |   Resolution:            
  Mlocked:  0                        |  
-------------------------------------+--------------------------------------

Comment(by dweller at devonweller.com):

 I figured out the problem.  The configure script at src/myth-
 svn/mythtv/configure was not detecting my quad-core Xeon CPU correctly.  I
 applied the following patch to fix it:


 {{{
 --- configure.old       2009-08-04 07:54:24.000000000 -0500
 +++ configure   2009-08-04 15:58:36.000000000 -0500
 @@ -2074,6 +2074,8 @@
     elif expr "$processor" : ".*Genuine.*Intel.*CPU" > /dev/null ; then
         ARCHFLAGS="-march=pentium4"
  # P4
 +   elif expr "$processor" : ".*Xeon(R) CPU" > /dev/null ; then
 +       ARCHFLAGS="-march=pentium4"
     elif expr "$processor" : ".*Xeon(TM) CPU" > /dev/null ; then
         ARCHFLAGS="-march=pentium4"
     elif expr "$processor" : ".*XEON(TM) CPU" > /dev/null ; then

 }}}

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/6806#comment:2>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list