monome / libmonome

makes writing applications for Monomes easy.
ISC License
302 stars 158 forks source link

macOS Mojave build failure, due to -mmacosx-version-min=10.5 #62

Closed fxcoudert closed 2 years ago

fxcoudert commented 5 years ago

The following lines in wscript:

        conf.env.append_unique("CFLAGS", ["-mmacosx-version-min=10.5"])
        conf.env.append_unique("LINKFLAGS", ["-mmacosx-version-min=10.5"])

lead to build failure with Xcode 10 on macOS Mojave, where versions of -mmacosx-version-min earlier than 10.9 are not supported anymore. Removing that code of block fixes the issue.