summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-13 17:54:47 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-13 18:04:06 -0800
commit84f62d9c2a37366661332b8218c842f5af98356d (patch)
tree7727a821ef6b6e64f35196f9031b355b3f4ac7d2
parentbce0fc281e883f4ffa53e47cd5fa96ea04ea4227 (diff)
unifdef __UNIXOS2__
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/Vendor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Vendor.c b/src/Vendor.c
index 234d37f..67370a1 100644
--- a/src/Vendor.c
+++ b/src/Vendor.c
@@ -204,7 +204,7 @@ externaldef(vendorshellclassrec) VendorShellClassRec vendorShellClassRec = {
}
};
-#if !defined(__UNIXOS2__) && !defined(__APPLE__)
+#if !defined(__APPLE__)
externaldef(vendorshellwidgetclass) WidgetClass vendorShellWidgetClass =
(WidgetClass) (&vendorShellClassRec);
#endif
@@ -348,7 +348,7 @@ XawVendorShellClassPartInit(WidgetClass cclass)
}
}
-#if defined(__UNIXOS2__) || defined(__CYGWIN__) || defined(__MINGW32__) || defined(__APPLE__)
+#if defined(__CYGWIN__) || defined(__MINGW32__) || defined(__APPLE__)
/* shared libraries on these platforms have the wrong semantics */
/* symbols do not get resolved external to the shared library */
void _XawFixupVendorShell()