diff options
author | Mark Murray <markm@FreeBSD.org> | 2000-08-20 08:43:07 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2000-08-20 08:43:07 +0000 |
commit | 8947993a910c7e5d244200623325b9fcb54a9eee (patch) | |
tree | b35fc9696f76d59de3a8783dea4af9ab1db15e96 /contrib/perl5/Configure | |
parent | 120a02d4f3990e59fba1df18a155ff7233b4d827 (diff) |
Vendor supplied patches to fix procname ($0)
Notes
Notes:
svn path=/vendor/perl5/dist/; revision=64866
Diffstat (limited to 'contrib/perl5/Configure')
-rwxr-xr-x | contrib/perl5/Configure | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/contrib/perl5/Configure b/contrib/perl5/Configure index ddec97ca68d8..3e7ac45a8660 100755 --- a/contrib/perl5/Configure +++ b/contrib/perl5/Configure @@ -487,6 +487,7 @@ d_setpgrp2='' d_bsdsetpgrp='' d_setpgrp='' d_setprior='' +d_setproctitle='' d_setpwent='' d_setregid='' d_setresgid='' @@ -620,6 +621,7 @@ i_grp='' i_iconv='' i_ieeefp='' i_inttypes='' +i_libutil='' i_limits='' i_locale='' i_machcthr='' @@ -995,7 +997,7 @@ defvoidused=15 libswanted='sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl' libswanted="$libswanted dld ld sun m c cposix posix" libswanted="$libswanted ndir dir crypt sec" -libswanted="$libswanted ucb bsd BSD PW x iconv" +libswanted="$libswanted ucb bsd BSD PW x iconv util" : We probably want to search /usr/shlib before most other libraries. : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` @@ -10934,6 +10936,10 @@ eval $inlibc set setpriority d_setprior eval $inlibc +: see if setproctitle exists +set setproctitle d_setproctitle +eval $inlibc + : see if setpwent exists set setpwent d_setpwent eval $inlibc @@ -14175,6 +14181,10 @@ eval $inhdr set ieeefp.h i_ieeefp eval $inhdr +: see if this is a libutil.h system +set libutil.h i_libutil +eval $inhdr + : see if locale.h is available set locale.h i_locale eval $inhdr @@ -15321,6 +15331,7 @@ d_setpgid='$d_setpgid' d_setpgrp2='$d_setpgrp2' d_setpgrp='$d_setpgrp' d_setprior='$d_setprior' +d_setproctitle='$d_setproctitle' d_setpwent='$d_setpwent' d_setregid='$d_setregid' d_setresgid='$d_setresgid' @@ -15467,6 +15478,7 @@ i_grp='$i_grp' i_iconv='$i_iconv' i_ieeefp='$i_ieeefp' i_inttypes='$i_inttypes' +i_libutil='$i_libutil' i_limits='$i_limits' i_locale='$i_locale' i_machcthr='$i_machcthr' |