summaryrefslogtreecommitdiff
path: root/src/input/mms.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-10 00:21:51 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-06-10 00:21:51 +0000
commitc7fad16a08152b074e4631aede388588668b9bc5 (patch)
tree10c357e11740904204cbf0e5115d50945a948cab /src/input/mms.c
parent74e4835513b227b33e8ed6f66f312411cef7b466 (diff)
downloadxine-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 'src/input/mms.c')
-rw-r--r--src/input/mms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/mms.c b/src/input/mms.c
index aee2d2f5c..48fcbdb30 100644
--- a/src/input/mms.c
+++ b/src/input/mms.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: mms.c,v 1.57 2006/04/19 17:30:12 dsalt Exp $
+ * $Id: mms.c,v 1.58 2006/06/10 00:21:51 dgp85 Exp $
*
* MMS over TCP protocol
* based on work from major mms
@@ -45,7 +45,7 @@
#include <stdlib.h>
#include <time.h>
-#if defined(HAVE_ICONV) && defined(HAVE_LANGINFO_CODESET)
+#if defined(HAVE_ICONV) && defined(HAVE_NL_LANGINFO)
#define USE_ICONV
#include <iconv.h>
#include <locale.h>