tagged the head branch
Vance Lankhaar
vlankhaar at linux.ca
Wed Jul 16 15:30:43 GMT 2003
On Wed, 2003-07-16 at 01:20, Volker Lendecke wrote:
> On Tue, Jul 15, 2003 at 12:56:49PM -0500, Gerald (Jerry) Carter wrote:
> > Would you mind doing the patch?
>
> Attached is an attempt to blacklist glibc <= 2.3. I have tested this
> under Linux, I don't have any other system currently available.
>
> As this is my first attempt to touch configure.in, can somebody else
> test this to at least run?
>
> Thanks,
>
> Volker
if (libc_major < 2)
exit(1);
if (libc_minor <= 3)
exit(1);
What happens with version, say, 3.3.0 ?
what about: if (libc_major == 2 && libc_minor <= 3) instead of if
(libc_minor <= 3)
Vance Lankhaar
More information about the samba-technical
mailing list