* configure.ac: Fix typo when substituting value for unsigned 8 bit type.
* libtiff/tiffconf.vc.h: Add porting type defintions for WIN32.
This commit is contained in:
parent
84edfb3582
commit
785843bd90
@ -1,3 +1,8 @@
|
||||
2007-06-26 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
|
||||
* configure.ac: Fix typo when substituting value for unsigned 8 bit type.
|
||||
* libtiff/tiffconf.vc.h: Add porting type defintions for WIN32.
|
||||
|
||||
2007-06-25 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
|
||||
* port/strtoull.c: New porting function in case strtoull() is not
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# $Id: Makefile.in,v 1.2 2007-06-25 15:38:23 bfriesen Exp $
|
||||
# $Id: Makefile.in,v 1.3 2007-06-26 15:39:54 bfriesen Exp $
|
||||
#
|
||||
# Tag Image File Format (TIFF) Software
|
||||
#
|
||||
|
4
configure
vendored
4
configure
vendored
@ -4418,7 +4418,7 @@ test -z "$OBJDUMP" && OBJDUMP=objdump
|
||||
|
||||
|
||||
macro_version='2.1a'
|
||||
macro_revision='1.2455'
|
||||
macro_revision='1.2410'
|
||||
|
||||
|
||||
|
||||
@ -16314,7 +16314,7 @@ UINT8_T='unsigned char'
|
||||
echo "${ECHO_T}$UINT8_T" >&6; }
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define TIFF_UINT8_T $INT8_T
|
||||
#define TIFF_UINT8_T $UINT8_T
|
||||
_ACEOF
|
||||
|
||||
|
||||
|
@ -146,7 +146,7 @@ AC_DEFINE_UNQUOTED(TIFF_INT8_T,$INT8_T,[Signed 8-bit type])
|
||||
AC_MSG_CHECKING(for unsigned 8-bit type)
|
||||
UINT8_T='unsigned char'
|
||||
AC_MSG_RESULT($UINT8_T)
|
||||
AC_DEFINE_UNQUOTED(TIFF_UINT8_T,$INT8_T,[Unsigned 8-bit type])
|
||||
AC_DEFINE_UNQUOTED(TIFF_UINT8_T,$UINT8_T,[Unsigned 8-bit type])
|
||||
|
||||
AC_MSG_CHECKING(for signed 16-bit type)
|
||||
INT16_T='signed short'
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# $Id: Makefile.in,v 1.37 2007-06-25 15:38:24 bfriesen Exp $
|
||||
# $Id: Makefile.in,v 1.38 2007-06-26 15:39:54 bfriesen Exp $
|
||||
#
|
||||
# Tag Image File Format (TIFF) Software
|
||||
#
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# $Id: Makefile.in,v 1.50 2007-06-25 15:38:25 bfriesen Exp $
|
||||
# $Id: Makefile.in,v 1.51 2007-06-26 15:39:54 bfriesen Exp $
|
||||
#
|
||||
# Tag Image File Format (TIFF) Software
|
||||
#
|
||||
|
@ -22,6 +22,30 @@
|
||||
/* The size of a `long', as computed by sizeof. */
|
||||
#define SIZEOF_LONG 4
|
||||
|
||||
/* Signed 8-bit type */
|
||||
#define TIFF_INT8_T signed char
|
||||
|
||||
/* Unsigned 8-bit type */
|
||||
#define TIFF_UINT8_T unsigned char
|
||||
|
||||
/* Signed 16-bit type */
|
||||
#define TIFF_INT16_T signed short
|
||||
|
||||
/* Unsigned 16-bit type */
|
||||
#define TIFF_UINT16_T unsigned short
|
||||
|
||||
/* Signed 32-bit type */
|
||||
#define TIFF_INT32_T signed int
|
||||
|
||||
/* Unsigned 32-bit type */
|
||||
#define TIFF_UINT32_T unsigned int
|
||||
|
||||
/* Signed 64-bit type */
|
||||
#define TIFF_INT64_T signed __int64
|
||||
|
||||
/* Unsigned 64-bit type */
|
||||
#define TIFF_UINT64_T unsigned __int64
|
||||
|
||||
/* Compatibility stuff. */
|
||||
|
||||
/* Define as 0 or 1 according to the floating point format suported by the
|
||||
|
Loading…
Reference in New Issue
Block a user