Updated SDL2 to the 2.0.4 release version

This commit is contained in:
Martin Felis
2016-01-17 13:22:47 +01:00
parent 962c894908
commit 24387a8450
1788 changed files with 1759 additions and 1275 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/bin/sh
#
# libtool assumes that the compiler can handle the -fPIC flag
# This isn't always true (for example, nasm can't handle it)
command=""
while [ $# -gt 0 ]; do
case "$1" in
-?PIC)
# Ignore -fPIC and -DPIC options
;;
-fno-common)
# Ignore -fPIC and -DPIC options
;;
*)
command="$command $1"
;;
esac
shift
done
echo $command
exec $command