summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@gmail.com>2020-02-12 21:39:42 +0100
committerBenjamin Franzke <benjaminfranzke@gmail.com>2020-02-15 13:52:56 +0100
commit4cff57f4045578bf4211f8e38db08d8b157c82a7 (patch)
tree2465441ae63b60bf35498ecdde3c1ad4cf80ee94 /src
parent4aa2b7230439dd1c5c357b685365e915f3171aa2 (diff)
downloadpa-sink-ctl-4cff57f4045578bf4211f8e38db08d8b157c82a7.tar.gz
pa-sink-ctl-4cff57f4045578bf4211f8e38db08d8b157c82a7.tar.bz2
pa-sink-ctl-4cff57f4045578bf4211f8e38db08d8b157c82a7.zip
Support UTF-8 characters
Switch to ncursesw (using pkg-config) for UTF-8 support. Fallback to a X/Open Curses specification compatible curses implementation if ncursesw is not available. The fallback is intended for non-ncurses systems only. UTF-8 multibyte does also work on the curses implementation of NetBSD. We may need a proper configure check to assert that the curses library is multibyte capable. Note that X/Open Curses doesn't specify wide character (utf-8) compatiblity.
Diffstat (limited to 'src')
-rw-r--r--src/interface.c2
-rw-r--r--src/interface.h2
-rw-r--r--src/pa-sink-ctl.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/src/interface.c b/src/interface.c
index c7d6d5e..3086ce1 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -24,7 +24,7 @@
#include <glib.h>
#include <pulse/pulseaudio.h>
-#include <ncurses.h>
+#include <curses.h>
#include "interface.h"
#include "ctl.h"
diff --git a/src/interface.h b/src/interface.h
index ef7cdc2..61ce990 100644
--- a/src/interface.h
+++ b/src/interface.h
@@ -22,7 +22,7 @@
#include <glib.h>
#include <pulse/pulseaudio.h>
-#include <ncurses.h>
+#include <curses.h>
#define SELECTED_MAIN_CTL -1
#define H_MSG_BOX 3
diff --git a/src/pa-sink-ctl.c b/src/pa-sink-ctl.c
index 4e17337..5c0f7fc 100644
--- a/src/pa-sink-ctl.c
+++ b/src/pa-sink-ctl.c
@@ -21,6 +21,7 @@
#include <pulse/pulseaudio.h>
#include <pulse/glib-mainloop.h>
#include <string.h>
+#include <locale.h>
#include "ctl.h"
#include "interface.h"
@@ -570,6 +571,7 @@ main(int argc, char** argv)
pa_mainloop_api *mainloop_api = NULL;
pa_glib_mainloop *m = NULL;
+ setlocale(LC_ALL, "");
memset(&ctx, 0, sizeof ctx);
ctx.sink_list = NULL;