File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -27,19 +27,21 @@ LibZMQ class >> repositoryDirectory [
27
27
^ myRepository location
28
28
]
29
29
30
- { #category : #' accessing platform' }
30
+ { #category : #' accessing - platform' }
31
31
LibZMQ >> macLibraryName [
32
32
33
- ^ (self class repositoryDirectory / ' include' / ' libzmq.dylib' ) asFileReference pathString
33
+ " ^ (self class repositoryDirectory / 'include' / 'libzmq.dylib') asFileReference pathString"
34
+ ^ FFIMacLibraryFinder findLibrary: ' libzmq.dylib'
34
35
]
35
36
36
- { #category : #' accessing platform' }
37
+ { #category : #' accessing - platform' }
37
38
LibZMQ >> unixLibraryName [
38
39
39
- ^ (self class repositoryDirectory / ' include' / ' libzmq.so' ) asFileReference pathString
40
+ " ^ (self class repositoryDirectory / 'include' / 'libzmq.so') asFileReference pathString"
41
+ ^ FFIUnix32LibraryFinder findLibrary: ' libzmq.so'
40
42
]
41
43
42
- { #category : #' accessing platform' }
44
+ { #category : #' accessing - platform' }
43
45
LibZMQ >> win32LibraryName [
44
46
45
47
^ (self class repositoryDirectory / ' include' / ' zmq.dll' ) asFileReference pathString
You can’t perform that action at this time.
0 commit comments