mirror of
https://github.com/videolan/vlc.git
synced 2024-11-25 02:44:30 +08:00
* 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.
This commit is contained in:
parent
dc29951c7f
commit
82e4304a9b
@ -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
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user