diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-11-28 12:24:56 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-11-28 12:24:56 +0000 |
commit | 29889061262a94aeb8871b185b29a1699f55af63 (patch) | |
tree | 5ce0740455e3e6051dbf726abb090165f8abfcec /src/post | |
parent | e9ad6a71dbf9f5f0b1e249ad7969afa1fd8665ba (diff) | |
download | xine-lib-29889061262a94aeb8871b185b29a1699f55af63.tar.gz xine-lib-29889061262a94aeb8871b185b29a1699f55af63.tar.bz2 |
*BUGFIX*
Improved cross-compiling: detect and precedence of the host-specific libs
W32dll: enabled by platforms as originaly, user can override it
Fixed shell errors in the Makefile of the hackersguide
Detect the place of SDL header independently on platform
Fixed spelling in CDDA, include the header sys/param.h if available
Fixed format strings (fix warnings (or even bugs) on Gentoo/FreeBSD)
CVS patchset: 7815
CVS date: 2005/11/28 12:24:56
Diffstat (limited to 'src/post')
-rw-r--r-- | src/post/deinterlace/tvtime.c | 1 | ||||
-rw-r--r-- | src/post/goom/Makefile.am | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/post/deinterlace/tvtime.c b/src/post/deinterlace/tvtime.c index 31cf3f7c2..0c13329ff 100644 --- a/src/post/deinterlace/tvtime.c +++ b/src/post/deinterlace/tvtime.c @@ -20,7 +20,6 @@ # include "config.h" #endif -#define _GNU_SOURCE #include <stdio.h> #include <string.h> #include <unistd.h> diff --git a/src/post/goom/Makefile.am b/src/post/goom/Makefile.am index 85d6c165e..bb6496342 100644 --- a/src/post/goom/Makefile.am +++ b/src/post/goom/Makefile.am @@ -5,7 +5,8 @@ libdir = $(XINE_PLUGINDIR)/post EXTRA_DIST = mmx.c xmmx.c ppc_drawings.s ppc_zoom_ultimate.s diff_against_release.patch ## -fomit-frame-pointer segfaults here -CFLAGS = `echo @CFLAGS@ | sed -e 's/-fomit-frame-pointer//g;s/-Os//g'` +## Use -O2 if -Os is stripped or x86 does not build +CFLAGS = `echo @CFLAGS@ | sed -e 's/-fomit-frame-pointer//g;s/-Os/-O2/g'` lib_LTLIBRARIES = xineplug_post_goom.la |