xaizek / pms (License: GPLv3+) (since 2018-12-07)
Older version of Practical Music Search written in C++.
Commit 83ba4473e00fc6822797b3434531d20da35ff4a5

Remove ZeroMQ from program requirements
Author: Kim Tore Jensen
Author date (UTC): 2015-08-28 22:11
Committer name: Kim Tore Jensen
Committer date (UTC): 2015-08-28 22:11
Parent(s): 449eb668d12cd069002b925675ae5d870e09186c
Signing key:
Tree: 561e02cec604b33c2e20dd4f263797b7ba1a9258
File Lines added Lines deleted
configure.ac 0 1
src/Makefile.am 1 2
File configure.ac changed (mode: 100644) (index 5c0ed13..9c453c1)
... ... AC_PROG_MAKE_SET
22 22 # Checks for libraries. # Checks for libraries.
23 23 AX_WITH_CURSES AX_WITH_CURSES
24 24 PKG_CHECK_MODULES([glib], [glib-2.0 >= 2.0],, [AC_MSG_ERROR([glib 2.0 or newer is required])]) PKG_CHECK_MODULES([glib], [glib-2.0 >= 2.0],, [AC_MSG_ERROR([glib 2.0 or newer is required])])
25 PKG_CHECK_MODULES([libzmq], [libzmq >= 3.0],, [AC_MSG_ERROR([ZeroMQ 3.x or newer is required])])
26 25 PKG_CHECK_MODULES([libmpdclient], [libmpdclient >= 2.5],, [AC_MSG_ERROR([libmpdclient 2.5 or newer is required])]) PKG_CHECK_MODULES([libmpdclient], [libmpdclient >= 2.5],, [AC_MSG_ERROR([libmpdclient 2.5 or newer is required])])
27 26
28 27 # Checks for header files. # Checks for header files.
File src/Makefile.am changed (mode: 100644) (index e7bd8ec..1f5be13)
... ... pms_SOURCES = action.cpp color.cpp command.cpp config.cpp conn.cpp display.cpp i
4 4
5 5 AM_CXXFLAGS = \ AM_CXXFLAGS = \
6 6 @glib_CFLAGS@ \ @glib_CFLAGS@ \
7 @libzmq_CFLAGS@ \
8 7 @libmpdclient_CFLAGS@ \ @libmpdclient_CFLAGS@ \
9 8 -DLOCALE_DIR=\""$(datadir)/locale"\" -DLOCALE_DIR=\""$(datadir)/locale"\"
10 9
11 pms_LDADD = @CURSES_LIB@ $(glib_LIBS) $(libzmq_LIBS) $(libmpdclient_LIBS) -lpthread
10 pms_LDADD = @CURSES_LIB@ $(glib_LIBS) $(libmpdclient_LIBS) -lpthread
12 11
13 12 ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I m4
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/pms

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/pms

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master