[polypaudio-commits] r909 - in /trunk/src: Makefile.am polyp/utf8.c polyp/utf8.h polypcore/protocol-esound.c polypcore/protocol-native.c polypcore/sink-input.c polypcore/sink.c polypcore/source-output.c polypcore/source.c polypcore/utf8.c polypcore/utf8.h tests/utf8-test.c

svnmailer-noreply at 0pointer.de svnmailer-noreply at 0pointer.de
Wed May 17 10:30:52 PDT 2006


Author: ossman
Date: Wed May 17 19:30:49 2006
New Revision: 909

URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=909&root=polypaudio&view=rev
Log:
Move utf8 to the public part (libpolyp).

Added:
    trunk/src/polyp/utf8.c
      - copied unchanged from r893, trunk/src/polypcore/utf8.c
    trunk/src/polyp/utf8.h
      - copied unchanged from r893, trunk/src/polypcore/utf8.h
Removed:
    trunk/src/polypcore/utf8.c
    trunk/src/polypcore/utf8.h
Modified:
    trunk/src/Makefile.am
    trunk/src/polypcore/protocol-esound.c
    trunk/src/polypcore/protocol-native.c
    trunk/src/polypcore/sink-input.c
    trunk/src/polypcore/sink.c
    trunk/src/polypcore/source-output.c
    trunk/src/polypcore/source.c
    trunk/src/tests/utf8-test.c

Modified: trunk/src/Makefile.am
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/Makefile.am?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/Makefile.am (original)
+++ trunk/src/Makefile.am Wed May 17 19:30:49 2006
@@ -313,6 +313,7 @@
 		polyp/subscribe.h \
 		polyp/version.h \
 		polyp/sample.h \
+		polyp/utf8.h \
 		polyp/volume.h \
 		polyp/xmalloc.h
 
@@ -358,6 +359,7 @@
 		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 @@
 		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 @@
 		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 @@
 		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 += \

Modified: trunk/src/polypcore/protocol-esound.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/polypcore/protocol-esound.c?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/polypcore/protocol-esound.c (original)
+++ trunk/src/polypcore/protocol-esound.c Wed May 17 19:30:49 2006
@@ -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"
 

Modified: trunk/src/polypcore/protocol-native.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/polypcore/protocol-native.c?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/polypcore/protocol-native.c (original)
+++ trunk/src/polypcore/protocol-native.c Wed May 17 19:30:49 2006
@@ -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"
 

Modified: trunk/src/polypcore/sink-input.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/polypcore/sink-input.c?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/polypcore/sink-input.c (original)
+++ trunk/src/polypcore/sink-input.c Wed May 17 19:30:49 2006
@@ -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"
 

Modified: trunk/src/polypcore/sink.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/polypcore/sink.c?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/polypcore/sink.c (original)
+++ trunk/src/polypcore/sink.c Wed May 17 19:30:49 2006
@@ -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"
 

Modified: trunk/src/polypcore/source-output.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/polypcore/source-output.c?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/polypcore/source-output.c (original)
+++ trunk/src/polypcore/source-output.c Wed May 17 19:30:49 2006
@@ -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"
 

Modified: trunk/src/polypcore/source.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/polypcore/source.c?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/polypcore/source.c (original)
+++ trunk/src/polypcore/source.c Wed May 17 19:30:49 2006
@@ -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"
 

Modified: trunk/src/tests/utf8-test.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/tests/utf8-test.c?rev=909&root=polypaudio&r1=908&r2=909&view=diff
==============================================================================
--- trunk/src/tests/utf8-test.c (original)
+++ trunk/src/tests/utf8-test.c Wed May 17 19:30:49 2006
@@ -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;




More information about the pulseaudio-commits mailing list