forked from andoma/movian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.osx
executable file
·215 lines (183 loc) · 4.95 KB
/
configure.osx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/bin/bash
#
# HTS configure script for Mac OS X
#
# Copyright (c) 2009-2010 Mattias Wadman
#
# Based on FFmpeg's configure script:
#
# Copyright (c) 2000-2002 Fabrice Bellard
# Copyright (c) 2005-2008 Diego Biurrun
# Copyright (c) 2005-2008 Mans Rullgard
#
OS="osx"
DEFAULT_UI="glw"
CONFIGURE_POSTFIX="osx"
source support/configure.inc
CPU=generic
ARCH=`uname -m`
MACOSXTARGET=""
MACOSXSDK=""
show_help(){
common_help
echo " --prefix=PREFIX Install in PREFIX [$PREFIX]"
echo " --arch=arch Build for this architecture [$ARCH]"
echo " --cpu=cpu Build and optimize for specific CPU"
echo " --cc=CC Build using the given compiler"
echo " --release Stage for release"
echo " --macosxsdk=PATH Mac OS X SDK path [$MACOSXSDK]"
echo " --spotify-framework=PATH Path to libspotify.framework"
exit 1
}
enable sqlite_internal
enable libfreetype
enable glw
enable glw_frontend_cocoa
enable glw_backend_opengl
enable coreaudio
#enable appleremote
enable bonjour
enable spotlight
enable spidermonkey
enable stdin
enable httpserver
enable timegm
enable realpath
enable polarssl
enable librtmp
enable dvd
enable spotify
enable vda
enable fsevents
enable webpopup
for opt do
optval="${opt#*=}"
case "$opt" in
--prefix=*) PREFIX="$optval"
;;
--cpu=*) CPU="$optval"
;;
--help) show_help
;;
--release)
enable release
;;
--cc=*) CC="$optval"
;;
--arch=*) ARCH="$optval"
;;
--macosx-sdk=*) MACOSXSDK="$optval"
;;
--spotify-framework=*) SPOTIFY_FRAMEWORK="$optval"
;;
*)
common_opt $opt $optval
esac
done
setup_env "$@"
enable libpthread
enable zlib
#
# c compiler
#
checkcc() {
cat >$TMPDIR/1.c <<EOF
int main() {
return 0;
}
EOF
$CC 2>/dev/null $TMPDIR/1.c -o $TMPDIR/1.bin
}
if [ "x$CC" != "x" ]; then
echo >>${CONFIG_MAK} "CC=$CC"
CC="$CC"
else
CC="cc"
fi
if checkcc; then
echo "Using C compiler: $CC"
else
echo "C compiler ($CC) is not working"
die
fi
echo >>${CONFIG_MAK} $CC_CONFIG_MAK
#
# Check SDK path and set target version
#
if [ "x$MACOSXSDK" != "x" ] ; then
if [ -d "$MACOSXSDK" ] ; then
SDKSETTINGS="$MACOSXSDK/SDKSettings"
if [ ! -e "$SDKSETTINGS.plist" ] ; then
echo "Could not find $SDKSETTINGS.plist"
die
fi
MACOSXTARGET=`defaults read $SDKSETTINGS Version`
echo "Mac OS X SDK: $MACOSXSDK"
echo "Mac OS X target: $MACOSXTARGET"
else
echo "Mac OS X SDK directory $MACOSXSDK does not exist"
die
fi
MACOSXSDK_CFLAGS="-mmacosx-version-min=$MACOSXTARGET -isysroot $MACOSXSDK"
MACOSXSDK_LDFLAGS="$MACOSXSDK_CFLAGS"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += $MACOSXSDK_LDFLAGS"
echo >>${CONFIG_MAK} "CFLAGS_cfg += $MACOSXSDK_CFLAGS"
else
echo "Mac OS X SDK: default"
echo "Mac OS X target: default (`sw_vers -productVersion`)"
fi
#
# Standard Mac OS X frameworks
#
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework Foundation"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework CoreFoundation"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework Cocoa"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework Webkit"
# IOKit for dvd
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework IOKit"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework OpenGL"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework CoreVideo"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -weak_framework VideoDecodeAcceleration"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework CoreAudio"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework AudioToolBox"
# Carbon, Remote Control Wrapper uses it
if enabled appleremote; then
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -framework Carbon"
fi
#
# libspotify
#
if disabled libspotify_load_runtime; then
LIBSPOTIFY_VERSION="12.1.51"
if [ "$SPOTIFY_FRAMEWORK" == "" ] ; then
download_file https://developer.spotify.com/download/libspotify/libspotify-${LIBSPOTIFY_VERSION}-Darwin-universal.zip zipfile
unzip -oq "$zipfile" -d "${BUILDDIR}"
SPOTIFY_FRAMEWORK="${BUILDDIR}/libspotify-${LIBSPOTIFY_VERSION}-Darwin-universal/libspotify.framework"
fi
support/spotifysyms.sh "${SPOTIFY_FRAMEWORK}/headers/api.h" "${SPOTIFY_FRAMEWORK}/headers/apifunctions.h"
echo >>${CONFIG_MAK} "SPOTIFY_FRAMEWORK = ${SPOTIFY_FRAMEWORK}"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -F\$(shell dirname \$(SPOTIFY_FRAMEWORK)) -framework libspotify"
echo >>${CONFIG_MAK} "CFLAGS_cfg += -F\$(shell dirname \$(SPOTIFY_FRAMEWORK))"
fi
freetype_setup
LIBAV_ARCH_FLAGS="--disable-shared --enable-static"
libav_setup
rtmpdump_setup
#
# Some compatibility defines
#
cat >> ${CONFIG_H} << EOF
/* Darwin is default 64 bit */
#define off64_t off_t
#define lseek64 lseek
/* Different name on darwin */
#define MAP_ANONYMOUS MAP_ANON
/* dvdcss, not defined on darwin is default large file and binary */
#define O_LARGEFILE 0
#define O_BINARY 0
EOF
#
# Finalize
#
echo >>${CONFIG_MAK} LDFLAGS_cfg += -lpthread
finalize