diff options
author | Roman I Khimov <khimov@altell.ru> | 2009-08-17 14:10:06 +0400 |
---|---|---|
committer | Roman I Khimov <khimov@altell.ru> | 2009-08-17 17:32:14 +0400 |
commit | 2dd3dd73046adb7b9fbbf6ed207f4ceb45f095a2 (patch) | |
tree | ffff903b7589a41a00037912ffddaf729a3712de /site | |
parent | b09a45be78fb144bd632b89703efd9d163e86900 (diff) |
site/ix86-common: fix grave bug in ac_cv_sizeof_unsigned_char
ac_cv_sizeof_unsigned_char definition accidentally redefines
ac_cv_sizeof_unsigned_int to 1. Luckily, not many packages are using that
but for example it completely breakes gnutls.
Fix that.
Acked-by: Holger Freyther <zecke@selfish.org>
Diffstat (limited to 'site')
-rw-r--r-- | site/ix86-common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/ix86-common b/site/ix86-common index a5c4b60805..281ab91f8e 100644 --- a/site/ix86-common +++ b/site/ix86-common @@ -1,5 +1,5 @@ ac_cv_sizeof_char=${ac_cv_sizeof_char=1} -ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_int=1} +ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1} ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4} ac_cv_sizeof_unsigned_char_p=${ac_cv_sizeof_unsigned_char_p=4} ac_cv_sizeof_int=${ac_cv_sizeof_int=4} |