summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-05-17 17:30:49 +0000
committerPierre Ossman <ossman@cendio.se>2006-05-17 17:30:49 +0000
commit7ca25e58e99abb3d640b6012d7cbfc9bc9087849 (patch)
treec607f3c8a36567c550348f7762a976e2397ece95
parentd9cc2cfcb97c1b0449bcbfb6ab0301a58d77bd55 (diff)
Move utf8 to the public part (libpolyp).
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@909 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/Makefile.am9
-rw-r--r--src/polyp/utf8.c (renamed from src/polypcore/utf8.c)3
-rw-r--r--src/polyp/utf8.h (renamed from src/polypcore/utf8.h)0
-rw-r--r--src/polypcore/protocol-esound.c2
-rw-r--r--src/polypcore/protocol-native.c2
-rw-r--r--src/polypcore/sink-input.c2
-rw-r--r--src/polypcore/sink.c2
-rw-r--r--src/polypcore/source-output.c2
-rw-r--r--src/polypcore/source.c2
-rw-r--r--src/tests/utf8-test.c2
10 files changed, 13 insertions, 13 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index afbdedee..72db5f80 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -313,6 +313,7 @@ polypinclude_HEADERS = \
polyp/subscribe.h \
polyp/version.h \
polyp/sample.h \
+ polyp/utf8.h \
polyp/volume.h \
polyp/xmalloc.h
@@ -358,6 +359,7 @@ libpolyp_la_SOURCES = \
polyp/subscribe.c polyp/subscribe.h \
polyp/sample.c polyp/sample.h \
polyp/volume.c polyp/volume.h \
+ polyp/utf8.c polyp/utf8.h \
polyp/mainloop.c polyp/mainloop.h \
polyp/mainloop-signal.c polyp/mainloop-signal.h \
polyp/thread-mainloop.c polyp/thread-mainloop.h \
@@ -485,8 +487,7 @@ polypcoreinclude_HEADERS = \
polypcore/source-output.h \
polypcore/strbuf.h \
polypcore/tokenizer.h \
- polypcore/util.h \
- polypcore/utf8.h
+ polypcore/util.h
lib_LTLIBRARIES += libpolypcore.la
@@ -498,6 +499,7 @@ libpolypcore_la_SOURCES = \
polyp/mainloop-signal.c polyp/mainloop-signal.h \
polyp/sample.c polyp/sample.h \
polyp/volume.c polyp/volume.h \
+ polyp/utf8.c polyp/utf8.h \
polyp/xmalloc.c polyp/xmalloc.h
# Pure core stuff (some are shared in libpolyp though).
@@ -546,8 +548,7 @@ libpolypcore_la_SOURCES += \
polypcore/strbuf.c polypcore/strbuf.h \
polypcore/tokenizer.c polypcore/tokenizer.h \
polypcore/util.c polypcore/util.h \
- polypcore/winsock.h \
- polypcore/utf8.c polypcore/utf8.h
+ polypcore/winsock.h
if OS_IS_WIN32
libpolypcore_la_SOURCES += \
diff --git a/src/polypcore/utf8.c b/src/polyp/utf8.c
index 01fbfccd..bb8621e2 100644
--- a/src/polypcore/utf8.c
+++ b/src/polyp/utf8.c
@@ -33,9 +33,8 @@
#include <inttypes.h>
#include <string.h>
-#include <polyp/xmalloc.h>
-
#include "utf8.h"
+#include "xmalloc.h"
#define FILTER_CHAR '_'
diff --git a/src/polypcore/utf8.h b/src/polyp/utf8.h
index 6d1e4a7d..6d1e4a7d 100644
--- a/src/polypcore/utf8.h
+++ b/src/polyp/utf8.h
diff --git a/src/polypcore/protocol-esound.c b/src/polypcore/protocol-esound.c
index 86a8c9e3..8f53694e 100644
--- a/src/polypcore/protocol-esound.c
+++ b/src/polypcore/protocol-esound.c
@@ -31,6 +31,7 @@
#include <limits.h>
#include <polyp/sample.h>
+#include <polyp/utf8.h>
#include <polyp/xmalloc.h>
#include <polypcore/esound.h>
@@ -46,7 +47,6 @@
#include <polypcore/namereg.h>
#include <polypcore/log.h>
#include <polypcore/util.h>
-#include <polypcore/utf8.h>
#include "endianmacros.h"
diff --git a/src/polypcore/protocol-native.c b/src/polypcore/protocol-native.c
index b0ad5955..338db002 100644
--- a/src/polypcore/protocol-native.c
+++ b/src/polypcore/protocol-native.c
@@ -30,6 +30,7 @@
#include <unistd.h>
#include <polyp/version.h>
+#include <polyp/utf8.h>
#include <polyp/xmalloc.h>
#include <polypcore/native-common.h>
@@ -53,7 +54,6 @@
#include <polypcore/props.h>
#include <polypcore/sample-util.h>
#include <polypcore/llist.h>
-#include <polypcore/utf8.h>
#include "protocol-native.h"
diff --git a/src/polypcore/sink-input.c b/src/polypcore/sink-input.c
index 5c0caa21..bd2a1dcd 100644
--- a/src/polypcore/sink-input.c
+++ b/src/polypcore/sink-input.c
@@ -28,12 +28,12 @@
#include <stdlib.h>
#include <string.h>
+#include <polyp/utf8.h>
#include <polyp/xmalloc.h>
#include <polypcore/sample-util.h>
#include <polypcore/core-subscribe.h>
#include <polypcore/log.h>
-#include <polypcore/utf8.h>
#include "sink-input.h"
diff --git a/src/polypcore/sink.c b/src/polypcore/sink.c
index a873c00a..6931d396 100644
--- a/src/polypcore/sink.c
+++ b/src/polypcore/sink.c
@@ -29,6 +29,7 @@
#include <stdio.h>
#include <polyp/introspect.h>
+#include <polyp/utf8.h>
#include <polyp/xmalloc.h>
#include <polypcore/sink-input.h>
@@ -37,7 +38,6 @@
#include <polypcore/sample-util.h>
#include <polypcore/core-subscribe.h>
#include <polypcore/log.h>
-#include <polypcore/utf8.h>
#include "sink.h"
diff --git a/src/polypcore/source-output.c b/src/polypcore/source-output.c
index c8db870b..8ac3a33d 100644
--- a/src/polypcore/source-output.c
+++ b/src/polypcore/source-output.c
@@ -28,11 +28,11 @@
#include <stdlib.h>
#include <string.h>
+#include <polyp/utf8.h>
#include <polyp/xmalloc.h>
#include <polypcore/core-subscribe.h>
#include <polypcore/log.h>
-#include <polypcore/utf8.h>
#include "source-output.h"
diff --git a/src/polypcore/source.c b/src/polypcore/source.c
index 4d96622b..c53bf079 100644
--- a/src/polypcore/source.c
+++ b/src/polypcore/source.c
@@ -28,6 +28,7 @@
#include <stdlib.h>
#include <string.h>
+#include <polyp/utf8.h>
#include <polyp/xmalloc.h>
#include <polypcore/source-output.h>
@@ -35,7 +36,6 @@
#include <polypcore/core-subscribe.h>
#include <polypcore/log.h>
#include <polypcore/sample-util.h>
-#include <polypcore/utf8.h>
#include "source.h"
diff --git a/src/tests/utf8-test.c b/src/tests/utf8-test.c
index 57f445c7..2c21613e 100644
--- a/src/tests/utf8-test.c
+++ b/src/tests/utf8-test.c
@@ -3,8 +3,8 @@
#include <stdio.h>
#include <assert.h>
+#include <polyp/utf8.h>
#include <polyp/xmalloc.h>
-#include <polypcore/utf8.h>
int main(int argc, char *argv[]) {
char *c;