X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Flibzmpeg3%2Fconfigure;fp=cinelerra-5.1%2Flibzmpeg3%2Fconfigure;h=0000000000000000000000000000000000000000;hb=7a70932d3e04454177c456d0b42ee2f5318d6ad1;hp=01346cfa7129afe1dc8ec724564b326cad7476d6;hpb=ded6adaa0ad1bdb311f013c1e94d7c5582b228db;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/libzmpeg3/configure b/cinelerra-5.1/libzmpeg3/configure deleted file mode 100755 index 01346cfa..00000000 --- a/cinelerra-5.1/libzmpeg3/configure +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -# configuration is being done in a script because starting with GCC-3.2 -# the compiler flags are changing too much between minor releases to detect -# with Makefile scripts alone. For now it just tells you if you have the -# prerequisite compilers. - -ERROR=0 - -# test for nasm - -if [ `uname -m` = i686 ]; -then - - if [ -x /usr/bin/nasm -o -x /usr/local/bin/nasm ]; then HAVE_NASM=y; else HAVE_NASM=n; fi - - if [ $HAVE_NASM = n ]; - then echo " *** Nasm is required. Download it from nasm.sourceforge.net"; - ERROR=1 - fi - -fi - -if [ $ERROR -ne 0 ]; then - exit 1 -fi -