wok-next annotate portmap/stuff/portmap-5beta-glibc_errno_fix-1.patch @ rev 17752
mp3info: link with libtinfo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Mar 09 08:48:25 2015 +0100 (2015-03-09) |
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 |