4 exec_prefix="@exec_prefix@"
14 builtins="@BUILTINS@ "
22 cflags_tuning="@CFLAGS_TUNING@"
23 cflags_optim="@CFLAGS_OPTIM@"
24 cflags_optim_nodebug="@CFLAGS_OPTIM_NODEBUG@"
25 cflags_nooptim="@CFLAGS_NOOPTIM@"
28 # Do not touch below this place unless you really know what you are doing
33 Usage: vlc-config OPTIONS MODULES
35 [--prefix[=DIR]] set prefix
36 [--exec-prefix[=DIR]] set exec prefix
37 [--version] print version and exit
38 [--linkage] print linkage mode (c, c++, objc)
39 [--target] print targets and exit
40 [--list] print modules names and exit
41 [--libs] output linking flags
42 [--cflags] output C compilation flags
43 [--cxxflags] output C++ compilation flags
44 [--objcflags] output Objective C compilation flags
46 vlc the main VLC object
47 plugin flags for plugin modules
48 builtin flags for built-in modules
49 pic flags for PIC code
50 MODULE any available module (dummy, gtk, avi, etc.)
73 if test $# -eq 0; then
78 # No need to include the default @*FLAGS@ values here because they are
79 # automatically added when using $(COMPILE), $(CXXCOMPILE) or $(OBJCCOMPILE)
81 if test "@includedir@" != "/usr/include"; then
82 includes="-I@includedir@"
84 if test "${top_builddir}" != ""; then
85 top_builddir="${top_builddir}/"
86 elif test "${TOP_BUILDDIR}" != ""; then
87 top_builddir="${TOP_BUILDDIR}/"
89 includes="${includes}"
90 cppflags="${includes}"
96 # On Linux and Solaris, activate 64-bit off_t (by default under BSD)
98 cppflags="${cppflags} -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98 -D_LARGEFILE64_SOURCE -D_REENTRANT -D_THREAD_SAFE -D_GNU_SOURCE"
101 # Gettext, data and plugin location
103 cppflags="${cppflags} -DLOCALEDIR=\"@datadir@/locale\""
104 cppflags="${cppflags} -DDATA_PATH=\"${prefix}/share/vlc\""
105 cppflags="${cppflags} -DPLUGIN_PATH=\"${prefix}/lib/vlc\""
108 # Various additional defines
110 if [ "${debug}" = yes ]; then
111 cppflags="${cppflags} -DDEBUG"
112 cflags="${cflags} -g"
113 cxxflags="${cxxflags} -g"
114 objcflags="${objcflags} -g"
115 ldflags="${ldflags} -g"
117 if [ "${cprof}" = yes ]; then
118 cppflags="${cppflags} -DCPROF"
119 cflags="${cflags} -finstrument-functions"
120 cxxflags="${cxxflags} -finstrument-functions"
121 objcflags="${objcflags} -finstrument-functions"
123 if [ "${gprof}" = yes ]; then
124 cppflags="${cppflags} -DGPROF"
125 cflags="${cflags} -pg"
126 cxxflags="${cxxflags} -pg"
127 objcflags="${objcflags} -pg"
128 ldflags="${ldflags} -pg"
130 if [ "${release}" = yes ]; then
131 cppflags="${cppflags} -DHAVE_RELEASE"
133 if [ "${optim}" = yes ]; then
134 cppflags="${cppflags} ${cflags_optim} ${cflags_tuning}"
135 if [ "${debug}" != yes -a "${gprof}" != yes -a "${cprof}" != yes ]; then
136 cppflags="${cppflags} ${cflags_optim_nodebug}"
139 cppflags="${cppflags} ${cflags_nooptim}"
143 # The main argument loop
145 while test $# -gt 0; do
147 -*=*) optarg=`echo "$1" | sed 's/-_a-zA-Z0-9*=//'` ;;
154 if test "${exec_prefix_set}" = no ; then
155 exec_prefix="${optarg}"
162 exec_prefix="${optarg}"
197 cppflags="${cppflags} -D__VLC__ -I${top_builddir}src/misc"
201 cppflags="${cppflags} -D__VLC__ -D__PLUGIN__"
208 cppflags="${cppflags} -D__VLC__ -D__BUILTIN__"
214 ldflags="${ldflags} -lvlc"
221 # Register per-module *FLAGS
224 # Register module targets
225 register_targets "$1"
231 # If a module was requested, use its name
233 if test -n "${module}"; then
234 cppflags="${cppflags} -DMODULE_NAME=${module} -DMODULE_NAME_IS_${module}"
238 # Output what we were asked
240 if test "${echo_linkage}" = yes; then
241 if test "${echo_plugin}" = yes; then
242 for module in `echo "${plugins}"`; do
243 register_flags "${module}"
246 if test "${echo_builtin}" = yes; then
247 for module in `echo "${builtins}"`; do
248 register_flags "${module}"
255 if test "${echo_target}" = yes; then
256 if test "${echo_plugin}" = yes; then
257 for module in `echo "${plugins}"`; do
258 register_targets "${module}"
260 for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}_plugin "; done
263 if test "${echo_builtin}" = yes; then
264 for module in `echo "${builtins}"`; do
265 register_targets "${module}"
267 if test "${echo_pic}" = yes; then
268 for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}_pic.a "; done
270 for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}.a "; done
277 if test "${echo_list}" = yes; then
278 if test "${echo_plugin}" = yes; then
282 if test "${echo_builtin}" = yes; then
289 if test "${echo_prefix}" = yes; then
292 if test "${echo_exec_prefix}" = yes; then
293 echo "${exec_prefix}"
295 if test "${echo_cppflags}" = yes; then
298 if test "${echo_cflags}" = yes; then
299 echo "${cppflags} ${cflags}"
301 if test "${echo_cxxflags}" = yes; then
302 echo "${cppflags} ${cxxflags}"
304 if test "${echo_objcflags}" = yes; then
305 echo "${cppflags} ${objcflags}"
307 if test "${echo_libs}" = yes; then
308 if test "${echo_builtin}" = yes; then
309 for module in `echo "${builtins}"`; do
310 register_targets "${module}"
311 register_flags "${module}"
313 if test "${echo_pic}" = yes; then
314 for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}_pic.a "; done
316 for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}.a "; done
319 if test "${echo_external}" = yes; then
320 if test "${echo_pic}" = yes; then
321 for module in `echo "${builtins}"`; do
322 ldflags="${ldflags} @libdir@/vlc/lib${module}_pic.a"
325 for module in `echo "${builtins}"`; do
326 ldflags="${ldflags} @libdir@/vlc/lib${module}.a"
329 for module in `echo "${builtins}"`; do
330 register_flags "${module}"
334 echo "${libs} ${ldflags}"