summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichel Bardiaux <mbardiaux@peaktime.be>2004-10-11 19:50:50 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-11 19:50:50 +0000
commitf255e0abfc53855dcb645640c0078547c04a6f1e (patch)
tree717553d0fb33768327f44305a24e84638b738ca6 /configure
parenteb497825fea89ca6c077ae883c33431bb88a32d7 (diff)
config options log patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
Originally committed as revision 3582 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index a9c3ae170a..c76695b39f 100755
--- a/configure
+++ b/configure
@@ -347,6 +347,11 @@ if test -z "$source_path" -o "$source_path" = "." ; then
source_path_used="no"
fi
+FFMPEG_CONFIGURATION=" "
+for opt do
+ FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt "
+done
+
for opt do
case "$opt" in
--prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
@@ -1044,8 +1049,11 @@ fi
echo "Creating config.mak and config.h"
+date >> config.log
+echo " $0 $FFMPEG_CONFIGURATION" >> config.log
echo "# Automatically generated by configure - do not modify" > config.mak
echo "/* Automatically generated by configure - do not modify */" > $TMPH
+echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH
echo "prefix=$prefix" >> config.mak
echo "bindir=$bindir" >> config.mak