Changes between Initial Version and Version 1 of Ticket #34247


Ignore:
Timestamp:
Apr 28, 2012, 8:11:51 PM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

I guess we might as well add a case for Mountain Lion as well since that's coming up before too long.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34247

    • Property Keywords haspatch added
    • Property Port libcdio added
  • Ticket #34247 – Description

    initial v1  
    11libcdio 0.83 default configure misses osx driver because a bad search in configure script.
    22
     3{{{
    34zeus:~ claunia$ time sudo port install libcdio
    45Warning: port definitions are more than two weeks old, consider using selfupdate
     
    2930  bin/cuesheet disk image driver     
    3031  Nero NRG disk image driver
     32}}}
    3133
    32 Problem comes from line #16678 in configure script, it says:
    33 ''darwin6*|darwin7*|darwin8*|darwin9*)''
     34Problem comes from line 16678 in configure script, it says:
     35{{{
     36darwin6*|darwin7*|darwin8*|darwin9*)
     37}}}
    3438missing darwin10 (Mac OS X 10.6) and darwin11 (Mac OS X 10.7)
    3539
    3640changing it to
    37 ''darwin6*|darwin7*|darwin8*|darwin9*|darwin10*|darwin11*)''
     41{{{
     42darwin6*|darwin7*|darwin8*|darwin9*|darwin10*|darwin11*)
     43}}}
    3844makes configure to try to use the osx driver:
    39 ''configure:
    40 Using CD-ROM drivers : cdrdao, BIN/CUE, NRG, Darwin''
     45{{{
     46configure:
     47Using CD-ROM drivers : cdrdao, BIN/CUE, NRG, Darwin
     48}}}
    4149
    4250But then a change needs to be done on osx.c file.