summaryrefslogtreecommitdiffstats
path: root/m4/dpkg-unicode.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 18:35:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 18:35:28 +0000
commitea314d2f45c40a006c0104157013ab4b857f665f (patch)
tree3ef2971cb3675c318b8d9effd987854ad3f6d3e8 /m4/dpkg-unicode.m4
parentInitial commit. (diff)
downloaddpkg-ea314d2f45c40a006c0104157013ab4b857f665f.tar.xz
dpkg-ea314d2f45c40a006c0104157013ab4b857f665f.zip
Adding upstream version 1.22.4.upstream/1.22.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/dpkg-unicode.m4')
-rw-r--r--m4/dpkg-unicode.m423
1 files changed, 23 insertions, 0 deletions
diff --git a/m4/dpkg-unicode.m4 b/m4/dpkg-unicode.m4
new file mode 100644
index 0000000..dbe1994
--- /dev/null
+++ b/m4/dpkg-unicode.m4
@@ -0,0 +1,23 @@
+# serial 1
+# Copyright © 1995-2003, 2005-2006 Free Software Foundation, Inc.
+# Copyright © 2009 Yuri Vasilevski <yvasilev@gentoo.org>
+# Copyright © 2010 Guillem Jover <guillem@debian.org>
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# DPKG_UNICODE()
+# ------------
+# Add configure option to disable Unicode support.
+AC_DEFUN([DPKG_UNICODE], [
+ AC_MSG_CHECKING([whether Unicode is requested])
+ dnl Default: Unicode is enabled.
+ AC_ARG_ENABLE([unicode],
+ [AS_HELP_STRING([--disable-unicode],
+ [do not use Unicode (wide chars) support])],
+ [USE_UNICODE=$enableval],
+ [USE_UNICODE=yes])
+ AC_MSG_RESULT([$USE_UNICODE])
+ AC_SUBST([USE_UNICODE])
+]) # DPKG_UNICODE