jbig2dec
Ralph Giles <[email protected]> Fri, 12 Jul 2002 18:10:04 -0700
| Newsgroups | gmane.comp.printing.ghostscript.jbig2dec.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/jbig2dec/jbig2dec
In directory usw-pr-cvs1:/tmp/cvs-serv8553
Modified Files:
configure.ac
Log Message:
remove 'can define uint32_t as' messages and fix a typo
Index: configure.ac
===================================================================
RCS file: /cvsroot/jbig2dec/jbig2dec/configure.ac,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- configure.ac 13 Jul 2002 01:04:32 -0000 1.6
+++ configure.ac 13 Jul 2002 01:10:00 -0000 1.7
@@ -38,31 +38,24 @@
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
if test $ac_cv_sizeof_char = 1; then
- AC_MSG_RESULT([can define int8_t as char])
int8_type="char"
else
stdint_types_discovered="no"
fi
if test $ac_cv_sizeof_short = 2; then
- AC_MSG_RESULT([can define int16_t as short])
int16_type="short"
elif test $ac_cv_sizeof_char = 2; then
- AC_MSG_RESULT([can define int16_t as char])
int16_type="char"
elif test $ac_cv_sizeof_int = 2; then
- AC_MSG_RESULT([can define int16_t as int])
int16_type="char"
else
stdint_types_discovered="no"
fi
if test $ac_cv_sizeof_int = 4; then
- AC_MSG_RESULT([can define int32_t as int])
int32_type="int"
elif test $ac_cv_sizeof_long = 4; then
- AC_MSG_RESULT([can define int32_t as long])
int32_type="long"
elif test $ac_cv_sizeof_short = 4; then
- AC_MSG_RESULT([can define int32_t as short])
int32_type="short"
else
stdint_types_discovered="no"
@@ -78,7 +71,7 @@
], AC_MSG_RESULT([no])
)
done
- if test "x$stding_types_in" != "xno_replacement_found"; then
+ if test "x$stdint_types_in" != "xno_replacement_found"; then
AC_MSG_RESULT([Adding $stdint_types_in to config header for stdint types])
AC_DEFINE([JBIG2_REPLACE_STDINT_H],,
[set by configure if an alternate header with the stdint.h types is found])