Fix compilation issue in darling-dmg

This pulls in the https://github.com/darlinghq/darling-dmg/pull/41 fix
for compilation with newer GCC.

The error message this fixes is
```
osxcross/build/darling-dmg/src/main-fuse.cpp:137:28: error: no member named 'function' in namespace 'std'
int handle_exceptions(std::function<int()> func)
                      ~~~~~^
osxcross/build/darling-dmg/src/main-fuse.cpp:137:44: error: use of undeclared identifier 'func'
int handle_exceptions(std::function<int()> func)
                                           ^
osxcross/build/darling-dmg/src/main-fuse.cpp:137:49: error: expected ';' after top level declarator
int handle_exceptions(std::function<int()> func)
                                                ^
                                                ;
3 errors generated.
```
This commit is contained in:
heinrich5991 2017-10-25 09:49:20 +02:00
parent 675303245a
commit 51805010c9

View File

@ -57,7 +57,7 @@ if [ ! -f $TARGET_DIR/SDK/tools/bin/darling-dmg ]; then
rm -f have_darling_dmg
fi
DARLING_DMG_REV="b7ce87bfe59c2ed758165c8650402f6d4c84d184"
DARLING_DMG_REV="4e3a2ede86d4e3c63bcc97d7280dd8613d70cde2"
if [ ! -f "have_darling_dmg_$DARLING_DMG_REV" ]; then