X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=configure;h=02afe84ec744e981392619215071de1460f6a90a;hb=62eedbd4de3d0c7ebbc3d2f244540a6c8333aae8;hp=65961fa052ca8b0b1bcfcff25a0862e17b1f0f3c;hpb=9d453d871e6985f67da7a4c7227c13e326dbe452;p=melted diff --git a/configure b/configure index 65961fa..02afe84 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #!/bin/bash -export version=0.2.5 -export soversion=0 +export version=0.3.1 +export soversion=1 show_help() { @@ -17,7 +17,6 @@ General build options: --prefix=directory - install prefix for path (default: $prefix) --libdir=directory - lib directory (default: $prefix/lib) --enable-gpl - Enable GPL components - --enable-motion-est - Enable motion estimation components --disable-debug - Compile without debug support (default: on) --disable-mmx - Compile without MMX support (default: on) --cpu='cpu' - Compile for a specific CPU/architectre (default: none) @@ -58,7 +57,7 @@ build_config() [ "$cpu" != "" ] && echo "TARGETARCH=-march=$cpu" && echo "TARGETCPU=-mcpu=$cpu" - echo "OPTIMISATIONS=-O4 -pipe -fomit-frame-pointer" + echo "OPTIMISATIONS=-O3 -pipe -fomit-frame-pointer" echo "CFLAGS+=-Wall -fPIC -DPIC \$(TARGETARCH) \$(TARGETCPU) \$(OPTIMISATIONS) \$(MMX_FLAGS) \$(DEBUG_FLAGS) \$(LARGE_FILE)" @@ -123,7 +122,6 @@ export debug=true export mmx=true export gpl=false export cpu= -export motionest=false # Determine OS targetos=$(uname -s) @@ -152,7 +150,6 @@ do --disable-debug ) debug=false ;; --disable-mmx ) mmx=false ;; --enable-gpl ) gpl=true ;; - --enable-motion-est ) motionest=true ;; --cpu=* ) cpu="${i#--cpu=}" ;; esac done @@ -200,8 +197,3 @@ build_pkgconfig ( [ "$gpl" = "false" ] && echo "GPL Components are disabled" || echo "GPL License Used" ) - -if [ "$motionest" = "true" -a "$gpl" = "false" ] -then - echo "Add the --enable-gpl flag to build the motion estimation components." -fi