1 From 8cea0778f0fb838a7bd764be08f15e1494e5a0b2 Mon Sep 17 00:00:00 2001
2 From: Mike Frysinger <vapier@gentoo.org>
3 Date: Fri, 19 Nov 2010 23:50:27 -0500
4 Subject: [PATCH 4/4] NO_PERROR: control overriding of perror() symbol
6 Doing static builds of portmap might fail when the C library's perror()
7 function is pulled in and collides with portmap's definition. So add a
8 flag to control the local override.
10 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14 2 files changed, 6 insertions(+), 0 deletions(-)
16 diff --git a/Makefile b/Makefile
17 index 9df5574..1635107 100644
20 @@ -32,6 +32,11 @@ ifneq ($(NO_FORK),)
24 +# For static builds, we might hit perror() symbol clashes
25 +ifneq ($(NO_PERROR),)
26 +CPPFLAGS += -DNO_PERROR
29 # Comment out if your RPC library does not allocate privileged ports for
30 # requests from processes with root privilege, or the new portmap will
31 # always reject requests to register/unregister services on privileged
32 diff --git a/README b/README
33 index bda1707..05861a8 100644
36 @@ -19,6 +19,7 @@ There is no "./configure", just use "make".
37 Some make variable can be used to control compilation.
39 NO_FORK= if non-empty, don't use fork (good for nommu systems)
40 + NO_PERROR= if non-empty, don't override the perror() func
41 NO_PIE= if non-empty, don't build portmap as a PIE
42 NO_TCP_WRAPPER= if non-empty, don't use tcp_wrappers
43 USE_DNS= if set, tcp_wrappers can check peers based on hostname
44 diff --git a/portmap.c b/portmap.c
45 index 2a98881..94abc64 100644
48 @@ -391,12 +391,14 @@ main(int argc, char **argv)
53 /* need to override perror calls in rpc library */
54 void perror(const char *what)
57 syslog(LOG_ERR, "%s: %m", what);
61 static struct pmaplist *
62 find_service(u_long prog, u_long vers, u_long prot)