Commit f5703c16 authored by Damien Fouilleul's avatar Damien Fouilleul

- make use of cygwin rebase to optimize DLL loading, if present

parent fd5297cf
...@@ -779,6 +779,10 @@ if BUILD_ACTIVEX ...@@ -779,6 +779,10 @@ if BUILD_ACTIVEX
cp $(top_builddir)/activex/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/activex/ ; cp $(top_builddir)/activex/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/activex/ ;
$(STRIP) $(top_builddir)/vlc-${VERSION}/activex/*$(LIBEXT); $(STRIP) $(top_builddir)/vlc-${VERSION}/activex/*$(LIBEXT);
endif endif
# Rebase all those DLLs to speed up loading (need cygwin rebase)
if [ -x rebase ]; then \
find $(top_builddir)/vlc-${VERSION} -type f -name '*.dll' -print | rebase -b 0x70000000 -T -; \
fi
package-win32-base-exe: package-win32-base-exe:
# Create package # Create package
......
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