-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing the build on GNU/Linux. Please report if this breaks the build…
… on other systems. I hope it doesn't. * "-lpthread" was ignored by GCC resulting in a linking error. Declaring it closer to the other linker parameters fixed the issue. * There was an #endif misplaced which was improperly including the closing bracket of a switch statement. So when the #ifdef was false, the resulting code would get broken. * Also the #include "libz/libz.h" was resulting in the header not being found. I switched it to #include <libz.h> so it will look for the file in the system default library include directories.
- Loading branch information
1 parent
177260e
commit 4ac9870
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ | |
#endif | ||
#endif | ||
|
||
#include "zlib/zlib.h" | ||
#include <zlib.h> | ||
|
||
#include "chips/mamedef.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters