From 9039a573e839b8e3535001da1cd6bc7ff0482f83 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 7 Dec 2012 19:03:50 +0000 Subject: [PATCH] Provide a fallback definition of HOST_NAME_MAX, in case one isn't provided in the system headers along with the definition of gethostname(). git-svn-id: svn://svn.tartarus.org/sgt/agedu@9721 cda61777-01e9-0310-a592-d414129be87e --- agedu.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/agedu.h b/agedu.h index b0052f0..ec035d4 100644 --- a/agedu.h +++ b/agedu.h @@ -92,6 +92,12 @@ # include #endif +#ifndef HOST_NAME_MAX +/* Reportedly at least one Solaris fails to comply with its POSIX + * requirement to define this (see POSIX spec for gethostname) */ +#define HOST_NAME_MAX 255 /* upper bound specified in SUS */ +#endif + #define PNAME "agedu" #define DUMPHDR "agedu dump file. pathsep=" -- 2.11.0