Thanks, will do. I was originally going to range it — then realized I was already at the bottom of the OS pile, and darwin 8 was as low as we can go :>
It gives me such odd satisfaction to keep these old machines in current software … reduce, reuse, recycle, all that. Ken > On Oct 7, 2017, at 3:56 PM, Ryan Schmidt <[email protected]> wrote: > > >> On Oct 7, 2017, at 16:24, Ken <[email protected]> wrote: >> >> Ken (kencu) pushed a commit to branch master >> in repository macports-ports. >> >> >> https://github.com/macports/macports-ports/commit/d14304ee7ae30252ab1dc0064c228909e2169c02 >> >> The following commit(s) were added to refs/heads/master by this push: >> >> new d14304e fish: fix build on Tiger >> >> d14304e is described below >> >> >> commit d14304ee7ae30252ab1dc0064c228909e2169c02 >> >> Author: kencu <[email protected]> >> AuthorDate: Sat Oct 7 14:22:37 2017 -0700 >> >> >> fish: fix build on Tiger >> >> >> >> tiny fix to allow successful install on Tiger > > >> +# fix build on Tiger >> +if { ${os.platform} eq "darwin" && ${os.major} == 8 } { >> + configure.cxxflags-append -D__DARWIN_UNIX03=1 >> +} > > This is fine, but note that you can also write, more simply: > > platform darwin 8 { > configure.cxxflags-append -D__DARWIN_UNIX03=1 > } > > >
