From cdc729d63d20acb2efdc90e8adc333a65d69a56b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Tue, 28 Jan 1997 20:06:34 +0100 Subject: [PATCH] Added #undef's for passwords and syslog. Rev: src/modules/system/system_machine.h.in:1.4 --- src/modules/system/system_machine.h.in | 38 +++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/src/modules/system/system_machine.h.in b/src/modules/system/system_machine.h.in index 07467f211d..cf1cb711d3 100644 --- a/src/modules/system/system_machine.h.in +++ b/src/modules/system/system_machine.h.in @@ -1,5 +1,5 @@ /* - * $Id: system_machine.h.in,v 1.3 1997/01/22 05:15:28 hubbe Exp $ + * $Id: system_machine.h.in,v 1.4 1997/01/28 19:06:34 grubba Exp $ * * System dependant definitions for the system module for Pike * @@ -43,12 +43,24 @@ /* Define if you have <stdarg.h> header file */ #undef HAVE_STDARG_H -/* Define if you have <varargs.h> header file */ -#undef HAVE_VARARGS_H - /* Define if you have <sys/utsname.h> header file */ #undef HAVE_SYS_UTSNAME_H +/* Define if you have <passwd.h> header file */ +#undef HAVE_PASSWD_H + +/* Define if you have <pwd.h> header file */ +#undef HAVE_PWD_H + +/* Define if you have <shadow.h> header file */ +#undef HAVE_SHADOW_H + +/* Define if you have <syslog.h> header file */ +#undef HAVE_SYSLOG_H + +/* Define if you have <sys/syslog.h> header file */ +#undef HAVE_SYS_SYSLOG_H + /* * System calls */ @@ -104,6 +116,24 @@ /* Define if you have h_addr_list in the hostent struct */ #undef HAVE_H_ADDR_LIST +/* Define if you have getpwnam() */ +#undef HAVE_GETPWNAM + +/* Define if you have getpwuid() */ +#undef HAVE_GETPWUID + +/* Define if you have setpwent() */ +#undef HAVE_SETPWENT + +/* Define if you have endpwent() */ +#undef HAVE_ENDPWENT + +/* Define if you have getpwent() */ +#undef HAVE_GETPWENT + +/* Define if you have syslog() */ +#undef HAVE_SYSLOG + #endif /* SYSTEM_MACHINE_H */ -- GitLab