summaryrefslogtreecommitdiffstats
path: root/src/conf_macros.m4
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2011-12-02 11:59:20 -0500
committerStephen Gallagher <sgallagh@redhat.com>2011-12-05 11:51:14 -0500
commit7cb5383dc99f74d373184ebcc568d32a5cbc0517 (patch)
treee9e71480da9a2b6bc3bc405ab947d32f8918b882 /src/conf_macros.m4
parente78c9b966b9717dbfda9588ad4e4a0f67a524f36 (diff)
downloadsssd_unused-7cb5383dc99f74d373184ebcc568d32a5cbc0517.tar.gz
sssd_unused-7cb5383dc99f74d373184ebcc568d32a5cbc0517.tar.xz
sssd_unused-7cb5383dc99f74d373184ebcc568d32a5cbc0517.zip
Allow using Glib for UTF8 support
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r--src/conf_macros.m420
1 files changed, 20 insertions, 0 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4
index 2a109b5f..81d945ed 100644
--- a/src/conf_macros.m4
+++ b/src/conf_macros.m4
@@ -280,3 +280,23 @@ AC_DEFUN([WITH_NOLOGIN_SHELL],
fi
AC_DEFINE_UNQUOTED(NOLOGIN_SHELL, "$nologin_shell", [The shell used to deny access to users])
])
+
+AC_DEFUN([WITH_UNICODE_LIB],
+ [ AC_ARG_WITH([unicode-lib],
+ [AC_HELP_STRING([--with-unicode-lib=<library>],
+ [Which library to use for unicode processing (libunistring, glib2) [libunistring]]
+ )
+ ]
+ )
+ unicode_lib="libunistring"
+ if test x"$with_unicode_lib" != x; then
+ unicode_lib=$with_unicode_lib
+ fi
+
+ if test x"$unicode_lib" != x"libunistring" -a x"$unicode_lib" != x"glib2"; then
+ AC_MSG_ERROR([Unsupported unicode library])
+ fi
+
+ AM_CONDITIONAL([WITH_LIBUNISTRING], test x"$unicode_lib" = x"libunistring")
+ AM_CONDITIONAL([WITH_GLIB], test x"$unicode_lib" = x"glib2")
+ ])