summaryrefslogtreecommitdiffstats
path: root/make/dynlink-macosx.cfg
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-06-17 10:09:32 +0200
committerSven Gothel <[email protected]>2013-06-17 10:09:32 +0200
commite18771cc020f6fd42f6427540c079e48699ab310 (patch)
tree4ddfbbac05b8a332888711d53233969863362446 /make/dynlink-macosx.cfg
parent5d211c6fa6a0452cc4569712e436184e34504a88 (diff)
Complete 5d211c6fa6a0452cc4569712e436184e34504a88: Remove generate.nativelibrary.sources and dynlink* gluegen files due to manual impl.
Diffstat (limited to 'make/dynlink-macosx.cfg')
-rwxr-xr-xmake/dynlink-macosx.cfg25
1 files changed, 0 insertions, 25 deletions
diff --git a/make/dynlink-macosx.cfg b/make/dynlink-macosx.cfg
deleted file mode 100755
index 6079eb8..0000000
--- a/make/dynlink-macosx.cfg
+++ /dev/null
@@ -1,25 +0,0 @@
-Style AllStatic
-JavaClass MacOSXDynamicLinkerImpl
-Package com.jogamp.common.os
-Implements MacOSXDynamicLinkerImpl DynamicLinker
-JavaOutputDir ../src/java
-NativeOutputDir ../src/native/macosx
-HierarchicalNativeOutput false
-
-# Note that we can use the same CustomJavaCode as the unix
-# implementation, but some of the constants (e.g. RTLD_GLOBAL) resolve
-# to different values
-IncludeAs CustomJavaCode MacOSXDynamicLinkerImpl dynlink-unix-CustomJavaCode.java
-CustomCCode #include <dlfcn.h>
-CustomCCode #include </usr/include/machine/types.h>
-
-ArgumentIsString dlopen 0
-ArgumentIsString dlsym 1
-ReturnsString dlerror
-Opaque long void*
-
-# Hide the platform-specific functions
-AccessControl dlopen PRIVATE
-AccessControl dlsym PRIVATE
-AccessControl dlclose PRIVATE
-AccessControl dlerror PRIVATE