mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 15:32:35 +00:00
Fixed compilation failure on 32bit FreeBSD and other due to int64_t being long long
This commit is contained in:
parent
0a115feadc
commit
4124e733c6
3 changed files with 13 additions and 4 deletions
5
CHANGES
5
CHANGES
|
@ -1,4 +1,9 @@
|
|||
|
||||
Corrections:
|
||||
Socat 1.7.4.0 failed to compile especially on 32 bit systems.
|
||||
Thanks to Wang Mingyu and others for sending a patch or reporting this
|
||||
issue.
|
||||
|
||||
####################### V 1.7.4.0:
|
||||
|
||||
Security:
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
"1.7.4.0"
|
||||
"1.7.4.0+"
|
||||
|
|
10
compat.h
10
compat.h
|
@ -134,6 +134,8 @@ typedef int sig_atomic_t;
|
|||
# define F_uint64_t "%u"
|
||||
# elif HAVE_BASIC_UINT64_T==6
|
||||
# define F_uint64_t "%lu"
|
||||
# elif HAVE_BASIC_UINT64_T==8
|
||||
# define F_uint64_t "%llu"
|
||||
# else
|
||||
# error "HAVE_BASIC_UINT64_T is out of range:" HAVE_BASIC_UINT64_T
|
||||
# endif
|
||||
|
@ -147,7 +149,7 @@ typedef int sig_atomic_t;
|
|||
# elif HAVE_BASIC_INT16_T==3
|
||||
# define F_int16_t "%d"
|
||||
# elif HAVE_BASIC_INT16_T==5
|
||||
# define F_int16_t "%l"
|
||||
# define F_int16_t "%ld"
|
||||
# else
|
||||
# error "HAVE_BASIC_INT16_T is out of range:" HAVE_BASIC_INT16_T
|
||||
# endif
|
||||
|
@ -161,7 +163,7 @@ typedef int sig_atomic_t;
|
|||
# elif HAVE_BASIC_INT32_T==3
|
||||
# define F_int32_t "%d"
|
||||
# elif HAVE_BASIC_INT32_T==5
|
||||
# define F_int32_t "%l"
|
||||
# define F_int32_t "%ld"
|
||||
# else
|
||||
# error "HAVE_BASIC_INT32_T is out of range:" HAVE_BASIC_INT32_T
|
||||
# endif
|
||||
|
@ -175,7 +177,9 @@ typedef int sig_atomic_t;
|
|||
# elif HAVE_BASIC_INT64_T==3
|
||||
# define F_int64_t "%d"
|
||||
# elif HAVE_BASIC_INT64_T==5
|
||||
# define F_int64_t "%l"
|
||||
# define F_int64_t "%ld"
|
||||
# elif HAVE_BASIC_INT64_T==7
|
||||
# define F_int64_t "%lld"
|
||||
# else
|
||||
# error "HAVE_BASIC_INT64_T is out of range:" HAVE_BASIC_INT64_T
|
||||
# endif
|
||||
|
|
Loading…
Reference in a new issue