diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-05-16 23:02:48 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-05-16 23:02:48 +0000 |
commit | efa53dd01638d50263bbb720a7fb4f3a2db4faed (patch) | |
tree | a7eb8f0c90b6867818fd6b8c027dbbcdef48e11f /packages/win32_inno/Makefile | |
parent | 8ce71b67bd2e5756c8129194b42adb91397a22c3 (diff) |
switched DLLs to install into system32 to reduce chances of DLL Hell
svn path=/trunk/; revision=7674
Diffstat (limited to 'packages/win32_inno/Makefile')
-rwxr-xr-x | packages/win32_inno/Makefile | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 0b9c180a..95e501e9 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -66,23 +66,25 @@ prebuilt_install: bin_src = /usr/local/bin system32 = /c/WINDOWS/system32 # ultimately, the DLLs should be installed in %SystemRoot%\system32 by InnoSetup -#dlldir = $(DESTDIR)$(prefix)/ -dlldir = $(bindir) +dlldir = $(DESTDIR)$(prefix)/ +#dlldir = $(bindir) lib_install: # these get installed into %SystemRoot%\system32 by the installer install -d $(dlldir) - install -p $(bin_src)/libogg-0.dll $(dlldir)/libogg-0.dll - install -p $(bin_src)/libsndfile-1.dll $(dlldir)/libsndfile-1.dll - install -p $(bin_src)/libvorbis-0.dll $(dlldir)/libvorbis-0.dll - install -p $(bin_src)/libvorbisenc-2.dll $(dlldir)/libvorbisenc-2.dll - install -p $(bin_src)/libvorbisfile-3.dll $(dlldir)/libvorbisfile-3.dll - install -p $(bin_src)/pthreadGC2.dll $(dlldir)/pthreadGC2.dll - install -p $(bin_src)/tcl84.dll $(dlldir)/tcl84.dll - install -p $(bin_src)/tclpip84.dll $(dlldir)/tclpip84.dll - install -p $(bin_src)/tk84.dll $(dlldir)/tk84.dll + install -p $(bin_src)/libogg-0.dll $(dlldir) + install -p $(bin_src)/libsndfile-1.dll $(dlldir) + install -p $(bin_src)/libvorbis-0.dll $(dlldir) + install -p $(bin_src)/libvorbisenc-2.dll $(dlldir) + install -p $(bin_src)/libvorbisfile-3.dll $(dlldir) + install -p $(bin_src)/pthreadGC2.dll $(dlldir) +# these stay with pd.exe + install -p $(bin_src)/tcl84.dll $(bindir) + install -p $(bin_src)/tclpip84.dll $(bindir) + install -p $(bin_src)/tk84.dll $(bindir) # if these are there, install them - -install -p $(system32)/msvcp71.dll $(dlldir)/msvcp71.dll - -install -p $(system32)/pthreadVC.dll $(dlldir)/pthreadVC.dll + -install -p $(system32)/msvcp71.dll $(dlldir) + -install -p $(system32)/msvcr71.dll $(dlldir) + -install -p $(system32)/pthreadVC.dll $(dlldir) # these go into the Pd package's lib dir install -d $(libdir)/tcl8.4 cp -r /usr/local/lib/tcl8.4/* $(libdir)/tcl8.4 |