diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/config.h.in | 7 | ||||
-rw-r--r-- | source3/include/proto.h | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/source3/include/config.h.in b/source3/include/config.h.in index 0da717ac42..732798ac24 100644 --- a/source3/include/config.h.in +++ b/source3/include/config.h.in @@ -140,6 +140,7 @@ #undef HAVE_SETRESUID_DECL #undef HAVE_SETRESUID #undef WITH_NETATALK +#undef WITH_UTMP #undef HAVE_INO64_T #undef HAVE_STRUCT_FLOCK64 #undef SIZEOF_INO_T @@ -870,6 +871,12 @@ /* Define if you have the <utime.h> header file. */ #undef HAVE_UTIME_H +/* Define if you have the <utmp.h> header file. */ +#undef HAVE_UTMP_H + +/* Define if you have the <utmpx.h> header file. */ +#undef HAVE_UTMPX_H + /* Define if you have the cups library (-lcups). */ #undef HAVE_LIBCUPS diff --git a/source3/include/proto.h b/source3/include/proto.h index 2db1f3ed02..7db9cbc043 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1127,6 +1127,7 @@ char *lp_smb_passwd_file(void); char *lp_serverstring(void); char *lp_printcapname(void); char *lp_lockdir(void); +char *lp_utmpdir(void); char *lp_rootdir(void); char *lp_defaultservice(void); char *lp_msg_command(void); @@ -1300,6 +1301,7 @@ BOOL lp_map_hidden(int ); BOOL lp_map_archive(int ); BOOL lp_locking(int ); BOOL lp_strict_locking(int ); +BOOL lp_utmp(int ); BOOL lp_share_modes(int ); BOOL lp_oplocks(int ); BOOL lp_level2_oplocks(int ); |