From: Simon McVittie Date: Wed, 19 Jan 2011 14:09:33 +0000 (+0000) Subject: fix check for 32-bit integers if short is 32 bits long X-Git-Tag: dbus-1.4.4~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d855baed00474dec52eca7e4cb785596819ca470;p=platform%2Fupstream%2Fdbus.git fix check for 32-bit integers if short is 32 bits long In practice, this won't happen for years, but we might as well be correct. Reviewed-by: Will Thompson --- diff --git a/configure.in b/configure.in index 9debe3b..9aeb159 100644 --- a/configure.in +++ b/configure.in @@ -302,7 +302,7 @@ AC_MSG_CHECKING([32-bit integer type]) case 4 in $ac_cv_sizeof_short) - dbusint32=int + dbusint32=short ;; $ac_cv_sizeof_int) dbusint32=int