X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=vlc-config.in.in;h=e7253236f7689a23dcc47dee79ad4f7d47700508;hb=ad7e01030614f7b8d0381555cc09b1d61442de80;hp=f288da6c04629a70c19c47dc6f4ce9b12182546b;hpb=fb1e74610655adfdb36cbdd3c68f486bddbd565e;p=vlc diff --git a/vlc-config.in.in b/vlc-config.in.in index f288da6c04..e7253236f7 100644 --- a/vlc-config.in.in +++ b/vlc-config.in.in @@ -1,11 +1,10 @@ -#!/bin/sh +#!@SHELL@ prefix="@prefix@" exec_prefix="@exec_prefix@" exec_prefix_set=no datarootdir="@datarootdir@" -release="@release@" debug="@debug@" gprof="@gprof@" cprof="@cprof@" @@ -52,6 +51,7 @@ Modules: builtin flags for built-in modules pic flags for PIC code MODULE any available module (dummy, gtk, avi, etc.) + libs flags for external libs BLAH exit $1 } @@ -69,13 +69,6 @@ if test $# -eq 0; then usage 1 1>&2 fi -# -# No need to include the default @*FLAGS@ values here because they are -# automatically added when using $(COMPILE), $(CXXCOMPILE) or $(OBJCCOMPILE) -# -if test "@includedir@" != "/usr/include"; then - includes="-I@includedir@" -fi if test "${top_builddir}" != ""; then top_builddir="${top_builddir}/" elif test "${TOP_BUILDDIR}" != ""; then @@ -95,28 +88,22 @@ cppflags="${cppflags} -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98 -D_LARGEFILE64_SOURC # Various additional defines # if [ "${debug}" = yes ]; then - cppflags="${cppflags} -DDEBUG" - cflags="${cflags} -g ${cflags_werror}" + cflags="${cflags} -g" cxxflags="${cxxflags} -g" objcflags="${objcflags} -g" ldflags="${ldflags} -g" fi if [ "${cprof}" = yes ]; then - cppflags="${cppflags} -DCPROF" cflags="${cflags} -finstrument-functions" cxxflags="${cxxflags} -finstrument-functions" objcflags="${objcflags} -finstrument-functions" fi if [ "${gprof}" = yes ]; then - cppflags="${cppflags} -DGPROF" cflags="${cflags} -pg" cxxflags="${cxxflags} -pg" objcflags="${objcflags} -pg" ldflags="${ldflags} -pg" fi -if [ "${release}" = yes ]; then - cppflags="${cppflags} -DHAVE_RELEASE" -fi if [ "${optim}" = size ]; then cflags="${cflags} ${cflags_optim_size} ${cflags_tuning}" cxxflags="${cxxflags} ${cflags_optim_size} ${cflags_tuning}" @@ -226,6 +213,10 @@ while test $# -gt 0; do echo_builtin=yes cppflags="${cppflags} -D__LIBVLC__ -D__BUILTIN__" ;; + libs) + # Avoid to use werror on what is not vlc's code. + cflags_werror="" + ;; pic) ;; mozilla) @@ -248,6 +239,12 @@ if test -n "${module}"; then cppflags="${cppflags} -DMODULE_NAME=${module} -DMODULE_NAME_IS_${module} -DMODULE_STRING=\"${module}\"" fi +# +# Set the Werror flags. +# + +cflags="${cflags} ${cflags_werror}" + # # Output what we were asked #