forked from andoma/movian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure
executable file
·240 lines (203 loc) · 4.8 KB
/
configure
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#!/bin/bash
#
# HTS configure script
#
# Copyright (c) 2005-2009 Andreas Öman
#
# Based on FFmpeg's configure script:
#
# Copyright (c) 2000-2002 Fabrice Bellard
# Copyright (c) 2005-2008 Diego Biurrun
# Copyright (c) 2005-2008 Mans Rullgard
#
PLATFORM=`uname`
source support/configure.inc
CPU=generic
ARCH=`uname -m`
OSENV="posix"
PREFIX=/usr/local
show_help(){
echo "Usage: configure [options]"
echo "Options: [defaults in brackets after descriptions]"
echo
echo "Standard options:"
echo " --help print this message"
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 " --embedded-theme Embed theme in showtime [none]"
echo " --enable-spotify=keyfile Compile support for Spotify (R) Core"
exit 1
}
enable libfreetype
enable glw
enable libasound
enable libexif
enable gu
for opt do
optval="${opt#*=}"
case "$opt" in
--prefix=*) PREFIX="$optval"
;;
--cpu=*) CPU="$optval"
;;
--help) show_help
;;
--release)
RELEASE=yes
enable embedded_theme
;;
--cc=*) CC="$optval"
;;
--enable-spotify=*) SPOTIFY_KEYFILE="$optval"
;;
--enable-?*|--disable-?*)
eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
$action $option
;;
esac
done
setup_env
enable libpthread
enable zlib
enable posix_networking
enable dvd
#
# pkgconfig
#
which >/dev/null pkg-config
if [ $? -ne 0 ]; then
echo "pkg-config not found. Can not configure."
die
fi
#
# 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_FFMPEG="--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
#
# libfreetype2
#
if enabled libfreetype; then
if pkg-config freetype2; then
echo >>${CONFIG_MAK} "LDFLAGS_cfg += " `pkg-config --libs freetype2`
echo >>${CONFIG_MAK} "CFLAGS_cfg += " `pkg-config --cflags freetype2`
echo "Using Freetype2: `pkg-config --modversion freetype2`"
else
echo "FreeType 2 not found"
echo "To compile without it, configure with: --disable-libfreetype"
die
fi
fi
#
# opengl for GLW (depends on freetype)
#
checkglx() {
cat >$TMPDIR/1.c <<EOF
#include <GL/glx.h>
int main() {
return 0;
}
EOF
$CC 2>/dev/null $TMPDIR/1.c -o $TMPDIR/1.bin -lGLU -lGL
}
if enabled glw; then
if disabled libfreetype; then
echo "GLW depends on libfreetype"
die
fi
if checkglx; then
enable glw_frontend_x11
enable glw_backend_opengl
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -lGLU -lGL"
else
echo "OpenGL development files not available."
die
fi
fi
#
# libasound (alsa)
#
if enabled libasound; then
if pkg-config alsa; then
echo >>${CONFIG_MAK} "CFLAGS_cfg += " `pkg-config --cflags alsa`
echo >>${CONFIG_MAK} "LDFLAGS_cfg += " `pkg-config --libs alsa`
echo "Using ALSA: `pkg-config --modversion alsa`"
else
echo "libasound (ALSA) development files not found."
echo "To compile without it, configure with: --disable-libasound"
die
fi
fi
#
# libexif, JPEG exif
#
if enabled libexif; then
if pkg-config libexif; then
echo >>${CONFIG_MAK} "CFLAGS_cfg += " `pkg-config --cflags libexif`
echo >>${CONFIG_MAK} "LDFLAGS_cfg += " `pkg-config --libs libexif`
echo "Using libexif: `pkg-config --modversion libexif`"
else
echo "libexif (JPEG library) development files not found."
echo "To compile without it, configure with: --disable-libexif"
die
fi
fi
#
# GTK2 UI
#
if enabled gu; then
if pkg-config gtk+-2.0 && pkg-config gthread-2.0; then
# CFLAGS are included by Makefile
echo >>${CONFIG_MAK} "LDFLAGS_cfg += " `pkg-config --libs gtk+-2.0`
echo "Using GTK+: `pkg-config --modversion gtk+-2.0`"
echo >>${CONFIG_MAK} "LDFLAGS_cfg += " `pkg-config --libs gthread-2.0`
echo "Using GTK Threading: `pkg-config --modversion gthread-2.0`"
else
echo "GTK2 not found. Unable to build GU (GTK user interface)."
echo "To compile without it, configure with: --disable-gu"
die
fi
fi
#
# configure ffmpeg
#
setup_ffmpeg --cpu=${CPU} --enable-pthreads
#
# Configure paths, etc
#
if [ ${RELEASE} != yes ]; then
echo Development build.
echo The generated binary will contained compild-in paths to
echo the current build tree. If you plan to install the binary,
echo please reconfigure with '--release'.
fi
#
# Finalize
#
cat >> ${CONFIG_MAK} << EOF
INSTALLPREFIX=$PREFIX
LDFLAGS_cfg += -lrt -lpthread
EOF
finalize