diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 19:36:21 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 19:36:21 +0000 |
commit | 2ee7775ccfde81ab26358da5d06fa4a8130f6d92 (patch) | |
tree | 393a6873c4d7b9bd0d8906862aaf3f596e2fbd95 /WWW/Library/Implementation/HTUtils.h | |
parent | Adding upstream version 2.9.0rel.0. (diff) | |
download | lynx-2ee7775ccfde81ab26358da5d06fa4a8130f6d92.tar.xz lynx-2ee7775ccfde81ab26358da5d06fa4a8130f6d92.zip |
Adding upstream version 2.9.1.upstream/2.9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'WWW/Library/Implementation/HTUtils.h')
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index 3d66cab..5a14027 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.135 2023/11/05 23:09:43 tom Exp $ + * $LynxId: HTUtils.h,v 1.137 2024/03/17 23:04:27 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -140,7 +140,6 @@ char *alloca(); /* suppress inadvertent use of gettext in makeuctb when cross-compiling */ #ifdef DONT_USE_GETTEXT #undef HAVE_GETTEXT -#undef HAVE_LIBGETTEXT_H #undef HAVE_LIBINTL_H #endif @@ -618,7 +617,7 @@ extern int WWW_TraceMask; #ifndef PRI_off_t #define GUESS_PRI_off_t -#if (SIZEOF_OFF_T == SIZEOF_LONG) +#if defined(SIZEOF_OFF_T) && defined(SIZEOF_LONG) && (SIZEOF_OFF_T == SIZEOF_LONG) #define PRI_off_t "ld" #define SCN_off_t "ld" #define CAST_off_t(n) (long)(n) |