diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-10 00:21:51 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-10 00:21:51 +0000 |
commit | c7fad16a08152b074e4631aede388588668b9bc5 (patch) | |
tree | 10c357e11740904204cbf0e5115d50945a948cab /configure.ac | |
parent | 74e4835513b227b33e8ed6f66f312411cef7b466 (diff) | |
download | xine-lib-c7fad16a08152b074e4631aede388588668b9bc5.tar.gz xine-lib-c7fad16a08152b074e4631aede388588668b9bc5.tar.bz2 |
Don't trust internal gettext macros, they are unreliable and change between versions. Check for nl_langinfo() explicitely and use that instead.
CVS patchset: 8023
CVS date: 2006/06/10 00:21:51
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ac0127edb..b75828fe3 100644 --- a/configure.ac +++ b/configure.ac @@ -171,6 +171,8 @@ fi AC_SUBST(INTLDIR) +AC_CHECK_FUNCS([nl_langinfo]) + dnl --------------------------------------------- dnl Checks for typedefs, structures, and compiler characteristics. dnl --------------------------------------------- |