diff options
author | Marcoen Hirschberg <marcoen@gmail.com> | 2007-05-31 10:23:16 +0000 |
---|---|---|
committer | Marcoen Hirschberg <marcoen@gmail.com> | 2007-05-31 10:23:16 +0000 |
commit | e6efaf45428f1e8dd8cdcd562f7b4a09d6027f64 (patch) | |
tree | 0a30566117d661879145b502bb7a55e111a993d3 /tools | |
parent | 7956c92f92f8b130b633e6d062a61c07eebe6478 (diff) |
fix simulator builds for FreeBSD
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13529 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 1cf229aff1..1f041f7ebf 100755 --- a/tools/configure +++ b/tools/configure @@ -114,7 +114,9 @@ simcc () { FreeBSD) echo "FreeBSD host detected" - LDOPTS='-L/usr/X11R6/lib -lX11 -lm -lXt -lXmu -dl -lpthread' + # sdl version + GCCOPTS="$GCCOPTS `sdl-config --cflags`" + LDOPTS="`sdl-config --libs`" ;; Darwin) |