Commit d6bdbbab authored by Christophe Mutricy's avatar Christophe Mutricy

Fix mozilla and xpidl detection

parent f02a46fd
...@@ -5083,14 +5083,14 @@ then ...@@ -5083,14 +5083,14 @@ then
if test "${MOZILLA_CONFIG}" = "no" if test "${MOZILLA_CONFIG}" = "no"
then then
AC_PATH_PROG(XULRUNNER_CONFIG, xulrunner-config, no) AC_PATH_PROG(XULRUNNER_CONFIG, xulrunner-config, no)
if test "${XULRUNNER_CONFIG}" != "no" if test "${XULRUNNER_CONFIG}" = "no"
then then
AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
else
have_xul=true have_xul=true
MOZILLA_CONFIG="${XULRUNNER_CONFIG}" MOZILLA_CONFIG="${XULRUNNER_CONFIG}"
else
AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
fi
fi fi
if ${MOZILLA_CONFIG} --defines | grep -q 'MOZ_X11=1'; then if ${MOZILLA_CONFIG} --defines | grep -q 'MOZ_X11=1'; then
LDFLAGS="${LDFLAGS_save} ${X_LIBS} ${X_PRE_LIBS}" LDFLAGS="${LDFLAGS_save} ${X_LIBS} ${X_PRE_LIBS}"
AC_CHECK_LIB(Xt,XtStrings, AC_CHECK_LIB(Xt,XtStrings,
...@@ -5124,6 +5124,7 @@ then ...@@ -5124,6 +5124,7 @@ then
xpidl_path="`${MOZILLA_CONFIG} --prefix`/bin" xpidl_path="`${MOZILLA_CONFIG} --prefix`/bin"
fi fi
fi fi
dnl End of moz_sdk = ""
else else
dnl special case for mingw32 dnl special case for mingw32
if test "${SYS}" = "mingw32" if test "${SYS}" = "mingw32"
...@@ -5165,11 +5166,11 @@ then ...@@ -5165,11 +5166,11 @@ then
if test "${mozilla}" != "false" if test "${mozilla}" != "false"
then then
build_pic=yes build_pic=yes
AC_PATH_PROG(XPIDL, xpidl, no, ${xpidl_path}:/usr/lib/mozilla:/usr/lib64/mozilla) AC_PATH_PROG(XPIDL, xpidl, no, ${xpidl_path}:/usr/lib/mozilla:/usr/lib64/mozilla:/usr/lib/xulrunner:/usr/lib64/xulrunner)
if test "${XPIDL}" = "no"; then if test "${XPIDL}" = "no"; then
AC_MSG_ERROR([Please install the Mozilla development tools, xpidl was not found.]) AC_MSG_ERROR([Please install the Mozilla development tools, xpidl was not found.])
fi fi
fi
fi fi
AM_CONDITIONAL(BUILD_MOZILLA,${mozilla}) AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
......
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