Displaying 3 results from an estimated 3 matches for "_ssize_t".
Did you mean:
ssize_t
2003 Oct 03
1
latest beta + MinGW 3.1.0-1 = minor fix needed
...k.h:23: conflicting types for `ssize_t'
n:/MinGW/include/sys/types.h:119: previous declaration of `ssize_t'
make[3]: *** [internet.o] Error 1
(This is in src/modules/internet)
Obviously ssize_t was added to the system types in MinGW. The
corresponding files:
MinGW: sys/types.h:
#ifndef _SSIZE_T_
#define _SSIZE_T_
typedef long _ssize_t;
R: src/modules/internet/sock.h
#ifdef Win32
typedef int ssize_t;
#endif
There are two possible fixes for this:
1) make sock.h use long instead of int.
2) use something like:
#if defined Win32 && !defined _SSIZE_T_
I don't think either fix is...
2012 May 15
5
[PATCH 0/5] resubmitting pending patches
Hi,
I?ve gone through the mailing list archives and hereby want
to resubmit my pending patches. Most are independent of each
other, except the m68k patch which will only be complete if
sigsuspend is also fixed. (It can be applied before that,
though.)
http://www.zytor.com/pipermail/klibc/2012-January/003173.html
[PATCH] fix m68k support
Resubmitted here as 0005. While there was a question from
2012 Apr 20
2
klibc 2.0~rc3-1 ./. mksh 40.9.20120414-2
Hi,
after changing mksh to no longer use mkstemp, I decided to try
and build mksh-static with klcc on most platforms, in Debian.
Here are the results by Debian architecture:
alpha (4) fails
amd64 works
armel works
armhf (3) fails
i386 works
ia64 works
m68k (1) workaround
mips works
mipsel works
powerpc (2) fails
ppc64 works (!)
s390 works
s390x works
sparc works
Architectures not listed either