summaryrefslogtreecommitdiffstats
path: root/conf.diff
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-03-02 13:57:11 +0100
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-03-03 13:34:13 +0900
commit9b37b1167746948beb450761d1f2d004adc124ec (patch)
tree38deda1c1c2ada0df679a34fc3cc5ddbceebbd61 /conf.diff
parentfbd8cbf7678f7d8984c414c2b5a38139c14a354c (diff)
downloadkmplayer-9b37b116.tar.gz
kmplayer-9b37b116.zip
Drop automake build support.
Add basic cmake build instructions. Delete empty file NEWS. Rework of the README and the English help page files. Update some cmake files with latest macros. libXv and libXext are handled by cmake intern modules through X11 variables. Few cosmetics. Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit 95a6a36403a289814bb252cd5496e4d67d331b11)
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