summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-17 15:22:12 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-17 15:22:12 +0000
commit78a799e649b644f4c2f43bf1a1bd71cfd0f5ef45 (patch)
tree32e7dda24aacc72cb5a768fafa85bc42c3a756eb
parent141ab85bb76c3d2a8f6f2eee91801597c98e4154 (diff)
make distcheck clean
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@93 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--doc/README.html.in11
-rw-r--r--doc/todo20
-rw-r--r--polyp/Makefile.am4
-rw-r--r--polyp/pacat-simple.c4
-rw-r--r--polyp/pacat.c8
-rw-r--r--polyp/pactl.c8
-rw-r--r--polyp/parec-simple.c4
7 files changed, 34 insertions, 25 deletions
diff --git a/doc/README.html.in b/doc/README.html.in
index b523e3dc..ad8832c6 100644
--- a/doc/README.html.in
+++ b/doc/README.html.in
@@ -10,7 +10,7 @@
<body>
<h1><a name="top">polypaudio @PACKAGE_VERSION@</a></h1>
-<p><i>Copyright 2002-2004 Lennart Poettering &lt;@PACKAGE_BUGREPORT@&gt;</i></p>
+<p><i>Copyright 2004 Lennart Poettering &lt;@PACKAGE_BUGREPORT@&gt;</i></p>
<ul class="toc">
<li><a href="#license">License</a></li>
@@ -72,7 +72,7 @@ integration with asynchronous applications using the
<tt>glib</tt>/<tt>gtk</tt> mainloop. Since the asynchronous API
available through <tt>polyplib</tt> is quite difficult to use there is
a simplified synchronous API wrapper <tt>polyplib-simple</tt>
-available.</p>
+available. A simple main loop implementation is available as well.</p>
<h2><a name="status">Status</a></h2>
@@ -91,7 +91,12 @@ href="cli.html"><tt>cli.html</tt></a>, <a
href="daemon.html"><tt>daemeon.html</tt></a>.</p>
<p>Documentation for developing with <tt>polypaudio</tt> is not yet
-available. Read the source, Luke!</p>
+available. Read the source, Luke! There are some example application
+available: for the <a
+href="http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/polyp/pacat.c?view=markup">asynchronous
+API</a> and for the <a
+href="http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/polyp/pacat-simple.c?view=markup">simple,
+synchronous API</a>.</p>
<h3>First Steps</h1>
diff --git a/doc/todo b/doc/todo
index 5b944a36..5142c013 100644
--- a/doc/todo
+++ b/doc/todo
@@ -1,27 +1,31 @@
*** $Id$ ***
-- documentation
-
-*** post 0.1 ***
+*** 0.2 ***
- future cancellation
-- client-ui
- clip cache
- autoloading/autounloading
-- slp/rendezvous
- doxygen
- make mcalign merge chunks
-- modinfo
+
+*** 0.3 ***
+- client-ui
- move the global memblock statistics variables to the core
- unix socket directories include user name
-- more complete pactl
- native library/protocol:
get server layout
subscription
module load/unload
kill client/...
+- more complete pactl
+
+** later ***
+- slp/rendezvous
+- modinfo
- make alsa modules use mmap
-drivers:
+***********
+
+backends for:
- libao
- xmms
- portaudio
diff --git a/polyp/Makefile.am b/polyp/Makefile.am
index 4edeeeba..02227476 100644
--- a/polyp/Makefile.am
+++ b/polyp/Makefile.am
@@ -17,9 +17,9 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-AM_CFLAGS=-ansi -D_GNU_SOURCE -DDLSEARCHDIR=\"$(pkglibdir)\"
+AM_CFLAGS=-ansi -D_GNU_SOURCE -DDLSEARCHDIR=\"$(pkglibdir)\" -I$(srcdir)/..
-EXTRA_DIST = polypaudio.run depmod.py
+EXTRA_DIST = polypaudio.pa depmod.py
bin_PROGRAMS = polypaudio pacat pactl
noinst_PROGRAMS = pacat-simple parec-simple
diff --git a/polyp/pacat-simple.c b/polyp/pacat-simple.c
index 5018aa5f..f2aae2e4 100644
--- a/polyp/pacat-simple.c
+++ b/polyp/pacat-simple.c
@@ -28,8 +28,8 @@
#include <string.h>
#include <errno.h>
-#include "polyplib-simple.h"
-#include "polyplib-error.h"
+#include <polyp/polyplib-simple.h>
+#include <polyp/polyplib-error.h>
#define BUFSIZE 1024
diff --git a/polyp/pacat.c b/polyp/pacat.c
index 1d1cc3d5..55a0f6b9 100644
--- a/polyp/pacat.c
+++ b/polyp/pacat.c
@@ -31,10 +31,10 @@
#include <stdio.h>
#include <stdlib.h>
-#include "polyplib.h"
-#include "polyplib-error.h"
-#include "mainloop.h"
-#include "mainloop-signal.h"
+#include <polyp/polyplib.h>
+#include <polyp/polyplib-error.h>
+#include <polyp/mainloop.h>
+#include <polyp/mainloop-signal.h>
static enum { RECORD, PLAYBACK } mode = PLAYBACK;
diff --git a/polyp/pactl.c b/polyp/pactl.c
index 2b1ed2c1..61060c46 100644
--- a/polyp/pactl.c
+++ b/polyp/pactl.c
@@ -31,10 +31,10 @@
#include <stdio.h>
#include <stdlib.h>
-#include "polyplib.h"
-#include "polyplib-error.h"
-#include "mainloop.h"
-#include "mainloop-signal.h"
+#include <polyp/polyplib.h>
+#include <polyp/polyplib-error.h>
+#include <polyp/mainloop.h>
+#include <polyp/mainloop-signal.h>
static struct pa_context *context = NULL;
static struct pa_mainloop_api *mainloop_api = NULL;
diff --git a/polyp/parec-simple.c b/polyp/parec-simple.c
index c4196a14..e12b8e00 100644
--- a/polyp/parec-simple.c
+++ b/polyp/parec-simple.c
@@ -28,8 +28,8 @@
#include <string.h>
#include <errno.h>
-#include "polyplib-simple.h"
-#include "polyplib-error.h"
+#include <polyp/polyplib-simple.h>
+#include <polyp/polyplib-error.h>
#define BUFSIZE 1024