Commit ebf341dc authored by Rafaël Carré's avatar Rafaël Carré

Don't assume some default prefix is used

parent 289d5a72
...@@ -221,8 +221,6 @@ case "${host_os}" in ...@@ -221,8 +221,6 @@ case "${host_os}" in
VLC_ADD_LIBS([win32text],[-lgdi32]) VLC_ADD_LIBS([win32text],[-lgdi32])
VLC_ADD_LIBS([cdda vcdx sdl_image vout_sdl],[-lwinmm]) VLC_ADD_LIBS([cdda vcdx sdl_image vout_sdl],[-lwinmm])
AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos) AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
ac_default_prefix="`pwd`/_win32"
DESTDIR="`pwd`/_win32/"
dnl dnl
dnl NSIS Installer prefix and WIN64 dnl NSIS Installer prefix and WIN64
...@@ -242,8 +240,6 @@ case "${host_os}" in ...@@ -242,8 +240,6 @@ case "${host_os}" in
if test "${SYS}" = "mingwce"; then if test "${SYS}" = "mingwce"; then
VLC_ADD_LIBS([libvlccore],[-lmmtimer]) VLC_ADD_LIBS([libvlccore],[-lmmtimer])
AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos) AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
ac_default_prefix="`pwd`/_wince"
DESTDIR="`pwd`/_wince/"
fi fi
;; ;;
*nto*) *nto*)
......
#!/bin/sh #!/bin/sh
OPTIONS=" OPTIONS="
--prefix=`pwd`/vlc_install_dir
--enable-faad --enable-faad
--enable-flac --enable-flac
--enable-theora --enable-theora
......
...@@ -25,8 +25,8 @@ VLC-release.app: VLC-tmp.app ...@@ -25,8 +25,8 @@ VLC-release.app: VLC-tmp.app
VLC-tmp.app: vlc VLC-tmp.app: vlc
$(AM_V_GEN)(cd src && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd)) $(AM_V_GEN)(cd src && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="`pwd`"/vlc_install_dir install $(silentstd))
(cd lib && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd)) (cd lib && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="`pwd`"/vlc_install_dir install $(silentstd))
rm -Rf "$(top_builddir)/tmp" "$@" rm -Rf "$(top_builddir)/tmp" "$@"
mkdir -p "$(top_builddir)/tmp/extras/package/macosx" mkdir -p "$(top_builddir)/tmp/extras/package/macosx"
cd $(srcdir)/extras/package/macosx; cp -R vlc.xcodeproj Resources README.MacOSX.rtf $(abs_top_builddir)/tmp/extras/package/macosx/ cd $(srcdir)/extras/package/macosx; cp -R vlc.xcodeproj Resources README.MacOSX.rtf $(abs_top_builddir)/tmp/extras/package/macosx/
......
...@@ -20,7 +20,7 @@ endif ...@@ -20,7 +20,7 @@ endif
endif endif
package-win-install: package-win-install:
$(MAKE) install $(MAKE) DESTDIR="`pwd`"/vlc_install_dir install
touch $@ touch $@
...@@ -28,7 +28,7 @@ package-win-common: package-win-install build-npapi ...@@ -28,7 +28,7 @@ package-win-common: package-win-install build-npapi
mkdir -p "$(win32_destdir)"/ mkdir -p "$(win32_destdir)"/
# Executables, major libs+manifests # Executables, major libs+manifests
find $(prefix) -maxdepth 4 \( -name "*$(LIBEXT)" -o -name "*$(EXEEXT)" \) -exec cp {} "$(win32_destdir)/" \; find vlc_install_dir -maxdepth 4 \( -name "*$(LIBEXT)" -o -name "*$(EXEEXT)" \) -exec cp {} "$(win32_destdir)/" \;
cd $(top_srcdir)/extras/package/win32 && cp vlc$(EXEEXT).manifest libvlc$(LIBEXT).manifest "$(win32_destdir)/" cd $(top_srcdir)/extras/package/win32 && cp vlc$(EXEEXT).manifest libvlc$(LIBEXT).manifest "$(win32_destdir)/"
# Text files, clean them from mail addresses # Text files, clean them from mail addresses
...@@ -40,21 +40,21 @@ package-win-common: package-win-install build-npapi ...@@ -40,21 +40,21 @@ package-win-common: package-win-install build-npapi
done done
cp $(srcdir)/share/icons/vlc.ico $(win32_destdir) cp $(srcdir)/share/icons/vlc.ico $(win32_destdir)
cp -r $(prefix)/lib/vlc/plugins $(win32_destdir) cp -r vlc_install_dir/lib/vlc/plugins $(win32_destdir)
-cp -r $(prefix)/share/locale $(win32_destdir) -cp -r vlc_install_dir/share/locale $(win32_destdir)
if BUILD_LUA if BUILD_LUA
mkdir -p $(win32_destdir)/lua/ mkdir -p $(win32_destdir)/lua/
cp -r $(prefix)/lib/vlc/lua/* $(prefix)/share/vlc/lua/* $(win32_destdir)/lua/ cp -r vlc_install_dir/lib/vlc/lua/* vlc_install_dir/share/vlc/lua/* $(win32_destdir)/lua/
endif endif
if BUILD_SKINS if BUILD_SKINS
rm -fr $(win32_destdir)/skins rm -fr $(win32_destdir)/skins
cp -r $(prefix)/share/vlc/skins2 $(win32_destdir)/skins cp -r vlc_install_dir/share/vlc/skins2 $(win32_destdir)/skins
endif endif
if BUILD_OSDMENU if BUILD_OSDMENU
cp -r $(prefix)/share/vlc/osdmenu "$(win32_destdir)/" cp -r vlc_install_dir/share/vlc/osdmenu "$(win32_destdir)/"
for file in $(win32_destdir)/osdmenu/*.cfg; do \ for file in $(win32_destdir)/osdmenu/*.cfg; do \
sed -i.orig -e 's%share/osdmenu%osdmenu%g' -e 's%/%\\%g' "$$file"; \ sed -i.orig -e 's%share/osdmenu%osdmenu%g' -e 's%/%\\%g' "$$file"; \
rm -f -- "$${file}.orig"; \ rm -f -- "$${file}.orig"; \
...@@ -77,12 +77,12 @@ endif ...@@ -77,12 +77,12 @@ endif
# SDK # SDK
mkdir -p "$(win32_destdir)/sdk/lib/" mkdir -p "$(win32_destdir)/sdk/lib/"
cp -r $(prefix)/include "$(win32_destdir)/sdk" cp -r vlc_install_dir/include "$(win32_destdir)/sdk"
cp -r $(prefix)/lib/pkgconfig "$(win32_destdir)/sdk/lib" cp -r vlc_install_dir/lib/pkgconfig "$(win32_destdir)/sdk/lib"
cd $(prefix)/lib && cp -rv libvlc.dll.a libvlc.la libvlccore.dll.a libvlccore.la "$(win32_destdir)/sdk/lib/" cd vlc_install_dir/lib && cp -rv libvlc.dll.a libvlc.la libvlccore.dll.a libvlccore.la "$(win32_destdir)/sdk/lib/"
if !HAVE_WINCE if !HAVE_WINCE
$(DLLTOOL) -D libvlc.dll -l "$(win32_destdir)/sdk/lib/libvlc.lib" -d "$(top_builddir)/lib/.libs/libvlc.dll.def" "$(prefix)/bin/libvlc.dll" $(DLLTOOL) -D libvlc.dll -l "$(win32_destdir)/sdk/lib/libvlc.lib" -d "$(top_builddir)/lib/.libs/libvlc.dll.def" "vlc_install_dir/bin/libvlc.dll"
$(DLLTOOL) -D libvlccore.dll -l "$(win32_destdir)/sdk/lib/libvlccore.lib" -d "$(top_builddir)/src/.libs/libvlccore.dll.def" "$(prefix)/bin/libvlccore.dll" $(DLLTOOL) -D libvlccore.dll -l "$(win32_destdir)/sdk/lib/libvlccore.lib" -d "$(top_builddir)/src/.libs/libvlccore.dll.def" "vlc_install_dir/bin/libvlccore.dll"
if !HAVE_WIN64 if !HAVE_WIN64
mkdir -p "$(win32_destdir)/sdk/activex/" mkdir -p "$(win32_destdir)/sdk/activex/"
...@@ -114,7 +114,7 @@ package-win-strip: package-win-common ...@@ -114,7 +114,7 @@ package-win-strip: package-win-common
package-win32-webplugin-common: package-win-strip package-win32-webplugin-common: package-win-strip
mkdir -p "$(win32_xpi_destdir)/" mkdir -p "$(win32_xpi_destdir)/"
cp -r $(win32_destdir)/plugins/ "$(win32_xpi_destdir)/" cp -r $(win32_destdir)/plugins/ "$(win32_xpi_destdir)/"
find $(prefix) -maxdepth 4 -name "*$(LIBEXT)" -exec cp {} "$(win32_xpi_destdir)/" \; find vlc_install_dir -maxdepth 4 -name "*$(LIBEXT)" -exec cp {} "$(win32_xpi_destdir)/" \;
cp $(top_builddir)/npapi-vlc/npapi/npvlc.dll.manifest "$(win32_xpi_destdir)/plugins/" cp $(top_builddir)/npapi-vlc/npapi/npvlc.dll.manifest "$(win32_xpi_destdir)/plugins/"
cp "$(top_srcdir)/extras/package/win32/libvlc.dll.manifest" "$(win32_xpi_destdir)/plugins/" cp "$(top_srcdir)/extras/package/win32/libvlc.dll.manifest" "$(win32_xpi_destdir)/plugins/"
rm -rf "$(win32_xpi_destdir)/plugins/*qt*" rm -rf "$(win32_xpi_destdir)/plugins/*qt*"
......
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