Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add -config intel option to allow building for Intel targets only on Mac.

This doesn't change building of the used libraries, so librbspeex etc. are
still built as universal libraries. Building for Intel also targets 10.5 and up
instead of 10.4 and up which is targeted by default. Addresses FS#10938.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27997 a1c6a512-1295-4272-9138-f99709370657

+12 -3
+12 -3
rbutil/rbutilqt/rbutilqt.pro
··· 141 141 LIBS += -Wl,-Bstatic -lusb -Wl,-Bdynamic 142 142 } 143 143 144 - macx { 145 - QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk 144 + # if -config intel is specified use 10.5 SDK and don't build for PPC 145 + macx:!intel { 146 + CONFIG += ppc 146 147 QMAKE_LFLAGS_PPC=-mmacosx-version-min=10.4 -arch ppc 147 148 QMAKE_LFLAGS_X86=-mmacosx-version-min=10.4 -arch i386 148 - CONFIG+=x86 ppc 149 + QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.4u.sdk 150 + } 151 + macx:intel { 152 + QMAKE_LFLAGS_X86=-mmacosx-version-min=10.5 -arch i386 153 + QMAKE_MAC_SDK=/Developer/SDKs/MacOSX10.5.sdk 154 + QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.5 155 + } 156 + macx { 157 + CONFIG += x86 149 158 LIBS += -L/usr/local/lib -lz \ 150 159 -framework IOKit -framework CoreFoundation -framework Carbon \ 151 160 -framework SystemConfiguration -framework CoreServices