Search
j0ke.net Open Build Service
>
Projects
>
home:jg
:
projects
:
ha
>
daemontools
> daemontools-0.76.errno.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File daemontools-0.76.errno.patch of Package daemontools
This is Matt Wierdl's errno patch fixing an incompatibility with errno in glibc 2.3.1 (and later?). From: http://www.qmail.org/moni.csi.hu/pub/glibc-2.3.1/ diff -ur daemontools-0.76.old/src/error.h daemontools-0.76/src/error.h --- daemontools-0.76.old/src/error.h 2001-07-12 11:49:49.000000000 -0500 +++ daemontools-0.76/src/error.h 2003-01-09 21:52:01.000000000 -0600 @@ -3,7 +3,7 @@ #ifndef ERROR_H #define ERROR_H -extern int errno; +#include <errno.h> extern int error_intr; extern int error_nomem;