diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-09-13 21:13:22 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-09-13 21:13:22 +0000 |
commit | ed6d06ecf2e808659ea4df0cace2493d67d9ff7b (patch) | |
tree | 9bc4cd19c6b8405e5a2bcc796369d75cd9368c05 /packages/win32_inno/Makefile | |
parent | b55cdfc0f6f2cd1afa571cc1116c126b1f0b5494 (diff) |
include pthreadVC.dll from pd-vanilla to support libs that use it
svn path=/trunk/; revision=15292
Diffstat (limited to 'packages/win32_inno/Makefile')
-rwxr-xr-x | packages/win32_inno/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 741815f8..394576ed 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -112,6 +112,8 @@ lib_install: install -p $(bin_src)/libdl.dll $(DESTDIR)$(prefix)/ install -p $(bin_src)/libgcc_s_dw2-1.dll $(DESTDIR)$(prefix)/ install -p $(bin_src)/libstdc++-6.dll $(DESTDIR)$(prefix)/ +# very old pthread lib from pd-vanilla + install -p pthreadVC.dll $(DESTDIR)$(bindir) # these stay with pd.exe install -d $(DESTDIR)$(bindir) install -p $(bin_src)/tcl85.dll $(DESTDIR)$(bindir) @@ -120,7 +122,6 @@ lib_install: # if these are installed, include them in the build root -install -p $(system32)/msvcp71.dll $(DESTDIR)$(bindir) -install -p $(system32)/msvcr71.dll $(DESTDIR)$(bindir) - -install -p $(system32)/pthreadVC.dll $(DESTDIR)$(bindir) # these go into the Pd package's lib dir install -d $(DESTDIR)$(libdir)/tcl8 cp -rp /usr/local/lib/tcl8/* $(DESTDIR)$(libdir)/tcl8 |