Skip to content

Commit

Permalink
Fixed test for libuuid.a
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 1, 2014
1 parent 2a67548 commit d499623
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -22808,7 +22808,7 @@ $as_echo "#define SDL_LOADSO_WINDOWS 1" >>confdefs.h
have_loadso=yes
fi
# Set up the system libraries we need
if -f /lib/w32api/libuuid.a ; then
if test -f /lib/w32api/libuuid.a; then
LIBUUID=/lib/w32api/libuuid.a
else
LIBUUID=-luuid
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -2860,7 +2860,7 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau
have_loadso=yes
fi
# Set up the system libraries we need
if [ -f /lib/w32api/libuuid.a ]; then
if test -f /lib/w32api/libuuid.a; then
LIBUUID=/lib/w32api/libuuid.a
else
LIBUUID=-luuid
Expand Down

0 comments on commit d499623

Please sign in to comment.