aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorTwinaphex2016-04-22 17:06:53 +0200
committerTwinaphex2016-04-22 17:06:53 +0200
commit18ef7635b0b265350eb8304a26edeb8d4b0b2e19 (patch)
tree93e9704ebb9395c4f6c7bab847d9df7abb005d3d /configure
parent4ed8f00a1221b15925117f1c7413b4640e6e7198 (diff)
parent163249087400935f084080127990bc762e83319c (diff)
downloadpcsx_rearmed-18ef7635b0b265350eb8304a26edeb8d4b0b2e19.tar.gz
pcsx_rearmed-18ef7635b0b265350eb8304a26edeb8d4b0b2e19.tar.bz2
pcsx_rearmed-18ef7635b0b265350eb8304a26edeb8d4b0b2e19.zip
Merge pull request #33 from dankcushions/master
Merging in latest upstream changes
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure13
1 files changed, 12 insertions, 1 deletions
diff --git a/configure b/configure
index 4ffa3a2..4d9b566 100755
--- a/configure
+++ b/configure
@@ -24,7 +24,13 @@ compile_binary()
check_define()
{
- $CC -E -dD $CFLAGS include/arm_features.h | grep -q $1 || return 1
+ $CC -E -dD $CFLAGS include/arm_features.h | grep -q "$1" || return 1
+ return 0
+}
+
+check_define_val()
+{
+ $CC -E -dD $CFLAGS include/arm_features.h | grep "$1" | awk '{print $3}'
return 0
}
@@ -477,6 +483,11 @@ if [ "x$need_xlib" = "xyes" ]; then
check_xlib_headers || fail "please install libx11-dev"
fi
+sizeof_long=`check_define_val __SIZEOF_LONG__`
+if [ "x$sizeof_long" = "x4" ]; then
+ CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64"
+fi
+
cat > $TMPC <<EOF
void test(void *f, void *d) { fread(d, 1, 1, f); }
EOF