Changeset 377386110fba293f49cb87f3d3a4d52987822f3c

Show
Ignore:
Timestamp:
13/04/08 15:14:58 (6 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1208092498 +0200
git-parent:

[aba5ca0b02bd17740f11ef993c1d8003b453a288]

git-author:
Rafaël Carré <funman@videolan.org> 1208092498 +0200
Message:

contribs : propose to build whole contribs with -DNDEBUG to disable
assertions in release builds

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/contrib/bootstrap

    rf38c418 r3773861  
    290290    echo "You do not have a Git client in your PATH." >&2 
    291291fi 
     292 
     293if test -z "$CONTRIBS_RELEASE"; then 
     294    set +x 
     295    echo 
     296    echo "***********************************************************" 
     297    echo "* If you are building contribs for a release build of VLC *" 
     298    echo "* Please run CONTRIBS_RELEASE=sexy ./bootstrap            *" 
     299    echo "***********************************************************" 
     300else 
     301    echo "EXTRA_CFLAGS += -DNDEBUG" >> config.mak 
     302    echo "EXTRA_CPPFLAGS += -DNDEBUG" >> config.mak 
     303fi