diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-05-09 14:17:35 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-05-09 14:17:35 +0000 |
commit | 36568ed0c2998d6ac6857c9eadc6ab0b98f19323 (patch) | |
tree | fc7d258b5f846c37049e38763744e42067b32415 | |
parent | 38ef849d06c7f206b4e9238058ce7b52fbc5d019 (diff) |
Remove -U_GNU_SOURCE again (was added in r25850). It turns out SDL doesn't work properly with it. The reason I added it for doesn't exist anymore (or, not yet).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25914 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | tools/configure | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index b2db8438e5..6b58e432ed 100755 --- a/tools/configure +++ b/tools/configure @@ -165,8 +165,7 @@ simcc () { exit 2 else # generic sdl-config checker - #ignore the -D_GNU_SOURCE=1 inserted by sdl - GCCOPTS="$GCCOPTS `$sdl --cflags` -U_GNU_SOURCE" + GCCOPTS="$GCCOPTS `$sdl --cflags`" LDOPTS="$LDOPTS `$sdl --libs`" fi fi |