[FFmpeg-cvslog] r12574 - trunk/configure

Mar Kon konop11
Thu Mar 27 15:52:06 CET 2008


diego <subversion <at> mplayerhq.hu> writes:

> 
> Author: diego
> Date: Tue Mar 25 10:24:55 2008
> New Revision: 12574
> 
> Log:
> Add OS-specific executable suffix to temporary executable name.
> 
> Modified:
>    trunk/configure
> 
> Modified: trunk/configure
> ==============================================================================
> --- trunk/configure	(original)
> +++ trunk/configure	Tue Mar 25 10:24:55 2008
> @@ -1299,7 +1299,7 @@ fi
> 
>  TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
>  TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
> -TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
> +TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}${EXESUF}"
>  TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
>  TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
> 

The configure script fails under MinGW starting with revision 12574.

"$ configure --enable-memalign-hack
Unable to create and execute files in /tmp.  Set the TMPDIR
variable to another directory and make sure that /tmp is no
noexec.
Sanity test failed.
If you think configure made a mistake, make sure you are us
version from SVN.  If the latest version fails, report the 
ffmpeg-user at mplayerhq.hu mailing list or IRC #ffmpeg on irc
Include the log file "config.err" produced by configure as 
solving the problem."

The 12573 revision is fine. The reason is:

TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}" (12573 - fine)
TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}${EXESUF}" (12574 - broken)

Marek





More information about the ffmpeg-cvslog mailing list