diff options
author | Max Kellermann <max@duempel.org> | 2009-07-19 15:11:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-19 15:11:36 +0200 |
commit | 1745e68795b84aa84a2f148985e03d6fce6bddba (patch) | |
tree | 721dc4ad410b60b376c33cb740b53d8c8bc2713a /Makefile.am | |
parent | 809c96b53f265fd59e9f660bac1990bf19089ba2 (diff) | |
download | mpd-1745e68795b84aa84a2f148985e03d6fce6bddba.tar.gz mpd-1745e68795b84aa84a2f148985e03d6fce6bddba.tar.xz mpd-1745e68795b84aa84a2f148985e03d6fce6bddba.zip |
tokenizer: new library replacing buffer2array()
The new code is more robust and more flexible. It provides detailed
error information in GError objects.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5c53ca5c1..fa14c6a1d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -153,6 +153,7 @@ mpd_headers = \ src/tag_id3.h \ src/tag_print.h \ src/tag_save.h \ + src/tokenizer.h \ src/strset.h \ src/uri.h \ src/utils.h \ @@ -249,6 +250,7 @@ src_mpd_SOURCES = \ src/tag_pool.c \ src/tag_print.c \ src/tag_save.c \ + src/tokenizer.c \ src/strset.c \ src/uri.c \ src/utils.c \ |