summaryrefslogtreecommitdiff
path: root/sunrpc
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2011-04-22 23:31:52 -0400
committerUlrich Drepper <drepper@gmail.com>2011-04-22 23:31:52 -0400
commit4df46dbda7787fd9f718c4d98a8416fcfa2f2c56 (patch)
tree7cee7d6d6379074f1379ffb687d9b9bd2fcc51ec /sunrpc
parent7a41d99a35ca4c13ad2db1bc3894e1a8ec70721b (diff)
Fix "make xcheck" in sunrpc.
Diffstat (limited to 'sunrpc')
-rw-r--r--sunrpc/Makefile7
-rw-r--r--sunrpc/clnt_perr.c4
-rw-r--r--sunrpc/svc_run.c4
-rw-r--r--sunrpc/svc_udp.c4
4 files changed, 16 insertions, 3 deletions
diff --git a/sunrpc/Makefile b/sunrpc/Makefile
index f86393abe3..bcaa2152c9 100644
--- a/sunrpc/Makefile
+++ b/sunrpc/Makefile
@@ -64,12 +64,13 @@ ifeq ($(versioning),yes)
need-export-routines := auth_des auth_unix clnt_gen clnt_perr clnt_tcp \
clnt_udp get_myaddr key_call netname pm_getport \
rpc_thread svc svc_tcp svc_udp xcrypt xdr_array xdr \
- xdr_intXX_t xdr_mem xdr_ref xdr_sizeof xdr_stdio
+ xdr_intXX_t xdr_mem xdr_ref xdr_sizeof xdr_stdio \
+ svc_run
routines := auth_none authuxprot bindrsvprt clnt_raw clnt_simp \
rpc_dtable getrpcport pmap_clnt pm_getmaps pmap_prot pmap_prot2 \
pmap_rmt rpc_prot rpc_common rpc_cmsg svc_auth svc_authux svc_raw \
- svc_run svc_simple xdr_float xdr_rec publickey authdes_prot \
+ svc_simple xdr_float xdr_rec publickey authdes_prot \
des_crypt des_impl des_soft key_prot openchild rtime svcauth_des \
clnt_unix svc_unix create_xid $(need-export-routines)
# We only add the RPC for compatibility to libc.so.
@@ -212,4 +213,4 @@ ifneq ($(no_deps),t)
endif
endif
-$(objpfx)thrsvc: $(shared-thread-library)
+$(objpfx)thrsvc: $(common-objpfx)linkobj/libc.so $(shared-thread-library)
diff --git a/sunrpc/clnt_perr.c b/sunrpc/clnt_perr.c
index 734c2b3636..e6b2460ec5 100644
--- a/sunrpc/clnt_perr.c
+++ b/sunrpc/clnt_perr.c
@@ -270,7 +270,11 @@ clnt_perrno (enum clnt_stat num)
{
(void) __fxprintf (NULL, "%s", clnt_sperrno (num));
}
+#ifdef EXPORT_RPC_SYMBOLS
+libc_hidden_def (clnt_perrno)
+#else
libc_hidden_nolink (clnt_perrno, GLIBC_2_0)
+#endif
char *
clnt_spcreateerror (const char *msg)
diff --git a/sunrpc/svc_run.c b/sunrpc/svc_run.c
index d92ad57fed..09f40dd188 100644
--- a/sunrpc/svc_run.c
+++ b/sunrpc/svc_run.c
@@ -101,4 +101,8 @@ svc_run (void)
free (my_pollfd);
}
+#ifdef EXPORT_RPC_SYMBOLS
+libc_hidden_def (svc_run)
+#else
libc_hidden_nolink (svc_run, GLIBC_2_0)
+#endif
diff --git a/sunrpc/svc_udp.c b/sunrpc/svc_udp.c
index 1e6e456066..71be4f8221 100644
--- a/sunrpc/svc_udp.c
+++ b/sunrpc/svc_udp.c
@@ -195,7 +195,11 @@ svcudp_create (sock)
{
return svcudp_bufcreate (sock, UDPMSGSIZE, UDPMSGSIZE);
}
+#ifdef EXPORT_RPC_SYMBOLS
+libc_hidden_def (svcudp_create)
+#else
libc_hidden_nolink (svcudp_create, GLIBC_2_0)
+#endif
static enum xprt_stat
svcudp_stat (xprt)