*** empty log message ***
authorsr
Tue, 18 Jun 2019 13:57:43 +0200
changeset 24337 d619e74eae27
parent 24336 50aac49521fe
child 24338 9516492f8920
*** empty log message ***
ExternalFunctionCallback.st
ExternalLibraryFunction.st
--- a/ExternalFunctionCallback.st	Tue Jun 18 12:50:10 2019 +0200
+++ b/ExternalFunctionCallback.st	Tue Jun 18 13:57:43 2019 +0200
@@ -34,7 +34,11 @@
 # endif
 
 #ifdef HAVE_FFI
-# include <ffi/ffi.h>
+# ifdef __osx__
+#  include <ffi/ffi.h>
+# else
+#  include <ffi.h>
+# endif
 # define MAX_ARGS    128
 
 # ifdef USE_STANDARD_FFI
--- a/ExternalLibraryFunction.st	Tue Jun 18 12:50:10 2019 +0200
+++ b/ExternalLibraryFunction.st	Tue Jun 18 13:57:43 2019 +0200
@@ -40,7 +40,11 @@
 
 #ifdef HAVE_FFI
 
-# include <ffi/ffi.h>
+# ifdef __osx__
+#  include <ffi/ffi.h>
+# else
+#  include <ffi.h>
+# endif
 # define MAX_ARGS    128
 
 # ifdef USE_STANDARD_FFI