diff options
author | Frederico Linhares <fred@linhares.blue> | 2024-01-11 15:31:18 -0300 |
---|---|---|
committer | Frederico Linhares <fred@linhares.blue> | 2024-01-11 15:31:18 -0300 |
commit | 62d9c646dd411f1cc067de804880751b9aaa0a77 (patch) | |
tree | 9c6d042471557b360597771fedc306e504b25a75 /Rakefile | |
parent | e2581a8209c549fd3f88be671c9bcd6447ec1dac (diff) |
fixt Fix several bugs in the Windows installation
* Rakefile: Link against winsock2
* ruby_build_config.rb: Add sockets to the engine for on-line gaming.
* src/core.cpp: Windows needs to read mrb files as binaries.
* windows_installer.nsi: write uninstaller before listing files seems to
cause bugs.
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -55,7 +55,8 @@ LIBRARIES = [ 'SDL2', 'SDL2_mixer', 'freetype', - 'm' + 'm', + 'ws2_32' ] + OS_LIBRARIES PKG_CONFIG = [ |