From 449659919caa2dec5cb94792b64cf55f6afe0460 Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Thu, 29 Mar 2007 14:20:30 +0000 Subject: [PATCH] Fix compilation when using the --disable-opts parameter. This to help those interested in using a debugger to debug FFmpeg. Original thread: Subject: [PATCH] Fix compilation when using --disable-opts Date: 2007-03-15 16:58:35 GMT Originally committed as revision 8549 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 37 +++++++++++++++++++++++++++++++++++++ libavcodec/cabac.h | 4 ++-- libavcodec/h264.c | 2 +- libavutil/x86_cpu.h | 4 ++++ 4 files changed, 44 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 39a570bd2..6b841d523 100755 --- a/configure +++ b/configure @@ -542,6 +542,8 @@ CONFIG_LIST=' bktr dc1394 dv1394 + ebp_available + ebx_available ffmpeg ffplay ffserver @@ -1190,6 +1192,10 @@ ar="${cross_prefix}${ar}" ranlib="${cross_prefix}${ranlib}" strip="${cross_prefix}${strip}" +# Disable core dumps so that intentional execution of broken apps doesn't +# pollute the current directory. +ulimit -c 0 + # we need to build at least one lib type if disabled_all static shared; then cat <