From c6f96750ba3131a58f3cd998f73b5c1ad9bc903c Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Fri, 28 Feb 2014 16:09:45 +0100 Subject: [PATCH] ffmpeg: prevent executable stack. --- lfs/ffmpeg | 4 ++-- lfs/ffmpeg-libs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/ffmpeg b/lfs/ffmpeg index e2df5cc524..74947311fc 100644 --- a/lfs/ffmpeg +++ b/lfs/ffmpeg @@ -31,12 +31,12 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = ffmpeg -PAK_VER = 4 +PAK_VER = 5 DEPS = "ffmpeg-libs sdl lame libvorbis xvid" # Don't use PIC for libavcodec -CFLAGS += -fno-PIC -fno-strict-aliasing +CFLAGS += -fno-PIC -fno-strict-aliasing -Wa,--noexecstack ############################################################################### # Top-level Rules diff --git a/lfs/ffmpeg-libs b/lfs/ffmpeg-libs index d12b45bad3..b29c978055 100644 --- a/lfs/ffmpeg-libs +++ b/lfs/ffmpeg-libs @@ -27,7 +27,7 @@ include Config VER = 2008-04-13 THISAPP = ffmpeg-export-$(VER) PROG = ffmpeg-libs -PAK_VER = 4 +PAK_VER = 5 DEPS = "" -- 2.39.2