forked from andoma/movian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure
executable file
·193 lines (165 loc) · 3.85 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
#!/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
DONT_SKIP_MISSING=0
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]"
exit 1
}
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"
;;
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 pkg-config freetype2; then
enable libfreetype
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`"
elif test $DONT_SKIP_MISSING -eq 0; then
echo "FreeType 2 not found."
die
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 libfreetype && checkglx; then
enable glw
enable glw_frontend_x11
enable glw_backend_opengl
echo >>${CONFIG_MAK} "LDFLAGS_cfg += -lGLU -lGL"
elif test $DONT_SKIP_MISSING -eq 0; then
echo "OpenGL development files not available. Can not build test program."
die
fi
#
# libasound (alsa)
#
if pkg-config alsa; then
enable libasound
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`"
elif test $DONT_SKIP_MISSING -eq 0; then
echo "libasound (ALSA) development files not found."
die
fi
#
# libexif, JPEG exif
#
if pkg-config libexif; then
enable libexif
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`"
elif test $DONT_SKIP_MISSING -eq 0; then
echo "libexif (JPEG library) development files not found."
die
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 += -lpthread
EOF
finalize