Player Daemon, written in C++. The target audience are power users who need an MPD client that is highly configurable and accessible. PMS features a simple but powerful interface similar to Vim, and runs on (at least) Linux and Mac OS X. WWW: http://pms.sourceforge.net/ PR: ports/146530 Submitted by: Ashish SHUKLA <wahjava@gmail.com>
16 lines
180 B
C++
16 lines
180 B
C++
|
|
$FreeBSD$
|
|
|
|
--- src/pms.cpp.orig
|
|
+++ src/pms.cpp
|
|
@@ -23,6 +23,10 @@
|
|
|
|
#include "pms.h"
|
|
|
|
+#ifdef __FreeBSD__
|
|
+#include <sys/wait.h>
|
|
+#endif
|
|
+
|
|
using namespace std;
|
|
|
|
Pms * pms;
|