Commit c3e5a7dd authored by Gildas Bazin's avatar Gildas Bazin

* configure.ac, activex/Makefile.am: small fixes to the activex plugin build.

parent 0b321496
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
noinst_LIBRARIES = $(noinst_LIBRARIES_activex) noinst_LIBRARIES = $(noinst_LIBRARIES_activex)
MOSTLYCLEANFILES = $(LIBRARIES_activex) MOSTLYCLEANFILES = $(LIBRARIES_activex)
EXTRA_DIST = $(SOURCES_activex) $(DIST_rsrc) EXTRA_DIST = $(SOURCES_activex) $(DIST_rsrc) $(DIST_misc)
BUILT_SOURCES = $(BUILT_SOURCES_activex) BUILT_SOURCES = $(BUILT_SOURCES_activex)
SOURCES_activex = \ SOURCES_activex = \
...@@ -44,6 +44,16 @@ DIST_rsrc = \ ...@@ -44,6 +44,16 @@ DIST_rsrc = \
axvlc_rc.rc \ axvlc_rc.rc \
$(NULL) $(NULL)
DIST_misc = \
README.TXT \
axvlc.def \
axvlc.idl \
axvlc.reg \
axvlc.tlb \
inplace.bmp \
test.html \
$(NULL)
LIBRARIES_libvlc = $(top_builddir)/lib/libvlc.a LIBRARIES_libvlc = $(top_builddir)/lib/libvlc.a
noinst_LIBRARIES_activex = libaxvlc.a noinst_LIBRARIES_activex = libaxvlc.a
......
...@@ -297,7 +297,7 @@ CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcd ...@@ -297,7 +297,7 @@ CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcd
dnl Check for system libs needed dnl Check for system libs needed
need_libc=false need_libc=false
AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol strtof strtoll isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign gethostbyname2 if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon) AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol strtof strtoll strtoull isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign gethostbyname2 if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon)
dnl Check for usual libc functions dnl Check for usual libc functions
AC_CHECK_FUNCS(strdup strndup atof lseek) AC_CHECK_FUNCS(strdup strndup atof lseek)
...@@ -3918,8 +3918,6 @@ fi ...@@ -3918,8 +3918,6 @@ fi
dnl dnl
dnl Microsoft ActiveX support dnl Microsoft ActiveX support
dnl dnl
AC_ARG_VAR(MIDL, [Microsoft IDL compiler (Win32 platform only)])
AM_CONDITIONAL(HAS_MIDL_COMPILER, test -n "${MIDL}")
AC_ARG_ENABLE(activex, AC_ARG_ENABLE(activex,
[ --enable-activex build a vlc-based ActiveX control (default enabled on Win32)]) [ --enable-activex build a vlc-based ActiveX control (default enabled on Win32)])
if test "${enable_activex}" != "no" if test "${enable_activex}" != "no"
...@@ -3938,6 +3936,8 @@ then ...@@ -3938,6 +3936,8 @@ then
) )
fi fi
fi fi
AC_ARG_VAR(MIDL, [Microsoft IDL compiler (Win32 platform only)])
AM_CONDITIONAL(HAS_MIDL_COMPILER, test -n "${MIDL}")
dnl dnl
dnl Mozilla plugin dnl Mozilla plugin
......
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