Commit 789fe96a authored by Christophe Mutricy's avatar Christophe Mutricy

configure.ac and mozilla

Add a variable to force which .pc to use
add libxul (aka xulrunner 1.9) before iceape-plugin and xulrunner-plugin (xul 1.8)
Don't depends on mozilla-config.h when using pkg-config. It's the old way
of doing thing and requires us to depends on the foo-xpcom.pc

Needs backporting once tested
(cherry picked from commit 26c5015f)
Signed-off-by: default avatarChristophe Mutricy <xtophe@videolan.org>
parent 565d5ea2
...@@ -5414,6 +5414,8 @@ AC_ARG_ENABLE(mozilla, ...@@ -5414,6 +5414,8 @@ AC_ARG_ENABLE(mozilla,
(default disabled)])) (default disabled)]))
AC_ARG_WITH(mozilla-sdk-path, AC_ARG_WITH(mozilla-sdk-path,
[ --with-mozilla-sdk-path=PATH path to mozilla sdk]) [ --with-mozilla-sdk-path=PATH path to mozilla sdk])
AC_ARG_WITH(mozilla-pkg,
[ --with-mozilla-pkg=PKG look for PKG.pc to build the mozilla plugin.])
AC_LANG_PUSH(C++) AC_LANG_PUSH(C++)
if test "${enable_mozilla}" = "yes" if test "${enable_mozilla}" = "yes"
then then
...@@ -5432,13 +5434,12 @@ then ...@@ -5432,13 +5434,12 @@ then
found=1 found=1
else else
if test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG"; then
for i in seamonkey iceape xulrunner firefox iceweasel mozilla; do for i in "${with_mozilla_pkg}" libxul {seamonkey,iceape,xulrunner,firefox,iceweasel,mozilla}-plugin; do
echo "Trying to find $i .pc files" >&5 echo "Trying to find $i.pc files" >&5
i="${i}-xpcom ${i}-plugin"
if $PKG_CONFIG --exists --print-errors "$i" 2>&5 if $PKG_CONFIG --exists --print-errors "$i" 2>&5
then then
echo "Using $i .pc files." >&5 echo "Using $i.pc files." >&5
echo "Using $i .pc files." >&6 echo "Using $i.pc files." >&6
found=1 found=1
MOZILLA_CFLAGS=$( $PKG_CONFIG --cflags "$i" ) MOZILLA_CFLAGS=$( $PKG_CONFIG --cflags "$i" )
MOZILLA_LIBS=$( $PKG_CONFIG --libs "$i" ) MOZILLA_LIBS=$( $PKG_CONFIG --libs "$i" )
...@@ -5450,7 +5451,6 @@ then ...@@ -5450,7 +5451,6 @@ then
AS_IF( [test $found = 1],[ AS_IF( [test $found = 1],[
CPPFLAGS="${CPPFLAGS_save} ${MOZILLA_CFLAGS}" CPPFLAGS="${CPPFLAGS_save} ${MOZILLA_CFLAGS}"
MOZILLA_REQUIRED_HEADERS=1 MOZILLA_REQUIRED_HEADERS=1
AC_CHECK_HEADERS(mozilla-config.h,,MOZILLA_REQUIRED_HEADERS=0)
AC_CHECK_HEADERS(npapi.h,,MOZILLA_REQUIRED_HEADERS=0) AC_CHECK_HEADERS(npapi.h,,MOZILLA_REQUIRED_HEADERS=0)
AC_CHECK_HEADERS(npruntime.h,,MOZILLA_REQUIRED_HEADERS=0, AC_CHECK_HEADERS(npruntime.h,,MOZILLA_REQUIRED_HEADERS=0,
[#if HAVE_NPAPI_H [#if HAVE_NPAPI_H
...@@ -5462,16 +5462,18 @@ then ...@@ -5462,16 +5462,18 @@ then
fi fi
MOZILLA_REQUIRED_HEADERS= MOZILLA_REQUIRED_HEADERS=
mozilla=: mozilla=:
AC_EGREP_CPP(yes, AS_IF([ test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"],[
[#include <mozilla-config.h> VLC_ADD_CPPFLAGS([mozilla],[-DXP_UNIX -DOJI])
#ifdef MOZ_X11 AS_IF([ test "${SYS}" != "darwin"],[
yes PKG_CHECK_MODULES(XPM, [xpm xt],[
#endif], VLC_ADD_CPPFLAGS([mozilla],[-DMOZ_X11])
[AC_CHECK_HEADERS(X11/xpm.h,,AC_MSG_ERROR([Please install libXpm-devel library for required X11/xpm.h])) ],[
VLC_ADD_LIBS([mozilla], [${X_LIBS} ${X_PRE_LIBS} -lX11 -lXt -lXpm]) AC_MSG_ERROR([Please install the libXpm and libXt development files.])
]) ])
VLC_ADD_CPPFLAGS([mozilla],[${CPPFLAGS}]) ])
VLC_ADD_LIBS([mozilla],[${MOZILLA_LIBS}]) ])
VLC_ADD_CPPFLAGS([mozilla],[${CPPFLAGS} ${XPM_CFLAGS}])
VLC_ADD_LIBS([mozilla],[${MOZILLA_LIBS} ${XPM_LIBS}])
VLC_ADD_PLUGIN([mozilla]) VLC_ADD_PLUGIN([mozilla])
PLUGINS_BINDINGS="${PLUGINS_BINDINGS} mozilla" PLUGINS_BINDINGS="${PLUGINS_BINDINGS} mozilla"
MOZILLA_CONFIG= MOZILLA_CONFIG=
......
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