1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Fix linage breakage. DDD author made a workaround for Motif 2.1 on

Solaris, but it seems to have broken building with Motif 2.1 on most every
other platform.
This commit is contained in:
David E. O'Brien 1999-05-09 00:27:55 +00:00
parent d460029ab2
commit 90b026f916
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18616

11
devel/ddd/files/patch-02 Normal file
View File

@ -0,0 +1,11 @@
--- ddd/InitImage.C.orig Sun Mar 14 07:58:12 1999
+++ ddd/InitImage.C Sat May 8 17:09:05 1999
@@ -221,7 +221,7 @@
// arguements. If I simply change the three calls to
// XmInstallImage to Xm21InstallImage, the problem is solved.
-#if XmVersion >= 2001
+#if XmVersion >= 2001 && defined(sun)
return Xm21InstallImage(image, image_name);
#else
return XmInstallImage(image, image_name);