pkgsrc/net/vncviewer/patches/patch-aa
hubertf b4a89d37ad Make this work on Solaris, which has no ComplexProgramTargetNoMan()
function for Imakefiles, only ComplexProgramTarget().

Bump pkg revision to vncviewer-3.3.3.2nb2
2005-07-13 13:47:57 +00:00

23 lines
641 B
Text

$NetBSD: patch-aa,v 1.3 2005/07/13 13:47:57 hubertf Exp $
--- vncviewer/Imakefile.orig 2005-07-13 15:26:57.329207000 +0200
+++ vncviewer/Imakefile
@@ -8,9 +8,7 @@ CDEBUGFLAGS = -O2
XCOMM Shared memory support works OK on x86 linux, not tested elsewhere but
XCOMM seems to cause problems on Digital Unix.
-#if defined(i386Architecture) && defined(LinuxArchitecture)
DEFINES = -DMITSHM
-#endif
INCLUDES = -I../include -I.
VNCAUTH_LIB = ../libvncauth/libvncauth.a
@@ -36,4 +34,8 @@ SRCS = \
OBJS = $(SRCS:.c=.o)
+#if !defined(SunArchitecture)
+ComplexProgramTargetNoMan(vncviewer)
+#else
ComplexProgramTarget(vncviewer)
+#endif