From: OBATA Akio Date: Mon, 16 Sep 2019 07:39:32 +0000 (+0900) Subject: util: fix to detect NetBSD properly X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ee42583830facd9f903f431891d0400cee963cf;p=mesa.git util: fix to detect NetBSD properly is required for NetBSD version detection, and __NetBSD__ must be used to detect even on older releases. Reviewed-by: Eric Engestrom Reviewed-by: Matt Turner --- diff --git a/src/util/u_process.c b/src/util/u_process.c index 371335303ec..b9328d58da4 100644 --- a/src/util/u_process.c +++ b/src/util/u_process.c @@ -87,8 +87,11 @@ __getProgramName() # if (__FreeBSD_version >= 440000) # define GET_PROGRAM_NAME() getprogname() # endif -#elif defined(__NetBSD__) && defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 106000100) -# define GET_PROGRAM_NAME() getprogname() +#elif defined(__NetBSD__) +# include +# if defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 106000100) +# define GET_PROGRAM_NAME() getprogname() +# endif #elif defined(__DragonFly__) # define GET_PROGRAM_NAME() getprogname() #elif defined(__APPLE__) @@ -123,7 +126,7 @@ __getProgramName() #endif #if !defined(GET_PROGRAM_NAME) -# if defined(__OpenBSD__) || defined(NetBSD) || defined(__UCLIBC__) || defined(ANDROID) +# if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__UCLIBC__) || defined(ANDROID) /* This is a hack. It's said to work on OpenBSD, NetBSD and GNU. * Rogelio M.Serrano Jr. reported it's also working with UCLIBC. It's * used as a last resort, if there is no documented facility available. */