]> andersk Git - openssh.git/blame - defines.h
- (dtucker) [acconfig.h configure.ac includes.h servconf.c session.c]
[openssh.git] / defines.h
CommitLineData
e52ca1e5 1/*
2 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
76a8e733 25#ifndef _DEFINES_H
26#define _DEFINES_H
27
0b202697 28/* $Id$ */
29
41cb4569 30
ea1970a3 31/* Constants */
32
cb807f40 33#ifndef SHUT_RDWR
34enum
35{
36 SHUT_RD = 0, /* No more receptions. */
37 SHUT_WR, /* No more transmissions. */
38 SHUT_RDWR /* No more receptions or transmissions. */
39};
40# define SHUT_RD SHUT_RD
41# define SHUT_WR SHUT_WR
42# define SHUT_RDWR SHUT_RDWR
43#endif
44
18e92801 45#ifndef IPTOS_LOWDELAY
46# define IPTOS_LOWDELAY 0x10
47# define IPTOS_THROUGHPUT 0x08
48# define IPTOS_RELIABILITY 0x04
49# define IPTOS_LOWCOST 0x02
50# define IPTOS_MINCOST IPTOS_LOWCOST
51#endif /* IPTOS_LOWDELAY */
52
509b1f88 53#ifndef MAXPATHLEN
54# ifdef PATH_MAX
55# define MAXPATHLEN PATH_MAX
56# else /* PATH_MAX */
57# define MAXPATHLEN 64 /* Should be safe */
58# endif /* PATH_MAX */
59#endif /* MAXPATHLEN */
60
2b87da3b 61#ifndef STDIN_FILENO
729bfe59 62# define STDIN_FILENO 0
2b87da3b 63#endif
64#ifndef STDOUT_FILENO
729bfe59 65# define STDOUT_FILENO 1
2b87da3b 66#endif
67#ifndef STDERR_FILENO
729bfe59 68# define STDERR_FILENO 2
2b87da3b 69#endif
729bfe59 70
99286dc8 71#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
b81c369b 72#ifdef NGROUPS
73#define NGROUPS_MAX NGROUPS
74#else
99286dc8 75#define NGROUPS_MAX 0
1fc243d1 76#endif
b81c369b 77#endif
1fc243d1 78
f1c4659d 79#ifndef O_NONBLOCK /* Non Blocking Open */
2b87da3b 80# define O_NONBLOCK 00004
f1c4659d 81#endif
82
610e8ff5 83#ifndef S_ISDIR
729bfe59 84# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
610e8ff5 85#endif /* S_ISDIR */
86
aff51935 87#ifndef S_ISREG
729bfe59 88# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
89#endif /* S_ISREG */
90
610e8ff5 91#ifndef S_ISLNK
3743cc2f 92# define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
610e8ff5 93#endif /* S_ISLNK */
94
729bfe59 95#ifndef S_IXUSR
96# define S_IXUSR 0000100 /* execute/search permission, */
97# define S_IXGRP 0000010 /* execute/search permission, */
98# define S_IXOTH 0000001 /* execute/search permission, */
99# define _S_IWUSR 0000200 /* write permission, */
100# define S_IWUSR _S_IWUSR /* write permission, owner */
101# define S_IWGRP 0000020 /* write permission, group */
102# define S_IWOTH 0000002 /* write permission, other */
103# define S_IRUSR 0000400 /* read permission, owner */
104# define S_IRGRP 0000040 /* read permission, group */
105# define S_IROTH 0000004 /* read permission, other */
106# define S_IRWXU 0000700 /* read, write, execute */
107# define S_IRWXG 0000070 /* read, write, execute */
108# define S_IRWXO 0000007 /* read, write, execute */
109#endif /* S_IXUSR */
110
7b0737a4 111#if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
112#define MAP_ANON MAP_ANONYMOUS
113#endif
114
115#ifndef MAP_FAILED
116# define MAP_FAILED ((void *)-1)
117#endif
118
41cb4569 119/* *-*-nto-qnx doesn't define this constant in the system headers */
120#ifdef MISSING_NFDBITS
121# define NFDBITS (8 * sizeof(unsigned long))
122#endif
123
ddceb1c8 124/*
125SCO Open Server 3 has INADDR_LOOPBACK defined in rpc/rpc.h but
126including rpc/rpc.h breaks Solaris 6
127*/
128#ifndef INADDR_LOOPBACK
7f8e513b 129#define INADDR_LOOPBACK ((u_long)0x7f000001)
ddceb1c8 130#endif
131
ea1970a3 132/* Types */
133
cb807f40 134/* If sys/types.h does not supply intXX_t, supply them ourselves */
135/* (or die trying) */
14a9a859 136
30eac028 137
14a9a859 138#ifndef HAVE_U_INT
139typedef unsigned int u_int;
140#endif
141
cb807f40 142#ifndef HAVE_INTXX_T
976f7e19 143# if (SIZEOF_CHAR == 1)
144typedef char int8_t;
145# else
146# error "8 bit int type not found."
147# endif
cb807f40 148# if (SIZEOF_SHORT_INT == 2)
ea1970a3 149typedef short int int16_t;
cb807f40 150# else
ef51930f 151# ifdef _UNICOS
ddceb1c8 152# if (SIZEOF_SHORT_INT == 4)
153typedef short int16_t;
154# else
3d114925 155typedef long int16_t;
ddceb1c8 156# endif
3d114925 157# else
158# error "16 bit int type not found."
ef51930f 159# endif /* _UNICOS */
cb807f40 160# endif
161# if (SIZEOF_INT == 4)
ea1970a3 162typedef int int32_t;
cb807f40 163# else
ef51930f 164# ifdef _UNICOS
3d114925 165typedef long int32_t;
166# else
167# error "32 bit int type not found."
ef51930f 168# endif /* _UNICOS */
cb807f40 169# endif
cb807f40 170#endif
171
172/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
173#ifndef HAVE_U_INTXX_T
174# ifdef HAVE_UINTXX_T
976f7e19 175typedef uint8_t u_int8_t;
ea1970a3 176typedef uint16_t u_int16_t;
177typedef uint32_t u_int32_t;
76a8e733 178# define HAVE_U_INTXX_T 1
cb807f40 179# else
976f7e19 180# if (SIZEOF_CHAR == 1)
181typedef unsigned char u_int8_t;
182# else
183# error "8 bit int type not found."
184# endif
cb807f40 185# if (SIZEOF_SHORT_INT == 2)
ea1970a3 186typedef unsigned short int u_int16_t;
cb807f40 187# else
ef51930f 188# ifdef _UNICOS
ddceb1c8 189# if (SIZEOF_SHORT_INT == 4)
190typedef unsigned short u_int16_t;
191# else
3d114925 192typedef unsigned long u_int16_t;
ddceb1c8 193# endif
3d114925 194# else
195# error "16 bit int type not found."
196# endif
cb807f40 197# endif
198# if (SIZEOF_INT == 4)
ea1970a3 199typedef unsigned int u_int32_t;
cb807f40 200# else
ef51930f 201# ifdef _UNICOS
3d114925 202typedef unsigned long u_int32_t;
203# else
204# error "32 bit int type not found."
205# endif
cb807f40 206# endif
bd590612 207# endif
224cbdcc 208#define __BIT_TYPES_DEFINED__
bd590612 209#endif
210
211/* 64-bit types */
212#ifndef HAVE_INT64_T
213# if (SIZEOF_LONG_INT == 8)
214typedef long int int64_t;
215# else
216# if (SIZEOF_LONG_LONG_INT == 8)
217typedef long long int int64_t;
bd590612 218# endif
219# endif
220#endif
221#ifndef HAVE_U_INT64_T
222# if (SIZEOF_LONG_INT == 8)
223typedef unsigned long int u_int64_t;
224# else
225# if (SIZEOF_LONG_LONG_INT == 8)
ea1970a3 226typedef unsigned long long int u_int64_t;
cb807f40 227# endif
228# endif
229#endif
230
0362750e 231#ifndef HAVE_U_CHAR
232typedef unsigned char u_char;
233# define HAVE_U_CHAR
234#endif /* HAVE_U_CHAR */
235
7d3b91a6 236#ifndef SIZE_T_MAX
237#define SIZE_T_MAX ULONG_MAX
238#endif /* SIZE_T_MAX */
239
e3a93db0 240#ifndef HAVE_SIZE_T
241typedef unsigned int size_t;
a6ddc88b 242# define HAVE_SIZE_T
56b13279 243# define SIZE_T_MAX UINT_MAX
e3a93db0 244#endif /* HAVE_SIZE_T */
245
c04f75f1 246#ifndef HAVE_SSIZE_T
247typedef int ssize_t;
248# define HAVE_SSIZE_T
249#endif /* HAVE_SSIZE_T */
250
f1c4659d 251#ifndef HAVE_CLOCK_T
252typedef long clock_t;
253# define HAVE_CLOCK_T
4f771a33 254#endif /* HAVE_CLOCK_T */
f1c4659d 255
1c04b088 256#ifndef HAVE_SA_FAMILY_T
257typedef int sa_family_t;
258# define HAVE_SA_FAMILY_T
259#endif /* HAVE_SA_FAMILY_T */
260
729bfe59 261#ifndef HAVE_PID_T
262typedef int pid_t;
263# define HAVE_PID_T
264#endif /* HAVE_PID_T */
265
ddceb1c8 266#ifndef HAVE_SIG_ATOMIC_T
267typedef int sig_atomic_t;
268# define HAVE_SIG_ATOMIC_T
269#endif /* HAVE_SIG_ATOMIC_T */
270
729bfe59 271#ifndef HAVE_MODE_T
272typedef int mode_t;
273# define HAVE_MODE_T
274#endif /* HAVE_MODE_T */
275
48e671d5 276#if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
277# define ss_family __ss_family
278#endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
279
77bb0bca 280#ifndef HAVE_SYS_UN_H
281struct sockaddr_un {
282 short sun_family; /* AF_UNIX */
283 char sun_path[108]; /* path name (gag) */
284};
285#endif /* HAVE_SYS_UN_H */
286
287#if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
288#define _STRUCT_WINSIZE
289struct winsize {
290 unsigned short ws_row; /* rows, in characters */
291 unsigned short ws_col; /* columns, in character */
292 unsigned short ws_xpixel; /* horizontal size, pixels */
293 unsigned short ws_ypixel; /* vertical size, pixels */
294};
295#endif
296
41cb4569 297/* *-*-nto-qnx does not define this type in the system headers */
298#ifdef MISSING_FD_MASK
299 typedef unsigned long int fd_mask;
300#endif
301
ea1970a3 302/* Paths */
303
cb807f40 304#ifndef _PATH_BSHELL
305# define _PATH_BSHELL "/bin/sh"
306#endif
7cdb79d4 307#ifndef _PATH_CSHELL
308# define _PATH_CSHELL "/bin/csh"
309#endif
310#ifndef _PATH_SHELLS
311# define _PATH_SHELLS "/etc/shells"
312#endif
cb807f40 313
314#ifdef USER_PATH
315# ifdef _PATH_STDPATH
316# undef _PATH_STDPATH
317# endif
318# define _PATH_STDPATH USER_PATH
319#endif
320
321#ifndef _PATH_STDPATH
322# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
323#endif
324
95b99395 325#ifndef SUPERUSER_PATH
326# define SUPERUSER_PATH _PATH_STDPATH
327#endif
328
cb807f40 329#ifndef _PATH_DEVNULL
330# define _PATH_DEVNULL "/dev/null"
331#endif
332
c04f75f1 333#ifndef MAIL_DIRECTORY
334# define MAIL_DIRECTORY "/var/spool/mail"
335#endif
336
cb807f40 337#ifndef MAILDIR
338# define MAILDIR MAIL_DIRECTORY
339#endif
340
341#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
342# define _PATH_MAILDIR MAILDIR
343#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
344
2e73a022 345#ifndef _PATH_NOLOGIN
346# define _PATH_NOLOGIN "/etc/nologin"
347#endif
348
2f125ca1 349/* Define this to be the path of the xauth program. */
fef01705 350#ifdef XAUTH_PATH
351#define _PATH_XAUTH XAUTH_PATH
2f125ca1 352#endif /* XAUTH_PATH */
353
1d2a4613 354/* derived from XF4/xc/lib/dps/Xlibnet.h */
355#ifndef X_UNIX_PATH
5cbceb3f 356# ifdef __hpux
357# define X_UNIX_PATH "/var/spool/sockets/X11/%u"
358# else
359# define X_UNIX_PATH "/tmp/.X11-unix/X%u"
360# endif
1d2a4613 361#endif /* X_UNIX_PATH */
362#define _PATH_UNIX_X X_UNIX_PATH
363
bc79ed5c 364#ifndef _PATH_TTY
365# define _PATH_TTY "/dev/tty"
366#endif
367
ea1970a3 368/* Macros */
369
2e73a022 370#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
371# define HAVE_LOGIN_CAP
372#endif
373
cb807f40 374#ifndef MAX
375# define MAX(a,b) (((a)>(b))?(a):(b))
376# define MIN(a,b) (((a)<(b))?(a):(b))
377#endif
378
0ae4fe1d 379#ifndef roundup
380# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
381#endif
382
cb807f40 383#ifndef timersub
0ae4fe1d 384#define timersub(a, b, result) \
385 do { \
386 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
387 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
388 if ((result)->tv_usec < 0) { \
389 --(result)->tv_sec; \
390 (result)->tv_usec += 1000000; \
391 } \
cb807f40 392 } while (0)
393#endif
394
c7578bb6 395#ifndef TIMEVAL_TO_TIMESPEC
396#define TIMEVAL_TO_TIMESPEC(tv, ts) { \
397 (ts)->tv_sec = (tv)->tv_sec; \
398 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
399}
400#endif
401
402#ifndef TIMESPEC_TO_TIMEVAL
403#define TIMESPEC_TO_TIMEVAL(tv, ts) { \
404 (tv)->tv_sec = (ts)->tv_sec; \
405 (tv)->tv_usec = (ts)->tv_nsec / 1000; \
406}
407#endif
408
cb807f40 409#ifndef __P
410# define __P(x) x
411#endif
412
a8ed9fd9 413#if !defined(IN6_IS_ADDR_V4MAPPED)
414# define IN6_IS_ADDR_V4MAPPED(a) \
84afc958 415 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
416 (((u_int32_t *) (a))[2] == htonl (0xffff)))
a8ed9fd9 417#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
418
cb807f40 419#if !defined(__GNUC__) || (__GNUC__ < 2)
976f7e19 420# define __attribute__(x)
cb807f40 421#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
422
41cb4569 423/* *-*-nto-qnx doesn't define this macro in the system headers */
424#ifdef MISSING_HOWMANY
425# define howmany(x,y) (((x)+((y)-1))/(y))
426#endif
427
2805b943 428#ifndef OSSH_ALIGNBYTES
429#define OSSH_ALIGNBYTES (sizeof(int) - 1)
cfadc43b 430#endif
431#ifndef __CMSG_ALIGN
2805b943 432#define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
cfadc43b 433#endif
434
435/* Length of the contents of a control message of length len */
436#ifndef CMSG_LEN
437#define CMSG_LEN(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + (len))
438#endif
439
440/* Length of the space taken up by a padded control message of length len */
441#ifndef CMSG_SPACE
442#define CMSG_SPACE(len) (__CMSG_ALIGN(sizeof(struct cmsghdr)) + __CMSG_ALIGN(len))
443#endif
444
a814ba4d 445/* given pointer to struct cmsghdr, return pointer to data */
446#ifndef CMSG_DATA
447#define CMSG_DATA(cmsg) ((u_char *)(cmsg) + __CMSG_ALIGN(sizeof(struct cmsghdr)))
448#endif /* CMSG_DATA */
449
450/*
451 * RFC 2292 requires to check msg_controllen, in case that the kernel returns
452 * an empty list for some reasons.
453 */
454#ifndef CMSG_FIRSTHDR
455#define CMSG_FIRSTHDR(mhdr) \
456 ((mhdr)->msg_controllen >= sizeof(struct cmsghdr) ? \
457 (struct cmsghdr *)(mhdr)->msg_control : \
458 (struct cmsghdr *)NULL)
459#endif /* CMSG_FIRSTHDR */
460
461
ea1970a3 462/* Function replacement / compatibility hacks */
463
520b41b2 464#if !defined(HAVE_GETADDRINFO) && (defined(HAVE_OGETADDRINFO) || defined(HAVE_NGETADDRINFO))
465# define HAVE_GETADDRINFO
466#endif
467
7b0737a4 468#ifndef HAVE_GETOPT_OPTRESET
d76aa6fb 469# undef getopt
470# undef opterr
471# undef optind
472# undef optopt
473# undef optreset
474# undef optarg
475# define getopt(ac, av, o) BSDgetopt(ac, av, o)
476# define opterr BSDopterr
477# define optind BSDoptind
478# define optopt BSDoptopt
479# define optreset BSDoptreset
480# define optarg BSDoptarg
7b0737a4 481#endif
482
ea1970a3 483/* In older versions of libpam, pam_strerror takes a single argument */
484#ifdef HAVE_OLD_PAM
485# define PAM_STRERROR(a,b) pam_strerror((b))
486#else
487# define PAM_STRERROR(a,b) pam_strerror((a),(b))
488#endif
489
adeebd37 490#ifdef PAM_SUN_CODEBASE
491# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
492#else
493# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
494#endif
495
4c8ef3fb 496#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
497# undef HAVE_GETADDRINFO
488c06c8 498#endif
499#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
500# undef HAVE_FREEADDRINFO
501#endif
502#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
503# undef HAVE_GAI_STRERROR
504#endif
4c8ef3fb 505
c04f75f1 506#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
507# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
508#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
509
86c9e193 510#if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
3c62e7eb 511# define USE_VHANGUP
86c9e193 512#endif /* defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX) */
3c62e7eb 513
7f8f5e00 514#ifndef GETPGRP_VOID
515# define getpgrp() getpgrp(0)
516#endif
517
58389b85 518/* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */
519#if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f)
520# define OPENSSL_free(x) Free(x)
521#endif
522
d4d77d64 523#if !defined(HAVE___func__) && defined(HAVE___FUNCTION__)
524# define __func__ __FUNCTION__
525#elif !defined(HAVE___func__)
526# define __func__ ""
c921ee00 527#endif
528
749560dd 529#if defined(KRB5) && !defined(HEIMDAL)
530# define krb5_get_err_text(context,code) error_message(code)
531#endif
532
341c3efe 533/* Maximum number of file descriptors available */
534#ifdef HAVE_SYSCONF
535# define SSH_SYSFDMAX sysconf(_SC_OPEN_MAX)
536#else
537# define SSH_SYSFDMAX 10000
538#endif
539
540
2f125ca1 541/*
542 * Define this to use pipes instead of socketpairs for communicating with the
543 * client program. Socketpairs do not seem to work on all systems.
544 *
40d0f6b9 545 * configure.ac sets this for a few OS's which are known to have problems
2f125ca1 546 * but you may need to set it yourself
547 */
548/* #define USE_PIPES 1 */
549
1d7b9b20 550/**
551 ** login recorder definitions
552 **/
553
1d7b9b20 554/* FIXME: put default paths back in */
32eec038 555#ifndef UTMP_FILE
556# ifdef _PATH_UTMP
557# define UTMP_FILE _PATH_UTMP
558# else
559# ifdef CONF_UTMP_FILE
560# define UTMP_FILE CONF_UTMP_FILE
561# endif
562# endif
1d7b9b20 563#endif
32eec038 564#ifndef WTMP_FILE
565# ifdef _PATH_WTMP
566# define WTMP_FILE _PATH_WTMP
567# else
568# ifdef CONF_WTMP_FILE
569# define WTMP_FILE CONF_WTMP_FILE
570# endif
571# endif
1d7b9b20 572#endif
573/* pick up the user's location for lastlog if given */
32eec038 574#ifndef LASTLOG_FILE
575# ifdef _PATH_LASTLOG
576# define LASTLOG_FILE _PATH_LASTLOG
577# else
578# ifdef CONF_LASTLOG_FILE
579# define LASTLOG_FILE CONF_LASTLOG_FILE
580# endif
581# endif
d7c0f3d5 582#endif
1d7b9b20 583
584
585/* The login() library function in libutil is first choice */
586#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
587# define USE_LOGIN
588
589#else
590/* Simply select your favourite login types. */
591/* Can't do if-else because some systems use several... <sigh> */
592# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
593# define USE_UTMPX
594# endif
595# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
596# define USE_UTMP
597# endif
598# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
599# define USE_WTMPX
600# endif
601# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
602# define USE_WTMP
603# endif
604
605#endif
606
607/* I hope that the presence of LASTLOG_FILE is enough to detect this */
608#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
609# define USE_LASTLOG
610#endif
611
1d7b9b20 612/** end of login recorder definitions */
613
76a8e733 614#endif /* _DEFINES_H */
This page took 0.45474 seconds and 5 git commands to generate.