From c0f5f3212f120b6969bfe699a7632b6dafba788b Mon Sep 17 00:00:00 2001 From: ddennedy Date: Mon, 25 Sep 2006 20:07:46 +0000 Subject: [PATCH] fix SDL compilation on some systems using modular x.org git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@927 d19143bc-622f-0410-bfdd-b5b2a6649095 --- ChangeLog | 4 ++++ src/modules/sdl/Makefile | 2 ++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ChangeLog b/ChangeLog index f0ceeee..c1e8d2e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-09-25 Dan Dennedy + - src/modules/sdl/Makefile: fix compilation on some systems using + modular x.org. + 2006-08-08 Dan Dennedy enhance producer_westley to parse Kino 0.9.1 SMIL (clock) time values. diff --git a/src/modules/sdl/Makefile b/src/modules/sdl/Makefile index 8383528..ccc9412 100644 --- a/src/modules/sdl/Makefile +++ b/src/modules/sdl/Makefile @@ -12,6 +12,8 @@ OBJS = factory.o \ ifeq ($(targetos),Darwin) CFLAGS +=-ObjC LDFLAGS +=-lobjc -framework Foundation +else + LDFLAGS +=-lX11 endif CFLAGS +=-I../.. `sdl-config --cflags` -- 1.7.4.4