wok view portmap/stuff/portmap-5beta-glibc_errno_fix-1.patch @ rev 22420

these 3 packages seem not used in xfce4 v4.12, so reverting to last version in slitaz: 4.10.0: libxfcegui4 libxfcegui4-dev xfce4-mixer
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Dec 15 09:01:23 2019 +0000 (2019-12-15)
parents
children
line source
1 Submitted By: Tushar Teredesai <tushar@linuxfromscratch.org>
2 Date: 2003-10-04
3 Initial Package Version: 5beta
4 Origin: None
5 Description: Fix compilation with recent glibc versions.
6 --- portmap_5beta/portmap.c 2003-03-10 12:32:26.000000000 -0600
7 +++ portmap_5beta/portmap.c.new 2003-03-10 12:38:01.000000000 -0600
8 @@ -129,7 +129,8 @@
9 static void callit();
10 struct pmaplist *pmaplist;
11 int debugging = 0;
12 -extern int errno;
13 +#include <errno.h>
14 +/* extern int errno; */
16 #include "pmap_check.h"