Fix MacOSX 10.10 SDK build

Apparently _SC_PHYS_PAGES was added in the 10.11 SDK, but even though
HW_PHYSMEM isn't in the manpage, it exists in all the SDKs we care
about. (It is capped at 32-bits however, since HW_PHYSMEM64 is not
available)

Bug: 36130900
Test: build on Mac 10.13
Test: check headers in 10.10 SDK
Change-Id: I57eb3475c541fee6a8cd337a89f71f11495f5cb6
diff --git a/Android.bp b/Android.bp
index 2ed061a..8f9022a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -72,7 +72,6 @@
 
         "-DMYTHREAD_POSIX=1",
         "-DTUKLIB_FAST_UNALIGNED_ACCESS=1",
-        "-DTUKLIB_PHYSMEM_SYSCONF=1",
         "-DTUKLIB_CPUCORES_SYSCONF=1",
     ],
 
@@ -89,12 +88,16 @@
                 "-DHAVE_PTHREAD_CONDATTR_SETCLOCK=1",
                 "-DHAVE_FUTIMENS=1",
                 "-DHAVE_POSIX_FADVISE=1",
+
+                "-DTUKLIB_PHYSMEM_SYSCONF=1",
             ],
         },
         darwin: {
             cflags: [
                 "-DHAVE_OPTRESET=1",
                 "-DHAVE_FUTIMES=1",
+
+                "-DTUKLIB_PHYSMEM_SYSCTL=1",
             ],
         },
     },