This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb66d7b
)
There has been a 'thaw' in config.h (the ICE has gone ;-))
author
Nick Ing-Simmons
<nik@tiuk.ti.com>
Sat, 7 Mar 1998 09:36:41 +0000
(09:36 +0000)
committer
Nick Ing-Simmons
<nik@tiuk.ti.com>
Sat, 7 Mar 1998 09:36:41 +0000
(09:36 +0000)
So pp_sys.c needs tweaking otherwise it does not believe getservby*()
exist. (Breaks libnet).
p4raw-id: //depot/perl@800
pp_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_sys.c
b/pp_sys.c
index
8058fb2
..
8d8be18
100644
(file)
--- a/
pp_sys.c
+++ b/
pp_sys.c
@@
-3834,7
+3834,7
@@
PP(pp_gprotoent)
PP(pp_gsbyname)
{
-#ifdef HAS_GETSERV
ICE
BYNAME
+#ifdef HAS_GETSERVBYNAME
return pp_gservent(ARGS);
#else
DIE(no_sock_func, "getservbyname");
@@
-3843,7
+3843,7
@@
PP(pp_gsbyname)
PP(pp_gsbyport)
{
-#ifdef HAS_GETSERV
ICE
BYPORT
+#ifdef HAS_GETSERVBYPORT
return pp_gservent(ARGS);
#else
DIE(no_sock_func, "getservbyport");