5148839dd5
using the standard protocol and various extensions including those used by TightVNC, UltraVNC, RealVNC and x11vnc providing for features such as dynamic screen resizing, server-side scaling, blocking input devices on the server, and low colour modes. Many of these can now be set from the popup menu. (and it's much faster than tightvnc-viewer). ok merdely, okan
25 lines
938 B
Plaintext
25 lines
938 B
Plaintext
$OpenBSD: patch-src_vnc_unixsrc_vncviewer_Imakefile,v 1.1.1.1 2008/05/21 22:04:27 sthen Exp $
|
|
--- src/vnc_unixsrc/vncviewer/Imakefile.orig Wed Mar 12 16:20:28 2003
|
|
+++ src/vnc_unixsrc/vncviewer/Imakefile Fri Nov 9 19:40:20 2007
|
|
@@ -10,17 +10,10 @@ XCOMM seems to cause problems on Digital Unix.
|
|
DEFINES = -DMITSHM
|
|
#endif
|
|
|
|
-ZLIB_INC = -I/usr/local/include
|
|
-JPEG_INC = -I/usr/local/include
|
|
-INCLUDES = -I../include -I. $(ZLIB_INC) $(JPEG_INC) -I/usr/include
|
|
+INCLUDES = -I../include -I. -I/usr/include -I${LOCALBASE}/include
|
|
VNCAUTH_LIB = ../libvncauth/libvncauth.a
|
|
-ZLIB_LIB = -L/usr/local/lib -lz
|
|
-#ifdef OSF1Architecture
|
|
-XCOMM Avoid linking with different libjpeg in /usr/shlib under Tru64.
|
|
-JPEG_LIB = /usr/local/lib/libjpeg.a
|
|
-#else
|
|
-JPEG_LIB = -L/usr/local/lib -ljpeg
|
|
-#endif
|
|
+ZLIB_LIB = -lz
|
|
+JPEG_LIB = -ljpeg
|
|
|
|
DEPLIBS = XawClientDepLibs $(VNCAUTH_LIB)
|
|
LOCAL_LIBRARIES = XawClientLibs $(VNCAUTH_LIB) $(ZLIB_LIB) $(JPEG_LIB)
|