Commit 82e4304a authored by Gildas Bazin's avatar Gildas Bazin

* Makefile.am: strip the mozilla plugin when doing the win32 package.
* configure.ac: on win32 we compile the theora module as a plugin, not builtin.
parent dc29951c
......@@ -570,6 +570,7 @@ package-win32-base:
mkdir -p "$(srcdir)/vlc-${VERSION}/mozilla"
if BUILD_MOZILLA
cp $(srcdir)/mozilla/npvlc.dll $(srcdir)/vlc-${VERSION}/mozilla/ ;
$(STRIP) $(srcdir)/vlc-${VERSION}/mozilla/npvlc.dll;
cp $(srcdir)/mozilla/vlcintf.xpt $(srcdir)/vlc-${VERSION}/mozilla/ ;
endif
......
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.97 2003/10/26 16:12:34 gbazin Exp $
dnl $Id: configure.ac,v 1.98 2003/10/26 17:11:56 gbazin Exp $
AC_INIT(vlc,0.6.3-cvs)
......@@ -2084,7 +2084,11 @@ if test "${enable_theora}" = "yes"
then
AC_CHECK_HEADERS(theora/theora.h, [
AC_CHECK_LIB(theora, theora_granule_time, [
AX_ADD_BUILTINS([theora])
if test "${SYS}" = "mingw32"; then
AX_ADD_PLUGINS([theora])
else
AX_ADD_BUILTINS([theora])
fi
if test "${SYS}" = "darwin"; then
theora_libs="-ltheora"
else
......
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