Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed recently broken configure script for FreeBSD.
Found by buildbot.
- Loading branch information
# Set up files for the filesystem library | ||
if test x$enable_filesystem = xyes; then | ||
case $ARCH in | ||
linux) | ||
android) | ||
|
||
$as_echo "#define SDL_FILESYSTEM_UNIX 1" >>confdefs.h | ||
$as_echo "#define SDL_FILESYSTEM_ANDROID 1" >>confdefs.h | ||
|
||
SOURCES="$SOURCES $srcdir/src/filesystem/unix/*.c" | ||
SOURCES="$SOURCES $srcdir/src/filesystem/android/*.c" | ||
have_filesystem=yes | ||
;; | ||
android) | ||
*) | ||
|
||
$as_echo "#define SDL_FILESYSTEM_ANDROID 1" >>confdefs.h | ||
$as_echo "#define SDL_FILESYSTEM_UNIX 1" >>confdefs.h | ||
|
||
SOURCES="$SOURCES $srcdir/src/filesystem/android/*.c" | ||
SOURCES="$SOURCES $srcdir/src/filesystem/unix/*.c" | ||
have_filesystem=yes | ||
;; | ||
esac |