fix typo in changelog
[debian/sudo] / INSTALL
1 Installation instructions for Sudo 1.6.9
2 ========================================
3
4 Sudo uses a `configure' script to probe the capabilities and type
5 of the system in question.  In this release, `configure' takes many
6 more options than it did before.  Please read this document fully
7 before configuring and building sudo.  You may also wish to read the
8 file INSTALL.configure which explains more about the `configure' script.
9
10 Simple sudo installation
11 ========================
12
13 For most systems and configurations it is possible simply to:
14
15     0) If you are upgrading from a previous version of sudo
16        please read the info in the UPGRADE file before proceeding.
17
18     1) If you previously ran `configure' on a different host
19        you will probably want to do a `make distclean' to remove
20        the old `config.cache' file.  Otherwise, `configure'
21        will complain and refuse to run.  Alternately, one can
22        simply `rm config.cache'.
23
24     2) Read the `OS dependent notes' section for any particular
25        "gotchas" relating to your operating system.
26
27     3) `cd' to the source or build directory and type `./configure'
28        to generate a Makefile and config.h file suitable for
29        building sudo.  Before you actually run configure you
30        should read the `Available configure options' section
31        to see if there are any special options you may want
32        or need.
33
34     4) Edit the configure-generated Makefile if you wish to
35        change any of the default paths (alternatively, you could
36        have changed the paths via options to `configure'.
37
38     5) Type `make' to compile sudo.  If you are building sudo
39        in a separate build tree (apart from the sudo source)
40        GNU make will probably be required.  If `configure' did
41        its job properly (and you have a supported configuration)
42        there won't be any problems.  If this doesn't work, take
43        a look at the files TROUBLESHOOTING and PORTING for tips
44        on what might have gone wrong.  Please mail us if you have a
45        fix or if you are unable to come up with a fix (address at EOF).
46
47     6) Type `make install' (as root) to install sudo, visudo, the
48        man pages, and a skeleton sudoers file.  Note that the install
49        will not overwrite an existing sudoers file.  You can also
50        install various pieces the package via the install-binaries,
51        install-man, and install-sudoers make targets.
52
53     7) Edit the sudoers file with `visudo' as necessary for your
54        site.  You will probably want to refer the sample.sudoers
55        file and sudoers man page included with the sudo package.
56
57     8) If you want to use syslogd(8) to do the logging, you'll need
58        to update your /etc/syslog.conf file.  See the sample.syslog.conf
59        file included in the distribution for an example.
60
61 Available configure options
62 ===========================
63
64 This section describes flags accepted by the sudo's `configure' script.
65 Defaults are listed in brackets after the description.
66
67 Configuration:
68   --cache-file=FILE
69         Cache test results in FILE
70
71   --config-cache, -C
72         Alias for `--cache-file=config.cache'
73
74   --help, -h
75         Print the usage/help info
76
77   --no-create, -n
78         Do not create output files
79
80   --quiet, --silent, -q
81         Do not print `checking...' messages
82
83 Directory and file names:
84   --prefix=PREFIX
85         Install architecture-independent files in PREFIX This really only
86         applies to man pages.  [/usr/local]
87
88   --exec-prefix=EPREFIX
89         Install architecture-dependent files in EPREFIX This includes the
90         sudo and visudo executables.  [same as prefix]
91
92   --bindir=DIR
93         Install `sudo' in DIR [EPREFIX/bin]
94
95   --sbindir=DIR
96         Install `visudo' in DIR [EPREFIX/sbin]
97
98   --sysconfdir=DIR
99         Install `sudoers' file in DIR [/etc]
100
101   --mandir=DIR
102         Install man pages in DIR [PREFIX/man]
103
104   --srcdir=DIR
105         Find the sources in DIR [configure dir or ..]
106
107 Special features/options:
108   --with-CC=PATH
109         Specifies path to C compiler you wish to use.
110
111   --with-incpath=DIR
112         Adds the specified directory (or directories) to CPPFLAGS
113         so configure and the compiler will look there for include
114         files.  Multiple directories may be specified as long as
115         they are space separated.
116         Eg: --with-incpath="/usr/local/include /opt/include"
117
118   --with-libpath=DIR
119         Adds the specified directory (or directories) to LDFLAGS
120         so configure and the compiler will look there for libraries.
121         Multiple directories may be specified as with --with-incpath.
122
123   --with-rpath
124         Tells configure to use -Rpath in addition to -Lpath when
125         passing library paths to the loader.  This option is on
126         by default for Solaris and SVR4.
127
128   --with-blibpath[=PATH]
129         Tells configure to construct a -blibpath argument to the
130         loader.  If a PATH is specified, it will be used as the
131         base.  Otherwise, "/usr/lib:/lib:/usr/local/lib" will be
132         used for gcc and "/usr/lib:/lib" for non-gcc.  Additional
133         library paths will be appended as needed by configure.
134         This option is only valid for AIX where it is on by default.
135
136   --with-libraries=LIBRARY
137         Adds the specified library (or libaries) to SUDO_LIBS and
138         and VISUDO_LIBS so sudo will link against them.  If the
139         library doesn't start with `-l' or end in `.a' or `.o' a
140         `-l' will be prepended to it.  Multiple libraries may be
141         specified as long as they are space separated.
142
143   --with-csops
144         Add CSOps standard options.  You probably aren't interested in this.
145
146   --with-skey[=DIR]
147         Enable S/Key OTP (One Time Password) support.  If specified,
148         DIR should contain include and lib directories with skey.h
149         and libskey.a respectively.
150
151   --with-opie[=DIR]
152         Enable NRL OPIE OTP (One Time Password) support.  If specified,
153         DIR should contain include and lib directories with opie.h
154         and libopie.a respectively.
155
156   --with-SecurID[=DIR]
157         Enable SecurID support.  If specified, DIR is directory containing
158         sdiclient.a, sdi_athd.h, sdconf.h, and sdacmvls.h.
159
160   --with-fwtk[=DIR]
161         Enable TIS Firewall Toolkit (FWTK) 'authsrv' support. If specified,
162         DIR is the base directory containing the compiled FWTK package
163         (or at least the library and header files).
164
165   --with-kerb4[=DIR]
166         Enable Kerberos IV support.  If specified, DIR is the base
167         directory containing the Kerberos IV include and lib dirs.
168         This uses Kerberos passphrases for authentication but does
169         not use the Kerberos cookie scheme.
170
171   --with-kerb5[=DIR]
172         Enable Kerberos V support.  If specified, DIR is the base
173         directory containing the Kerberos V include and lib dirs.
174         This This uses Kerberos passphrases for authentication but
175         does not use the Kerberos cookie scheme.  Will not work for
176         Kerberos V older than version 1.1.
177
178   --with-ldap[=DIR]
179         Enable LDAP support.  If specified, DIR is the base directory
180         containing the LDAP include and lib directories.  Please see
181         README.LDAP for more information.
182
183   --with-ldap-conf-file=filename
184         Path to LDAP configuration file.  If specified, sudo reads
185         this file instead of /etc/ldap.conf to locate the LDAP server.
186
187   --with-ldap-secret-file=filename
188         Path to LDAP secret password file.  If specified, sudo uses
189         this file instead of /etc/ldap.secret to read the secret password
190         when rootbinddn is specified in the ldap config file.
191
192   --with-aixauth
193         Enable support for the AIX 4.x general authentication function.
194         This will use the authentication scheme specified for the user
195         on the machine.  It is on by default for AIX systems that
196         support it.
197
198   --with-pam
199         Enable PAM support.  This is on by default for Darwin, FreeBSD,
200         Linux, Solaris and HP-UX (version 11 and higher).
201
202         NOTE: on RedHat Linux and Fedora you *must* have an /etc/pam.d/sudo
203         file installed.  You may either use the sample.pam file included with
204         sudo or use /etc/pam.d/su as a reference.  The sample.pam file
205         included with sudo may or may not work with other Linux distributions.
206         On Solaris and HP-UX 11 systems you should check (and understand)
207         the contents of /etc/pam.conf.  Do a "man pam.conf" for more
208         information and consider using the "debug" option, if available,
209         with your PAM libraries in /etc/pam.conf to obtain syslog output
210         for debugging purposes.
211
212   --with-AFS
213         Enable AFS support with Kerberos authentication.  Should work under
214         AFS 3.3.  If your AFS doesn't have -laudit you should be able to
215         link without it.
216
217   --with-DCE
218         Enable DCE support for systems without PAM.  Known to work on
219         HP-UX 9.X, 10.X, and 11.0; other systems may require source
220         code and/or `configure' changes.  On systems with PAM support
221         (such as HP-UX 11.0 and higher, Solaris, FreeBSD and Linux), the
222         DCE PAM module (usually libpam_dce) should be used instead.
223
224   --with-logincap
225         This adds support for login classes specified in /etc/login.conf.
226         It is enabled by default on BSD/OS, Darwin, FreeBSD, OpenBSD and
227         NetBSD (where available).  By default, a login class is not applied
228         unless the 'use_loginclass' option is defined in sudoers or the user
229         specifies a class on the command line.
230
231   --with-project
232           Enable support for Solaris project resource limits.
233           This option is only available on Solaris 9 and above.
234
235   --with-bsdauth
236         Enable support for BSD authentication.  This is the default
237         for BSD/OS and OpenBSD systems that support it.
238         It is not possible to mix BSD authentication with other
239         authentication methods (and there really should be no need
240         to do so).  Note that only the newer BSD authentication API
241         is supported.  If you don't have /usr/include/bsd_auth.h
242         then you cannot use this.
243
244   --with-noexec[=PATH]
245         Enable support for the "noexec" functionality which prevents
246         a dynamically-linked program being run by sudo from executing
247         another program (think shell escapes).  Please see the
248         "PREVENTING SHELL ESCAPES" section in the sudoers man page
249         for details.  If specified, PATH should be a fully qualified
250         pathname, e.g. /usr/local/libexec/sudo_noexec.so.  If PATH
251         is "no", noexec support will not be compiled in.  The default
252         is to compile noexec support if libtool supports building
253         shared objects on your OS.
254
255   --disable-pam-session
256         Disable sudo's PAM session support.  This may be needed on
257         older PAM implementations or on operating systems where
258         opening a PAM session changes the utmp or wtmp files.  If
259         PAM session support is disabled, resource limits may not
260         be updatedin for command being run.
261
262   --disable-root-mailer
263         By default sudo will run the mailer as root when tattling
264         on a user so as to prevent that user from killing the mailer.
265         With this option, sudo will run the mailer as the invoking
266         user which some people consider to be safer.
267
268   --disable-setreuid
269         Disable use of the setreuid() function for operating systems
270         where it is broken.  Mac OS X has setreuid() but it doesn't
271         really work.
272
273   --disable-setresuid
274         Disable use of the setresuid() function for operating systems
275         where it is broken (none currently known).
276
277   --disable-sia
278         Disable SIA support.  This is the "Security Integration
279         Architecture" on Digital UNIX. If you disable SIA sudo will
280         use its own authentication routines.
281
282   --disable-shadow
283         Disable shadow password support.  Normally, sudo will compile
284         in shadow password support and use a shadow password if it
285         exists.
286
287   --with-sudoers-mode=MODE
288         File mode for the sudoers file (octal).  Note that if you
289         wish to NFS-mount the sudoers file this must be group
290         readable.  Also note that this is actually set in the
291         Makefile.  The default mode is 0440.
292
293   --with-sudoers-uid=UID
294         User id that "owns" the sudoers file.  Note that this is
295         the numeric id, *not* the symbolic name.  Also note that
296         this is actually set in the Makefile.  The default is 0.
297
298   --with-sudoers-gid=GID
299         Group id that "owns" the sudoers file.  Note that this is
300         the numeric id, *not* the symbolic name.  Also note that
301         this is actually set in the Makefile.  The default is 0.
302
303   --without-interfaces
304         This option keeps sudo from trying to glean the ip address
305         from each attached ethernet interface.  It is only useful
306         on a machine where sudo's interface reading support does
307         not work, which may be the case on some SysV-based OS's
308         using STREAMS.
309
310   --without-passwd
311         This option excludes authentication via the passwd (or
312         shadow) file.  It should only be used when another, alternative,
313         authentication scheme is in use.
314
315   --with-otp-only
316         This option is now just an alias for --without-passwd.
317
318   --with-stow
319         Properly handle GNU stow packaging.  The sudoers file will
320         physically live in ${prefix}/etc and /etc/sudoers will be
321         a symbolic link.
322
323   --with-selinux 
324         Enable support for role based access control (RBAC) on
325         systems that support SELinux.
326
327 The following options are also configurable at runtime:
328
329   --with-long-otp-prompt
330         When validating with a One Time Password scheme (S/Key or
331         OPIE), a two-line prompt is used to make it easier to cut
332         and paste the challenge to a local window.  It's not as
333         pretty as the default but some people find it more convenient.
334
335   --with-logging=TYPE
336         How you want to do your logging.  You may choose "syslog",
337         "file", or "both".  Setting this to "syslog" is nice because
338         you can keep all of your sudo logs in one place (see the
339         sample.syslog.conf file).  The default is "syslog".
340
341   --with-logfac=FACILITY
342         Determines which syslog facility to log to.  This requires
343         a 4.3BSD or later version of syslog.  You can still set
344         this for ancient syslogs but it will have no effect.  The
345         following facilities are supported: authpriv (if your OS
346         supports it), auth, daemon, user, local0, local1, local2,
347         local3, local4, local5, local6, and local7.
348
349   --with-goodpri=PRIORITY
350         Determines which syslog priority to log successfully
351         authenticated commands.  The following priorities are
352         supported: alert, crit, debug, emerg, err, info, notice,
353         and warning.
354
355   --with-badpri=PRIORITY
356         Determines which syslog priority to log unauthenticated
357         commands and errors.  The following priorities are supported:
358         alert, crit, debug, emerg, err, info, notice, and warning.
359
360   --with-logpath=PATH
361         Override the default location of the sudo log file and use
362         "path" instead.  By default will use /var/log/sudo.log if
363         there is a /var/log dir, falling back to /var/adm/sudo.log
364         or /usr/adm/sudo.log if not.
365
366   --with-loglen=NUMBER
367         Number of characters per line for the file log.  This is only used if
368         you are to "file" or "both".  This value is used to decide when to wrap
369         lines for nicer log files.  The default is 80.  Setting this to 0
370         will disable the wrapping.
371
372   --with-ignore-dot
373         If set, sudo will ignore '.' or '' (current dir) in $PATH.
374         The $PATH itself is not modified.
375
376   --with-mailto=USER|MAIL_ALIAS
377         User (or mail alias) that mail from sudo is sent to.
378         This should go to a sysadmin at your site.  The default is "root".
379
380   --with-mailsubject="SUBJECT OF MAIL"
381         Subject of the mail sent to the "mailto" user. The token "%h"
382         will expand to the hostname of the machine.
383         Default is "*** SECURITY information for %h ***".
384
385   --without-mail-if-no-user
386         Normally, sudo will mail to the "alertmail" user if the user invoking
387         sudo is not in the sudoers file.  This option disables that behavior.
388
389   --with-mail-if-no-host
390         Send mail to the "alermail" user if the user exists in the sudoers
391         file, but is not allowed to run commands on the current host.
392
393   --with-mail-if-noperms
394         Send mail to the "alermail" user if the user is allowed to use sudo but
395         the command they are trying is not listed in their sudoers file entry.
396
397   --with-passprompt="PASSWORD PROMPT"
398         Default prompt to use when asking for a password; can be overridden
399         via the -p option and the SUDO_PROMPT environment variable. Supports
400         the "%H", "%h", "%U" and "%u" escapes as documented in the sudo
401         manual page.  The default value is "Password:".
402
403   --with-badpass-message="BAD PASSWORD MESSAGE"
404         Message that is displayed if a user enters an incorrect password.
405         The default is "Sorry, try again." unless insults are turned on.
406
407   --with-fqdn
408         Define this if you want to put fully qualified hostnames in the sudoers
409         file.  Ie: instead of myhost you would use myhost.mydomain.edu.  You may
410         still use the short form if you wish (and even mix the two).  Beware
411         that turning FQDN on requires sudo to make DNS lookups which may make
412         sudo unusable if your DNS is totally hosed.  Also note that you must
413         use the host's official name as DNS knows it.  That is, you may not use
414         a host alias (CNAME entry) due to performance issues and the fact that
415         there is no way to get all aliases from DNS.
416
417   --with-timedir=PATH
418         Override the default location of the sudo timestamp directory and
419         use "path" instead.
420
421   --with-sendmail=PATH
422         Override configure's guess as to the location of sendmail.
423
424   --without-sendmail
425         Do not use sendmail to mail messages to the "mailto" user.
426         Use only if don't run sendmail or the equivalent.
427
428   --with-umask=MASK
429         Umask to use when running the root command.  The default is 0022.
430
431   --without-umask
432         Preserves the umask of the user invoking sudo.
433
434   --with-runas-default=USER
435         The default user to run commands as if the -u flag is not specified
436         on the command line.  This defaults to "root".
437
438   --with-exempt=GROUP
439         Users in the specified group don't need to enter a password when
440         running sudo.  This may be useful for sites that don't want their
441         "core" sysadmins to have to enter a password but where Jr. sysadmins
442         need to.  You should probably use NOPASSWD in sudoers instead.
443
444   --with-passwd-tries=NUMBER
445         Number of tries a user gets to enter his/her password before sudo logs
446         the failure and exits.  The default is 3.
447
448   --with-timeout=NUMBER
449         Number of minutes that can elapse before sudo will ask for a passwd
450         again.  The default is 5, set this to 0 to always prompt for a password.
451
452   --with-password-timeout=NUMBER
453         Number of minutes before the sudo password prompt times out.
454         The default is 5, set this to 0 for no password timeout.
455
456   --with-tty-tickets
457         This makes sudo use a different ticket file for each user/tty combo.
458         Ie: instead of the ticket path being "username" it is "username/tty".
459         This is useful for "shared" accounts like "operator".  Note that this
460         means that there will be more files in the timestamp dir.  This is not
461         a problem if your system has a cron job to remove of files from /tmp
462         (or wherever you specified the timestamp dir to be).
463
464   --with-insults
465         Define this if you want to be insulted for typing an incorrect password
466         just like the original sudo(8).  This is off by default.
467
468   --with-all-insults
469         Include all the insult sets listed below.  You must either specify
470         --with-insults or enable insults in the sudoers file for this to
471         have any effect.
472
473   --with-classic-insults
474         Uses insults from sudo "classic."  If you just specify --with-insults
475         you will get the classic and CSOps insults.  This is on by default if
476         --with-insults is given.
477
478   --with-csops-insults
479         Insults the user with an extra set of insults (some quotes, some
480         original) from a sysadmin group at CU (CSOps).  You must specify
481         --with-insults as well for this to have any effect.  This is on by
482         default if --with-insults is given.
483
484   --with-hal-insults
485         Uses 2001-like insults when an incorrect password is entered.
486         You must either specify --with-insults or enable insults in the
487         sudoers file for this to have any effect.
488
489   --with-goons-insults
490         Insults the user with lines from the "Goon Show" when an incorrect
491         password is entered.  You must either specify --with-insults or
492         enable insults in the sudoers file for this to have any effect.
493
494   --with-pc-insults
495         Replace politically incorrect insults with less objectionable ones.
496
497   --with-secure-path[=PATH]
498         Path used for every command run from sudo(8).  If you don't trust the
499         people running sudo to have a sane PATH environment variable you may
500         want to use this.  Another use is if you want to have the "root path"
501         be separate from the "user path."  You will need to customize the path
502         for your site.  NOTE: this is not applied to users in the group
503         specified by --with-exemptgroup.  If you do not specify a path,
504         "/bin:/usr/ucb:/usr/bin:/usr/sbin:/sbin:/usr/etc:/etc" is used.
505
506   --without-lecture
507         Don't print the lecture the first time a user runs sudo.
508
509   --with-editor=PATH
510         Specify the default editor path for use by visudo.  This may be a
511         single pathname or a colon-separated list of editors.  In the latter
512         case, visudo will choose the editor that matches the user's VISUAL
513         or EDITOR environment variables or the first editor in the list that
514         exists.  The default is the path to vi on your system.
515
516   --with-env-editor
517         Makes visudo consult the VISUAL and EDITOR environment variables before
518         falling back on the default editor list (as specified by --with-editor).
519         Note that this may create a security hole as it allows the user to
520         run any arbitrary command as root without logging.  A safer alternative
521         is to use a colon-separated list of editors with the --with-editor
522         option.  visudo will then only use the VISUAL or EDITOR variables
523         if they match a value specified via --with-editor.
524
525   --disable-authentication
526         By default, sudo requires the user to authenticate via a
527         password or similar means.  This options causes sudo to
528         *not* require authentication.  It is possible to turn
529         authentication back on in sudoers via the PASSWD attribute.
530
531   --disable-root-sudo
532         Don't let root run sudo.  This can be used to prevent people from
533         "chaining" sudo commands to get a root shell by doing something
534         like "sudo sudo /bin/sh".
535
536   --enable-log-host
537         Log the hostname in the log file.
538
539   --enable-noargs-shell
540         If sudo is invoked with no arguments it acts as if the "-s" flag had
541         been given.  That is, it runs a shell as root (the shell is determined
542         by the SHELL environment variable, falling back on the shell listed
543         in the invoking user's /etc/passwd entry).
544
545   --enable-shell-sets-home
546         If sudo is invoked with the "-s" flag the HOME environment variable
547         will be set to the home directory of the target user (which is root
548         unless the "-u" option is used).  This option effectively makes the
549         "-s" flag imply "-H".
550
551   --disable-path-info
552         Normally, sudo will tell the user when a command could not be found
553         in their $PATH.  Some sites may wish to disable this as it could
554         be used to gather information on the location of executables that
555         the normal user does not have access to.  The disadvantage is that
556         if the executable is simply not in the user's path, sudo will tell
557         the user that they are not allowed to run it, which can be confusing.
558
559 Shadow password and C2 support
560 ==============================
561
562 Shadow passwords (also included with most C2 security packages) are
563 supported on most major platforms for which they exist.  The
564 `configure' script will attempt to determine if your system can use
565 shadow passwords and include support for them if so.  Shadow password
566 support is now compiled in by default (it doesn't hurt anything if you
567 don't have them configured).  To disable the shadow password support,
568 use the --disable-shadow option to configure.
569
570 Shadow passwords are known to work on the following platforms:
571
572     SunOS 4.x
573     Solaris 2.x
574     HP-UX >= 9.x
575     Ultrix 4.x
576     Digital UNIX
577     IRIX >= 5.x
578     AIX >= 3.2.x
579     ConvexOS with C2 security (not tested recently)
580     Linux
581     SCO >= 3.2.2
582     Pyramid DC/OSx
583     UnixWare
584     SVR4 (and variants using standard SVR4 shadow passwords)
585     4.4BSD based systems (including OpenBSD, NetBSD, FreeBSD, and BSD/OS)
586     OS's using SecureWare's C2 security.
587
588 OS dependent notes
589 ==================
590
591 OpenBSD < 2.2 and NetBSD < 1.2.1:
592     The fdesc file system has a bug wrt /dev/tty handling that
593     causes sudo to hang at the password prompt.  The workaround
594     is to run configure with --with-password-timeout=0
595
596 Solaris 2.x:
597     You need to have a C compiler in order to build sudo.
598     Since Solaris 2.x does not come with one by default this
599     means that you either need to have purchased the unbundled Sun
600     C compiler or have a copy of the GNU C compiler (gcc).
601     The SunSoft Catalyst CD should contain gcc binaries for
602     Solaris.  You can also get them from various places on the
603     net, including http://www.sunfreeware.com/
604     NOTE: sudo will *not* build with the sun C compiler in BSD
605           compatibility mode (/usr/ucb/cc).  Sudo is designed to
606           compile with the standard C compiler (or gcc) and will
607           not build correctly with /usr/ucb/cc.  You can use the
608           `--with-CC' option to point `configure' to the non-ucb
609           compiler if it is not the first cc in your path.  Some
610           sites link /usr/ucb/cc to gcc; configure will not notice
611           this an still refuse to use /usr/ucb/cc, so make sure gcc
612           is also in your path if your site is setup this way.
613     Also: Many versions of Solaris come with a broken syslogd.
614           If you have having problems with sudo logging you should
615           make sure you have the latest syslogd patch installed.
616           This is a problem for Solaris 2.4 and 2.5 at least.
617
618 AIX 3.2.x:
619     I've had various problems with the AIX C compiler producing
620     incorrect code when the -O flag was used.  When optimization
621     is not used, the problems go away.  Gcc does not appear
622     to have this problem.
623
624     Also, the AIX 3.2.x lex will not work with sudo's parse.lex.
625     This should not be a problem as sudo comes shipped with
626     a pre-generated lex.yy.c (created by flex).  If you want
627     to modify the lex tokenizer, make sure you grab a copy of
628     flex from ftp.ee.lbl.gov (also available on most GNU mirrors)
629     and sudo will use that instead.
630
631 Ultrix 4.x:
632     Ultrix still ships with the 4.2BSD syslog(3) which does not
633     allow things like logging different facilities to different
634     files, redirecting logs to a single loghost and other niceties.
635     You may want to just grab and install:
636         ftp://gatekeeper.dec.com/pub/DEC/jtkohl-syslog-complete.tar.Z
637     (available via anonymous ftp) which is a port if the 4.3BSD
638     syslog/syslogd that is backwards compatible with the Ultrix version.
639     I recommend it highly.  If you do not do this you probably want
640     to run configure with --with-logging=file
641
642 Digital UNIX:
643     By default, sudo will use SIA (Security Integration Architecture)
644     to validate a user.  If you want to use an alternative authentication
645     method that does not go through SIA, you need to use the
646     --disable-sia option to configure.  If you use gcc to compile
647     you will get warnings when building interfaces.c.  These are
648     harmless but if they really bug you, you can edit
649     /usr/include/net/if.h around line 123, right after the comment:
650         /* forward decls for C++ */
651     change the line:
652         #ifdef __cplusplus
653     to:
654         #if defined(__cplusplus) || defined(__GNUC__)
655     If you don't like the idea of editing the system header file
656     you can just make a copy in gcc's private include tree and
657     edit that.
658
659 Linux:
660     PAM and LDAP headers are not installed by default on most Linux
661     systems.  You will need to install the "pav-dev" package if
662     /usr/include/security/pam_appl.h is not present on your system.
663     If you wish to build with LDAP support you will also need the
664     openldap-devel package.
665
666     Versions of glibc 2.x previous to 2.0.7 have a broken lsearch().
667     You will need to either upgrade to glibc-2.0.7 or use sudo's
668     version of lsearch().  To use sudo's lsearch(), comment out
669     the "#define HAVE_LSEARCH 1" line in config.h and add lsearch.o
670     to the LIBOBJS line in the Makefile.
671
672     If you are using a Linux kernel older than 2.4 it is not possible
673     to access the sudoers file via NFS.  This is due to a bug in
674     the Linux client-side NFS implementation that has since been
675     fixed.  There is a workaround on the sudo ftp site, linux_nfs.patch,
676     if you need to NFS-mount sudoers on older Linux kernels.
677
678 Mac OS X:
679     It has been reported that for sudo to work on Mac OS X it must
680     either be built with the --with-password-timeout=0 option or the
681     password timeout must be disabled in the Defaults line in the
682     sudoers file.  If sudo just hangs when you try to enter a password,
683     you need to disable the password timeout (Note: this is not a bug
684     in sudo).
685
686 SCO ODT:
687     You'll probably need libcrypt_i.a available via anonymous ftp
688     from sosco.sco.com.  The necessary files are /SLS/lng225b.Z
689     and /SLS/lng225b.ltr.Z.
690
691 Dynix:
692     Some people have experienced problems building sudo with gcc
693     on Dynix.  If you experience problems compiling sudo using gcc
694     on Dynix, try using the native compiler (cc).  You can do so
695     by removing the config.cache file and then re-running configure
696     with the --with-CC=cc option.
697
698 HP-UX:
699     The default C compiler shipped with HP-UX does not support creating
700     position independent code and so is unable to support sudo's "noexec"
701     functionality.  You must use either the HP ANSI C compiler or gcc for
702     noexec to work.  Binary packages of gcc are available from
703     http://hpux.connect.org.uk/ and http://hpux.cs.utah.edu/.
704
705 SunOS 4.x:
706     The /bin/sh shipped with SunOS blows up while running configure.
707     You can work around this by installalling bash or zsh.  If you
708     have bash or zsh in your path, configure will use it instead
709     automatically.