Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - GilThanis32

Pages: [1]
1
Yes, open the file "df" in the Dwarf Fortress folder with textedit and delete this line:

export DYLD_FORCE_FLAT_NAMESPACE=1

Brilliant, that fixed it, thank you!

2
@worthyhatchet: Thx, noted, I'll fix it in the next version.
Can you test this on 10.6.8? It should work this way.

Code: [Select]
#!/bin/sh
PWD=`dirname "${0}"`
#thanks to Iriel for figuring this out
OSREV=`uname -r | cut -d. -f1`
if [ "$OSREV" -ge 11 ] ; then
    export DYLD_INSERT_LIBRARIES=./hack/libdfhack.dylib
    export DYLD_LIBRARY_PATH=${PWD}/hack:${PWD}/libs:${PWD}/stonesense/deplibs
    export DYLD_FRAMEWORK_PATH=${PWD}/hack:${PWD}/libs
    export DYLD_FORCE_FLAT_NAMESPACE=1
else
    export DYLD_INSERT_LIBRARIES=./hack/libdfhack.dylib
    export DYLD_FALLBACK_LIBRARY_PATH=${PWD}/hack:${PWD}/libs
    export DYLD_FALLBACK_FRAMEWORK_PATH=${PWD}/hack:${PWD}/libs
fi
cd "${PWD}"; ./dwarfort.exe

Is there anyway I can correct this myself? Really wanted to try this out. Damn this 10.6.8!

Pages: [1]