From 1d609a5daa3fa1553111076561a1f800e462156d Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Fri, 15 Jun 2012 11:36:07 +0200 Subject: Fix compilation on NetBSD - undefined *TMPX paths Make sure file name defines exist on NetBSD. https://bugs.freedesktop.org/show_bug.cgi?id=50940 Signed-off-by: Alan Coopersmith --- sessreg.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sessreg.c') diff --git a/sessreg.c b/sessreg.c index 03c05b6..164cda8 100644 --- a/sessreg.c +++ b/sessreg.c @@ -99,6 +99,13 @@ static const char *wtmpx_file = NULL; static const char *utmpx_file = NULL; #endif #endif +#ifndef WTMPX_FILE +#define WTMPX_FILE _PATH_WTMPX +#endif +#ifndef UTMPX_FILE +#define UTMPX_FILE _PATH_UTMPX +#endif + static int utmp_none, wtmp_none; /* * BSD specific variables. To make life much easier for Xstartup/Xreset -- cgit v1.2.3