wok-4.x annotate portmap/stuff/portmap-5beta-glibc_errno_fix-1.patch @ rev 4344
mitter: translate desktop file to french
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu Oct 01 22:03:57 2009 +0200 (2009-10-01) |
parents | |
children |
rev | line source |
---|---|
erjo@171 | 1 Submitted By: Tushar Teredesai <tushar@linuxfromscratch.org> |
erjo@171 | 2 Date: 2003-10-04 |
erjo@171 | 3 Initial Package Version: 5beta |
erjo@171 | 4 Origin: None |
erjo@171 | 5 Description: Fix compilation with recent glibc versions. |
erjo@171 | 6 --- portmap_5beta/portmap.c 2003-03-10 12:32:26.000000000 -0600 |
erjo@171 | 7 +++ portmap_5beta/portmap.c.new 2003-03-10 12:38:01.000000000 -0600 |
erjo@171 | 8 @@ -129,7 +129,8 @@ |
erjo@171 | 9 static void callit(); |
erjo@171 | 10 struct pmaplist *pmaplist; |
erjo@171 | 11 int debugging = 0; |
erjo@171 | 12 -extern int errno; |
erjo@171 | 13 +#include <errno.h> |
erjo@171 | 14 +/* extern int errno; */ |
erjo@171 | 15 |
erjo@171 | 16 #include "pmap_check.h" |
erjo@171 | 17 |