Commit 0474537c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix Win32 packaging and NEWS about libpng

parent 5562fa0a
...@@ -750,7 +750,7 @@ package-win32-base-debug: package-win-common ...@@ -750,7 +750,7 @@ package-win32-base-debug: package-win-common
fi ; done fi ; done
# Contrib *.dll's # Contrib *.dll's
cp $(srcdir)/extras/contrib/lib/*.dll "vlc-$(VERSION)/" cp $(srcdir)/extras/contrib/lib/*.dll "vlc-$(VERSION)/" || true
# Copy the lua scripts (HTTP) # Copy the lua scripts (HTTP)
if BUILD_LUA if BUILD_LUA
...@@ -885,10 +885,8 @@ endif ...@@ -885,10 +885,8 @@ endif
#strip exe and main dll #strip exe and main dll
package-win-common-strip: package-win32-base-debug package-win-common-strip: package-win32-base-debug
$(STRIP) "vlc-$(VERSION)/vlc$(EXEEXT)" for i in "" vlc-$(VERSION)/*$(LIBEXT) ; \
$(STRIP) "vlc-$(VERSION)/libvlccore$(LIBEXT)" do if test -n "$$i" ; then $(STRIP) "$$i" ; fi; done
$(STRIP) "vlc-$(VERSION)/libvlc$(LIBEXT)"
$(STRIP) "vlc-$(VERSION)/pthreadGC2$(LIBEXT)"
if BUILD_MOZILLA if BUILD_MOZILLA
$(STRIP) "vlc-$(VERSION)/mozilla/npvlc$(LIBEXT)" $(STRIP) "vlc-$(VERSION)/mozilla/npvlc$(LIBEXT)"
endif endif
......
...@@ -2,6 +2,7 @@ Changes between 0.9.4 and 0.9.5-git: ...@@ -2,6 +2,7 @@ Changes between 0.9.4 and 0.9.5-git:
------------------------------------ ------------------------------------
Security updates: Security updates:
* Fixed buffer overflow in TiVo demuxer (SA-0809) * Fixed buffer overflow in TiVo demuxer (SA-0809)
* Fixed libpng CVE-2008-3964 in Win32 and MacOS builds
Features: Features:
* Closed Caption EIA 608/708 parsing enabled for libmpeg2 * Closed Caption EIA 608/708 parsing enabled for libmpeg2
...@@ -17,6 +18,7 @@ Windows port: ...@@ -17,6 +18,7 @@ Windows port:
Qt Interface: Qt Interface:
* Fix bug when the resetting of preferences didn't reset the dialog states * Fix bug when the resetting of preferences didn't reset the dialog states
* Right-click menu to select playlist columns reenabled * Right-click menu to select playlist columns reenabled
* Various fixed in playlist
Access: Access:
* MMAP module is now deactivated by default * MMAP module is now deactivated by default
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment