This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Fix Windows build
tags/v0.4.0
Andrew Belt
7 years ago
parent
ecfaa878b2
commit
47dc707214
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
compile.mk
+1
-1
src/plugin.cpp
+ 1
- 1
compile.mk
View File
@@ -29,7 +29,7 @@ endif
OBJECTS += $(patsubst %, build/%.o, $(SOURCES))
DEPS = $(patsubst %
.o, %.d, $(OBJECT
S))
DEPS = $(patsubst %
, build/%.d, $(SOURCE
S))
# Final targets
+ 1
- 1
src/plugin.cpp
View File
@@ -238,7 +238,7 @@ void pluginDestroy() {
// Free library handle
#if ARCH_WIN
if (plugin->handle)
FreeLibrary(plugin->handle);
FreeLibrary(
(HINSTANCE)
plugin->handle);
#elif ARCH_LIN || ARCH_MAC
if (plugin->handle)
dlclose(plugin->handle);
Write
Preview
Loading…
Cancel
Save