Browse Source

* Fixed packages building for mipsel-android. socketcall is used only for i386 CPU.

git-svn-id: trunk@37527 -
yury 7 years ago
parent
commit
13957d32b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl-extra/src/android/unixsock.inc

+ 1 - 1
packages/rtl-extra/src/android/unixsock.inc

@@ -13,7 +13,7 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 }
 
-{$if not defined(cpux86_64) and not defined(NO_SYSCALL_SOCKETCALL)}
+{$if defined(cpu386)}
   {$define NEED_SOCKETCALL}
 {$endif}