Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libs/libmpdclient: Update to 2.16 #7787

Merged
merged 1 commit into from
Dec 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/libmpdclient/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=libmpdclient
PKG_VERSION:=2.14
PKG_VERSION:=2.16
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_HASH:=0a84e2791bfe3077cf22ee1784c805d5bb550803dffe56a39aa3690a38061372
PKG_HASH:=fa6bdab67c0e0490302b38f00c27b4959735c3ec8aef7a88327adb1407654464
PKG_SOURCE_URL:=https://www.musicpd.org/download/libmpdclient/2/

PKG_MAINTAINER:=Ted Hess <[email protected]>
Expand Down
4 changes: 4 additions & 0 deletions libs/libmpdclient/autotools-files/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ mpdinclude_HEADERS = \
include/mpd/idle.h \
include/mpd/list.h \
include/mpd/mixer.h \
include/mpd/mount.h \
include/mpd/parser.h \
include/mpd/password.h \
include/mpd/player.h \
Expand Down Expand Up @@ -44,6 +45,7 @@ lib_LTLIBRARIES = src/libmpdclient.la

src_libmpdclient_la_SOURCES = \
src/async.c src/iasync.h \
src/audio_format.c \
src/buffer.h \
src/internal.h \
src/ierror.c src/ierror.h \
Expand All @@ -64,6 +66,8 @@ src_libmpdclient_la_SOURCES = \
src/kvlist.c \
src/list.c \
src/mixer.c \
src/mount.c \
src/cmount.c \
src/parser.c \
src/password.c \
src/player.c \
Expand Down
6 changes: 3 additions & 3 deletions libs/libmpdclient/autotools-files/configure.ac
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
AC_PREREQ(2.60)
AC_INIT(libmpdclient, 2.14, [email protected])
AC_INIT(libmpdclient, 2.16, [email protected])
AC_CONFIG_SRCDIR([src/connection.c])
AC_CONFIG_AUX_DIR(build)
AM_INIT_AUTOMAKE([foreign 1.11 dist-xz subdir-objects silent-rules])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])

AC_SUBST(MAJOR_VERSION,2)
AC_SUBST(MINOR_VERSION,14)
AC_SUBST(MINOR_VERSION,16)
AC_SUBST(PATCH_VERSION,0)

LIBMPDCLIENT_LIBTOOL_VERSION=2:14:0
LIBMPDCLIENT_LIBTOOL_VERSION=2:16:0
AC_SUBST(LIBMPDCLIENT_LIBTOOL_VERSION)

# Remove the check for c++ and fortran compiler
Expand Down