equal
deleted
inserted
replaced
9 {$IFNDEF WIN32} |
9 {$IFNDEF WIN32} |
10 {$linklib physfs} |
10 {$linklib physfs} |
11 {$linklib physlayer} |
11 {$linklib physlayer} |
12 |
12 |
13 {statically linking physfs brings IOKit dependency on OSX} |
13 {statically linking physfs brings IOKit dependency on OSX} |
14 {divdi3 is found in stdc++ on linux x86 and in gcc_s.1 on osx ppc32} |
14 {$IFDEF DARWIN} |
15 {$IFDEF PHYSFS_INTERNAL} |
15 {$linkframework IOKit} |
16 {$IFDEF DARWIN} |
|
17 {$linkframework IOKit} |
|
18 {$IFDEF CPU32} |
|
19 {$linklib gcc_s.1} |
|
20 {$ENDIF} |
|
21 {$ELSE} |
|
22 {$IFDEF CPU32} |
|
23 {$linklib stdc++} |
|
24 {$ENDIF} |
|
25 {$ENDIF} |
|
26 {$ENDIF} |
16 {$ENDIF} |
27 {$ENDIF} |
17 {$ENDIF} |
28 |
18 |
29 procedure initModule; |
19 procedure initModule; |
30 procedure freeModule; |
20 procedure freeModule; |