2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00
sudo/config.h.in

137 lines
3.4 KiB
C
Raw Normal View History

1994-03-12 18:57:27 +00:00
/*
* CU sudo version 1.3.1
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu
*/
1994-03-10 07:45:06 +00:00
/*
* config.h -- You shouldn't edit this by hand unless you are
* NOT using configure.
*/
/* Define if on AIX 3.
System headers sometimes define this.
We just want to avoid a redefinition error message. */
#ifndef _ALL_SOURCE
#undef _ALL_SOURCE
#endif
/* Define if on ConvexOs.
System headers sometimes define this.
We just want to avoid a redefinition error message. */
#ifndef _CONVEX_SOURCE
#undef _CONVEX_SOURCE
#endif
1994-05-14 21:56:57 +00:00
/* Define if on IRIX.
1994-05-28 19:12:06 +00:00
We want use BSD signals. */
#ifndef _BSD_SIGNALS
#undef _BSD_SIGNALS
1994-05-14 21:56:57 +00:00
#endif
1994-03-10 07:45:06 +00:00
/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t
/* Define to `int' if <sys/types.h> doesn't define. */
#undef gid_t
/* Define to `int' if <sys/types.h> doesn't define. */
#undef mode_t
/* Define to `unsigned' if <sys/types.h> doesn't define. */
#undef size_t
1994-05-28 19:12:06 +00:00
/* Define to be nil if C compiler doesn't support "const." */
#undef const
1994-03-10 07:45:06 +00:00
/* Define as the return type of signal handlers (int or void). */
#undef RETSIGTYPE
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
1994-05-29 19:18:32 +00:00
/* Define on System V Release 4 or Solaris 2.x. */
1994-03-10 07:45:06 +00:00
#undef SVR4
#if defined(SVR4) && !defined(__svr4__)
# define __svr4__
#endif /* SVR4 */
1994-06-06 20:56:40 +00:00
/* Define if you have POSIX signals. */
#undef HAVE_SIGACTION
#ifdef HAVE_SIGACTION
# define POSIX_SIGNALS
#endif /* HAVE_SIGACTION */
1994-06-06 00:02:49 +00:00
/* Define if you have realpath(3). */
#undef HAVE_REALPATH
1994-03-12 18:37:58 +00:00
/* Define if you have getcwd(3). */
1994-03-10 07:45:06 +00:00
#undef HAVE_GETCWD
1994-06-04 18:49:49 +00:00
/* Define if you have getwd(3). */
#undef HAVE_GETWD
1994-03-12 18:37:58 +00:00
/* Define if you have strdup(3). */
1994-03-10 07:45:06 +00:00
#undef HAVE_STRDUP
1994-03-12 18:37:58 +00:00
/* Define if you have strchr(3). */
#undef HAVE_STRCHR
#ifndef HAVE_STRCHR
# define strchr index
#endif
/* Define if you have strrchr(3). */
#undef HAVE_STRRCHR
#ifndef HAVE_STRRCHR
# define strrchr rindex
#endif
1994-06-06 23:31:51 +00:00
/* Define if you have bzero(3). */
#undef HAVE_BZERO
#ifndef HAVE_BZERO
# define bzero(S, N) (memset((void *)S, 0, N))
#endif
1994-05-24 00:26:19 +00:00
/* Define if you have sysconf(3c). */
#undef HAVE_SYSCONF
1994-03-10 07:45:06 +00:00
/* Define if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define if you have the <paths.h> header file. */
#undef HAVE_PATHS_H
/* Define if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define if you have the <strings.h> header file. */
1994-03-12 21:17:10 +00:00
#if !defined(__convex__) && !defined(convex)
1994-03-10 07:45:06 +00:00
#undef HAVE_STRINGS_H
1994-03-12 21:17:10 +00:00
#endif /* convex */
1994-03-10 07:45:06 +00:00
/* Define if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
1994-03-12 18:37:58 +00:00
/* Define if you have the <termio.h> header file. */
#undef HAVE_TERMIO_H
/* Define if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H
1994-05-29 00:28:57 +00:00
/* Define if you have the -lshadow library. */
#undef HAVE_LIBSHADOW