summaryrefslogtreecommitdiffstats
path: root/conf.diff
diff options
context:
space:
mode:
Diffstat (limited to 'conf.diff')
-rw-r--r--conf.diff48
1 files changed, 0 insertions, 48 deletions
diff --git a/conf.diff b/conf.diff
deleted file mode 100644
index 7ebf50a..0000000
--- a/conf.diff
+++ /dev/null
@@ -1,48 +0,0 @@
---- configure.in.in 2007-10-06 12:25:00.851848655 +0200
-+++ configure.in.in 2007-09-29 00:20:22.000000000 +0200
-@@ -132,16 +137,16 @@
-
- AM_CONDITIONAL(include_kgstplayer, [test "x$have_gst" = "xyes" && test "x$have_gst_plugins" = "xyes"])
-
--buildnpp=yes
-+hasnspr=yes
- LIBNSPR_LIBS=""
- LIBNSPR_CFLAGS=""
- LIBQTDBUS=""
- LIBDBUS_CFLAGS=""
- AC_ARG_ENABLE(nspr, [ --enable-npplayer Enables building with npp support],
- [if test "x$enableval" == "xno"; then
-- buildnpp=no
-+ hasnspr=no
- fi])
--if test "$buildnpp" = "yes"; then
-+if test "$hasnspr" = "yes"; then
- if test "$PKGCONFIGFOUND" = "yes" ; then
- DBUS_REQ=1.0.0
- PKG_CHECK_MODULES(DBUS, dbus-1 >= $DBUS_REQ,
-@@ -150,9 +155,22 @@
- AC_DEFINE(HAVE_DBUS, 1, [have DBus])
- LIBQTDBUS="`$PKG_CONFIG --libs dbus-1` -ldbus-qt-1"
- LIBDBUS_CFLAGS="`$PKG_CONFIG --cflags dbus-1`"
-- AC_DEFINE(HAVE_NSPR, 1, [build Netscape plugin loader])
-- LIBNSPR_LIBS="`$PKG_CONFIG --libs gtk+-x11-2.0` `$PKG_CONFIG --libs dbus-glib-1`"
-- LIBNSPR_CFLAGS="`$PKG_CONFIG --cflags gtk+-x11-2.0` `$PKG_CONFIG --cflags dbus-glib-1`"
-+ PKG_CHECK_MODULES(NSPR, nspr >= 1.8.0,
-+ have_nspr=yes,have_nspr=no)
-+ if test "x$have_nspr" = "xno"; then
-+ AC_CHECK_PROG(NSPRCONFIGFOUND, nspr-config,[yes])
-+ if test $NSPRCONFIGFOUND; then
-+ have_nspr=yes
-+ NSPR_CFG=nspr-config
-+ fi
-+ else
-+ NSPR_CFG=pkg-config nspr
-+ fi
-+ if test "x$have_nspr" = "xyes"; then
-+ AC_DEFINE(HAVE_NSPR, 1, [have Netscape Portable Runtime])
-+ LIBNSPR_LIBS="`$PKG_CONFIG --libs gtk+-x11-2.0` `$PKG_CONFIG --libs dbus-glib-1` `$NSPR_CFG --libs`"
-+ LIBNSPR_CFLAGS="`$PKG_CONFIG --cflags gtk+-x11-2.0` `$PKG_CONFIG --cflags dbus-glib-1` `$NSPR_CFG --cflags`"
-+ fi
- fi
- fi
- fi