home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / linux / 22693 < prev    next >
Encoding:
Text File  |  1993-01-04  |  1.1 KB  |  35 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!europa.asd.contel.com!gatech!destroyer!gumby!yale!mintaka.lcs.mit.edu!spdcc!jti.com!richb
  3. From: richb@jti.com (Richard Braun)
  4. Subject: Re: Compiling 'shadow'
  5. Message-ID: <C0CFxD.1xH@jti.com>
  6. Sender: news@jti.com (News Admin)
  7. Nntp-Posting-Host: bart.jti.com
  8. Organization: Jupiter Technology Inc. / Waltham, MA
  9. References: <C03F1G.1I5@jti.com> <1992Dec31.020618.9810@cbfsb.cb.att.com> <C057o9.520@jti.com>
  10. Date: Mon, 4 Jan 1993 19:10:24 GMT
  11. Lines: 22
  12.  
  13. I wrote:
  14. >Binary mods to /bin/login make me a little queasy!  And I'll bet I'm
  15. >not alone.
  16.  
  17. Over the weekend I looked at this more closely.  The problem is that
  18. ulimit() is obsolete with Gnu lib 4.2, and the Linux release of shadow
  19. doesn't reflect that.
  20.  
  21. In config.h, change:
  22.  
  23.     #define HAVE_ULIMIT
  24.     #undef  HAVE_RLIMIT
  25. to
  26.     #undef    HAVE_ULIMIT
  27.     #define    HAVE_RLIMIT
  28.  
  29. I'll cc this posting to Ed Carp, who is listed as maintainer of the
  30. Linux release.
  31.  
  32. -rich
  33. P.S.  Why isn't this version of login used as the standard Linux version?
  34.   I don't see any disadvantage to using it, only benefits.
  35.