33 lines
685 B
Text
33 lines
685 B
Text
--- configure.orig Tue Oct 9 18:14:50 2001
|
|
+++ configure Wed Oct 26 21:44:35 2005
|
|
@@ -1,7 +1,9 @@
|
|
+#!/bin/sh
|
|
+
|
|
echo "Configuring mpeg2_movie"
|
|
|
|
USE_MMX=1
|
|
-CODEC_DIR=/usr/lib/mpeg2_movie/codecs/
|
|
+CODEC_DIR=
|
|
PREFIX=/usr/local
|
|
LDSTATIC=
|
|
|
|
@@ -178,15 +180,15 @@
|
|
cd libmpeg3
|
|
|
|
if [ ${USE_MMX} = 1 ]; then
|
|
- ./configure --no-css
|
|
+ ./configure --no-css --prefix=${PREFIX}
|
|
else
|
|
- ./configure --no-css --no-mmx
|
|
+ ./configure --no-css --no-mmx --prefix=${PREFIX}
|
|
fi
|
|
|
|
cd ../quicktime
|
|
|
|
if [ ${USE_MMX} = 1 ]; then
|
|
- ./configure $NOFIREWIRE
|
|
+ ./configure $NOFIREWIRE --prefix=${PREFIX}
|
|
else
|
|
- ./configure $NOFIREWIRE --no-mmx
|
|
+ ./configure $NOFIREWIRE --no-mmx --prefix=${PREFIX}
|
|
fi
|