Update of /cvsroot/openvrml/openvrml
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15715
Modified Files:
Tag: OpenVRML-0_16-BRANCH
configure.ac openvrml.spec.in
Log Message:
Accommodate building against Firefox development headers.
Index: configure.ac
===================================================================
RCS file: /cvsroot/openvrml/openvrml/configure.ac,v
retrieving revision 1.92.2.5
retrieving revision 1.92.2.6
diff -C2 -d -r1.92.2.5 -r1.92.2.6
*** configure.ac 9 Oct 2006 18:42:53 -0000 1.92.2.5
--- configure.ac 25 Oct 2006 19:15:17 -0000 1.92.2.6
***************
*** 37,40 ****
--- 37,41 ----
#
REQUIRE_FONTCONFIG="fontconfig"
+ REQUIRE_FIREFOX_JS="firefox-js"
REQUIRE_MOZILLA_JS="mozilla-js >= 1.2.1"
***************
*** 106,110 ****
! PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS], , [have_js=no])
PKG_CHECK_MODULES([GTK], [gtk+-2.0], , [have_gtk=no])
AC_PATH_XTRA
--- 107,115 ----
! PKG_CHECK_MODULES([JS], [$REQUIRE_FIREFOX_JS],
! [mozilla_js_pkg=$REQUIRE_FIREFOX_JS],
! [PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS],
! [mozilla_js_pkg=$REQUIRE_MOZILLA_JS],
! [have_js=no])])
PKG_CHECK_MODULES([GTK], [gtk+-2.0], , [have_gtk=no])
AC_PATH_XTRA
***************
*** 226,233 ****
OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES},"
fi
! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES} ${REQUIRE_MOZILLA_JS}"
AC_DEFINE([OPENVRML_ENABLE_SCRIPT_NODE_JAVASCRIPT], [1],
[Defined if Script node JavaScript support is enabled.])
! GRE_PATH=`$PKG_CONFIG --libs-only-L mozilla-js | sed -e 's/^-L//' -e 's/ *$//'`
if test -n "${openvrml_run_path}" -a -n "${GRE_PATH}"; then
openvrml_run_path=":${openvrml_run_path}"
--- 231,238 ----
OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES},"
fi
! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES} ${mozilla_js_pkg}"
AC_DEFINE([OPENVRML_ENABLE_SCRIPT_NODE_JAVASCRIPT], [1],
[Defined if Script node JavaScript support is enabled.])
! GRE_PATH=`$PKG_CONFIG --libs-only-L ${mozilla_js_pkg%% *} | sed -e 's/^-L//' -e 's/ *$//'`
if test -n "${openvrml_run_path}" -a -n "${GRE_PATH}"; then
openvrml_run_path=":${openvrml_run_path}"
Index: openvrml.spec.in
===================================================================
RCS file: /cvsroot/openvrml/openvrml/openvrml.spec.in,v
retrieving revision 1.52.2.3
retrieving revision 1.52.2.4
diff -C2 -d -r1.52.2.3 -r1.52.2.4
*** openvrml.spec.in 5 Oct 2006 05:14:03 -0000 1.52.2.3
--- openvrml.spec.in 25 Oct 2006 19:15:17 -0000 1.52.2.4
***************
*** 17,21 ****
BuildRequires: fontconfig-devel >= 2.0
BuildRequires: freetype-devel >= 2.1.2
! BuildRequires: mozilla-devel >= 1.6
BuildRequires: mesa-libGLU-devel
BuildRequires: libXmu-devel
--- 17,21 ----
BuildRequires: fontconfig-devel >= 2.0
BuildRequires: freetype-devel >= 2.1.2
! BuildRequires: firefox-devel
BuildRequires: mesa-libGLU-devel
BuildRequires: libXmu-devel
***************
*** 26,30 ****
Requires: fontconfig >= 2.0
Requires: freetype >= 2.1.2
! Requires: mozilla >= 1.6
%description
--- 26,30 ----
Requires: fontconfig >= 2.0
Requires: freetype >= 2.1.2
! Requires: firefox
%description
***************
*** 74,78 ****
License: GPL
Requires: %{name}-gtkplug = %{version}
! Requires: mozilla >= 1.6
%description mozilla-plugin
VRML browser plug-in for Mozilla-based browsers.
--- 74,78 ----
License: GPL
Requires: %{name}-gtkplug = %{version}
! Requires: firefox
%description mozilla-plugin
VRML browser plug-in for Mozilla-based browsers.
***************
*** 134,137 ****
--- 134,140 ----
%changelog
+ * Wed Oct 25 2006 Braden McDaniel <br...@en...>
+ - Require firefox instead of mozilla.
+
* Thu Oct 05 2006 Braden McDaniel <br...@en...>
- Added openvrml-gtkplug info.
|