# HG changeset patch # User Bruno Haible # Date 1280480535 -7200 # Node ID d734585ea90f348283e10fa292dac428334f44a3 # Parent 5c1a984942e5f69d3399a160a52b7e212429523c mbrlen: Fix cross-compilation guess for AIX. diff -r 5c1a984942e5 -r d734585ea90f ChangeLog --- a/ChangeLog Fri Jul 30 10:56:07 2010 +0200 +++ b/ChangeLog Fri Jul 30 11:02:15 2010 +0200 @@ -1,3 +1,9 @@ +2010-07-30 Bruno Haible + + mbrlen: Fix cross-compilation guess for AIX. + * m4/mbrlen.m4 (gl_MBRLEN_INCOMPLETE_STATE): Fix cross-compilation + guess. Leftover from 2008-12-22. + 2010-07-30 Bruno Haible mbrtowc: Fix cross-compilation guess for AIX. diff -r 5c1a984942e5 -r d734585ea90f m4/mbrlen.m4 --- a/m4/mbrlen.m4 Fri Jul 30 10:56:07 2010 +0200 +++ b/m4/mbrlen.m4 Fri Jul 30 11:02:15 2010 +0200 @@ -1,5 +1,5 @@ -# mbrlen.m4 serial 2 -dnl Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# mbrlen.m4 serial 3 +dnl Copyright (C) 2008, 2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -45,10 +45,10 @@ dnl is present. changequote(,)dnl case "$host_os" in - # Guess no on AIX and OSF/1. - osf*) gl_cv_func_mbrlen_incomplete_state="guessing no" ;; - # Guess yes otherwise. - *) gl_cv_func_mbrlen_incomplete_state="guessing yes" ;; + # Guess no on AIX and OSF/1. + aix* | osf*) gl_cv_func_mbrlen_incomplete_state="guessing no" ;; + # Guess yes otherwise. + *) gl_cv_func_mbrlen_incomplete_state="guessing yes" ;; esac changequote([,])dnl if test $LOCALE_JA != none; then