r585: Fixed faad detection for latest version of faad
[cinelerra_cv/mob.git] / libmpeg3 / configure
blob99127e6e987ff0c79306554a5dfda394ae8ba113
1 # configuration is being done in a script because starting with GCC-3.2
2 # the compiler flags are changing too much between minor releases to detect
3 # with Makefile scripts alone.  For now it just tells you if you have the
4 # prerequisite compilers.
6 ERROR=0
8 # test for nasm
10 if [ -x /usr/bin/nasm -o -x /usr/local/bin/nasm ]; then HAVE_NASM=y; else HAVE_NASM=n; fi
12 if [ $HAVE_NASM == n ]; 
13 then echo " *** Nasm is required.  Download it from nasm.sourceforge.net"; 
14 ERROR=1
19 # success
20 if [ $ERROR == 0 ];
21 then echo "Configured successfully.  Type 'make' to build it.";