]> granicus.if.org Git - graphviz/commitdiff
Remove `#ifdef _UWIN` block with hard path include
authorErwin Janssen <erwinjanssen@outlook.com>
Thu, 9 Feb 2017 06:57:08 +0000 (07:57 +0100)
committerErwin Janssen <erwinjanssen@outlook.com>
Mon, 6 Mar 2017 10:12:55 +0000 (11:12 +0100)
The header globals.h had an `#ifdef _UWIN` block at the top. This block
had an include with a hard path, which is a bad idea. Since it has
been 12 years since this block has been modified an UWIN isn't used in
the current build, we remove this block.

lib/common/globals.h

index 0c7c931ddac69e98565feea3245e6f4ed80d4645..7cbdd93856873af7c1ef985c080ea94ee4659204 100644 (file)
 #ifndef GLOBALS_H
 #define GLOBALS_H
 
-#ifdef _UWIN
-#ifndef _POSIX_                        /* ncc doesn't define _POSIX_ */
-/* i.e. if this is the win32 build using nmake with CC=ncc (native C) */
-/* this was the easiest way to get some simple libc interfaces. */
-#include "C:\Program Files\UWIN\usr\include\astwin32.h"
-#undef _UWIN                   /* don't assume ANY _UWIN features in the execution environment */
-#endif                         /* _POSIX_ */
-#endif                         /* _UWIN */
-
 #ifdef __cplusplus
 extern "C" {
 #endif