[BACK]Return to config.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Annotation of src/usr.bin/sudo/config.h, Revision 1.1

1.1     ! millert     1: /*     $OpenBSD$       */
        !             2:
        !             3: #ifndef _SUDO_CONFIG_H
        !             4: #define _SUDO_CONFIG_H
        !             5:
        !             6: /*
        !             7:  * configure --prefix=/usr --with-devel --with-insults --with-bsdauth \
        !             8:  *          --with-env-editor --disable-path-info --with-logfac=authpriv
        !             9:  */
        !            10:
        !            11: #define HAVE_ASPRINTF 1
        !            12: #define HAVE_BSD_AUTH_H 1
        !            13: #define HAVE_CLOSEFROM 1
        !            14: #define HAVE_DIRENT_H 1
        !            15: #define HAVE_ERR_H 1
        !            16: #define HAVE_FNMATCH 1
        !            17: #define HAVE_FREEIFADDRS 1
        !            18: #define HAVE_FSTAT 1
        !            19: #define HAVE_GETCWD 1
        !            20: #define HAVE_GETDOMAINNAME 1
        !            21: #define HAVE_GETIFADDRS 1
        !            22: #define HAVE_INITGROUPS 1
        !            23: #define HAVE_INNETGR 1
        !            24: #define HAVE_INTTYPES_H 1
        !            25: #define HAVE_ISBLANK 1
        !            26: #define HAVE_LOCKF 1
        !            27: #define HAVE_LOGIN_CAP_H 1
        !            28: #define HAVE_LONG_LONG 1
        !            29: #define HAVE_LSEARCH 1
        !            30: #define HAVE_MEMCHR 1
        !            31: #define HAVE_MEMCPY 1
        !            32: #define HAVE_MEMORY_H 1
        !            33: #define HAVE_MEMSET 1
        !            34: #define HAVE_NETGROUP_H 1
        !            35: #define HAVE_PATHS_H 1
        !            36: #define HAVE_SA_LEN 1
        !            37: #define HAVE_SETRESUID 1
        !            38: #define HAVE_SETRLIMIT 1
        !            39: #define HAVE_SIGACTION 1
        !            40: #define HAVE_SIG_ATOMIC_T 1
        !            41: #define HAVE_SNPRINTF 1
        !            42: #define HAVE_STDLIB_H 1
        !            43: #define HAVE_STRCASECMP 1
        !            44: #define HAVE_STRCHR 1
        !            45: #define HAVE_STRERROR 1
        !            46: #define HAVE_STRFTIME 1
        !            47: #define HAVE_STRING_H 1
        !            48: #define HAVE_STRLCAT 1
        !            49: #define HAVE_STRLCPY 1
        !            50: #define HAVE_STRRCHR 1
        !            51: #define HAVE_SYS_SELECT_H 1
        !            52: #define HAVE_SYS_STAT_H 1
        !            53: #define HAVE_SYS_TYPES_H 1
        !            54: #define HAVE_TERMIOS_H 1
        !            55: #define HAVE_TZSET 1
        !            56: #define HAVE_UNISTD_H 1
        !            57: #define HAVE_UTIME 1
        !            58: #define HAVE_UTIME_H 1
        !            59: #define HAVE_UTIME_POSIX 1
        !            60: #define HAVE_VASPRINTF 1
        !            61: #define HAVE_VSNPRINTF 1
        !            62: #define HAVE___PROGNAME 1
        !            63:
        !            64: #define CLASSIC_INSULTS 1
        !            65: #define CSOPS_INSULTS 1
        !            66: #define DONT_LEAK_PATH_INFO 1
        !            67: #define EDITOR _PATH_VI
        !            68: #define ENV_EDITOR 1
        !            69: #define INCORRECT_PASSWORD "Sorry, try again."
        !            70: #define LOGFAC "authpriv"
        !            71: #define LOGGING SLOG_SYSLOG
        !            72: #define MAILSUBJECT "*** SECURITY information for %h ***"
        !            73: #define MAILTO "root"
        !            74: #define MAXLOGFILELEN 80
        !            75: #define MAX_UID_T_LEN 10
        !            76: #define PASSPROMPT "Password:"
        !            77: #define PASSWORD_TIMEOUT 5
        !            78: #define PRI_FAILURE "alert"
        !            79: #define PRI_SUCCESS "notice"
        !            80: #define RETSIGTYPE void
        !            81: #define RUNAS_DEFAULT "root"
        !            82: #define SEND_MAIL_WHEN_NO_USER 1
        !            83: #define STDC_HEADERS 1
        !            84: #define SUDO_UMASK 0022
        !            85: #define        SUDOERS_UID 0
        !            86: #define        SUDOERS_GID 0
        !            87: #define        SUDOERS_MODE 0440
        !            88: #define TIMEOUT 5
        !            89: #define TRIES_FOR_PASSWORD 3
        !            90: #define USE_INSULTS 1
        !            91: #define VOID void
        !            92: #define WITHOUT_PASSWD 1
        !            93:
        !            94: #define sudo_waitpid(p, s, o)  waitpid(p, s, o)
        !            95: #define        stat_sudoers    lstat
        !            96: #define EXEC   execvp
        !            97:
        !            98: #endif /* _SUDO_CONFIG_H */