bin_PROGRAMS += pabrowse
endif
-bin_SCRIPTS = daemon/esdcompat.sh
+bin_SCRIPTS = esdcompat.sh
pacat_SOURCES = utils/pacat.c
pacat_LDADD = $(AM_LDADD) libpolyp-@PA_MAJORMINOR@.la libpolyp-error-@PA_MAJORMINOR@.la libpolyp-mainloop-@PA_MAJORMINOR@.la
# OSS
-liboss_util_la_SOURCES = polypcore/oss-util.c polypcore/oss-util.h
+liboss_util_la_SOURCES = modules/oss-util.c modules/oss-util.h
liboss_util_la_LDFLAGS = -avoid-version
# ALSA
-libalsa_util_la_SOURCES = polypcore/alsa-util.c polypcore/alsa-util.h
+libalsa_util_la_SOURCES = modules/alsa-util.c modules/alsa-util.h
libalsa_util_la_LDFLAGS = -avoid-version
libalsa_util_la_LIBADD = $(AM_LIBADD) $(ASOUNDLIB_LIBS)
libalsa_util_la_CFLAGS = $(AM_CFLAGS) $(ASOUNDLIB_CFLAGS)
# HOWL
-libhowl_wrap_la_SOURCES = polypcore/howl-wrap.c polypcore/howl-wrap.h
+libhowl_wrap_la_SOURCES = modules/howl-wrap.c modules/howl-wrap.h
libhowl_wrap_la_LDFLAGS = -avoid-version
libhowl_wrap_la_LIBADD = $(AM_LIBADD) $(HOWL_LIBS)
libhowl_wrap_la_CFLAGS = $(AM_CFLAGS) $(HOWL_CFLAGS)
#include <sys/types.h>
#include <asoundlib.h>
-#include "alsa-util.h"
#include <polyp/sample.h>
-#include "xmalloc.h"
-#include "log.h"
+#include <polypcore/xmalloc.h>
+#include <polypcore/log.h>
+
+#include "alsa-util.h"
/* Set the hardware parameters of the given ALSA device. Returns the
* selected fragment settings in *period and *period_size */
#include <polypcore/modargs.h>
#include <polypcore/util.h>
#include <polypcore/sample-util.h>
-#include <polypcore/alsa-util.h>
#include <polypcore/xmalloc.h>
#include <polypcore/log.h>
#include "module-alsa-sink-symdef.h"
+#include "alsa-util.h"
PA_MODULE_AUTHOR("Lennart Poettering")
PA_MODULE_DESCRIPTION("ALSA Sink")
#include <polypcore/modargs.h>
#include <polypcore/util.h>
#include <polypcore/sample-util.h>
-#include <polypcore/alsa-util.h>
#include <polypcore/xmalloc.h>
#include <polypcore/log.h>
#include "module-alsa-source-symdef.h"
+#include "alsa-util.h"
PA_MODULE_AUTHOR("Lennart Poettering")
PA_MODULE_DESCRIPTION("ALSA Source")
#include <polypcore/sink.h>
#include <polypcore/source.h>
#include <polypcore/module.h>
-#include <polypcore/oss-util.h>
#include <polypcore/sample-util.h>
#include <polypcore/util.h>
#include <polypcore/modargs.h>
#include <polypcore/xmalloc.h>
#include <polypcore/log.h>
+#include "oss-util.h"
#include "module-oss-mmap-symdef.h"
PA_MODULE_AUTHOR("Lennart Poettering")
#include <polypcore/sink.h>
#include <polypcore/source.h>
#include <polypcore/module.h>
-#include <polypcore/oss-util.h>
#include <polypcore/sample-util.h>
#include <polypcore/util.h>
#include <polypcore/modargs.h>
#include <polypcore/log.h>
#include "module-oss-symdef.h"
+#include "oss-util.h"
PA_MODULE_AUTHOR("Lennart Poettering")
PA_MODULE_DESCRIPTION("OSS Sink/Source")
#include <sys/stat.h>
#include <fcntl.h>
+#include <polypcore/util.h>
+#include <polypcore/log.h>
+
#include "oss-util.h"
-#include "util.h"
-#include "log.h"
int pa_oss_open(const char *device, int *mode, int* pcaps) {
int fd = -1;