9f5c04185b
Since development on XMMS ended long ago (last release was in 2007), we have switched support to MPRIS (Media Player Remote Interfacing Specification), an API for controlling *any* media player which supports it. We use the playerctl C library, available from https://github.com/acrisci/playerctl. Because of the switch, several more XMMS-specific features have been removed. In particular, * The channels are no longer displayed, and the volume is always displayed. * The bitrate is no longer displayed, and the title is always displayed. * The eject feature no longer is functional, although the eject button is still present. * Toggling between the various XMMS windows is no longer supported.
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
AC_INIT([wmusic], [1.5.0], [wmaker-dev@googlegroups.com])
|
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
|
AC_CONFIG_SRCDIR([configure.ac])
|
|
AC_PROG_CC
|
|
PKG_CHECK_MODULES([X11], [x11])
|
|
PKG_CHECK_MODULES([DOCKAPP], [dockapp])
|
|
PKG_CHECK_MODULES([PLAYERCTL], [playerctl-1.0])
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|