]> granicus.if.org Git - graphviz/commitdiff
ps_font_equiv.h: remove unused 'DARWIN' branch
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 1 Sep 2021 14:56:20 +0000 (07:56 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 5 Sep 2021 16:57:50 +0000 (09:57 -0700)
The macro defined on macOS is `__APPLE__`, not `DARWIN`. The build system
conditionally defines `DARWIN`, but config.h is not included in this file so
that has no effect. The else case of this logic is the same as the `DARWIN` case
so removing this has no effect.

lib/common/ps_font_equiv.h

index acc8c0f174365eb757de906d62a6c27260e79e5a..a7a54e3f6bc3f810ec685cf50debba96fbf95e1e 100644 (file)
@@ -1,6 +1,4 @@
-#ifdef DARWIN
-#define TIMES "Times"
-#elif defined(_WIN32)
+#if defined(_WIN32)
 #define TIMES "Times New Roman"
 #else
 #define TIMES "Times"