diff options
author | Max Kellermann <max@duempel.org> | 2008-10-02 19:00:35 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-02 19:00:35 +0200 |
commit | b693269fd9740a3074b84da5645f6bd9daa6486e (patch) | |
tree | 93c83052ce5dc35155542ebbed4b2286f2c2e69a /src/Makefile.am | |
parent | a3f209be26e588397f7b96de73fb86625c6d2bb8 (diff) | |
download | mpd-b693269fd9740a3074b84da5645f6bd9daa6486e.tar.gz mpd-b693269fd9740a3074b84da5645f6bd9daa6486e.tar.xz mpd-b693269fd9740a3074b84da5645f6bd9daa6486e.zip |
moved code to charset.c
Move everything which deals with UTF-8 strings and character set
conversion to charset.c, header charset.h.
Diffstat (limited to '')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 59af3b51e..68af70ddd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -27,6 +27,7 @@ ncmpc_headers = \ list_window.h\ colors.h\ support.h\ + charset.h \ wreadln.h\ strfsong.h\ utils.h\ @@ -66,6 +67,7 @@ ncmpc_SOURCES = \ list_window.c\ colors.c\ support.c\ + charset.c \ wreadln.c\ strfsong.c\ utils.c\ |