diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-24 13:08:41 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-24 13:08:41 +0000 |
commit | c4ecd4e0552503c9bcb95205dfceef52334106ac (patch) | |
tree | 6b48da204fd96d8bd67a3b7c24b59ce0171f77f9 /net/tightvnc/files | |
parent | ffc78fd4eac2db67141aca3b56ac242623fac4fc (diff) |
Notes
Diffstat (limited to 'net/tightvnc/files')
-rw-r--r-- | net/tightvnc/files/patch-Imakefile | 12 | ||||
-rw-r--r-- | net/tightvnc/files/patch-Xvnc::config::cf::vnclibs.def | 10 | ||||
-rw-r--r-- | net/tightvnc/files/patch-Xvnc::config::imake::imakemdep.h | 21 | ||||
-rw-r--r-- | net/tightvnc/files/patch-vncviewer::Imakefile | 15 |
4 files changed, 58 insertions, 0 deletions
diff --git a/net/tightvnc/files/patch-Imakefile b/net/tightvnc/files/patch-Imakefile new file mode 100644 index 000000000000..763d07c2d11b --- /dev/null +++ b/net/tightvnc/files/patch-Imakefile @@ -0,0 +1,12 @@ +--- Imakefile.orig Sat Nov 24 16:41:40 2001 ++++ Imakefile Sat Nov 24 16:42:20 2001 +@@ -9,8 +9,7 @@ + make all + @echo "" + @echo Built $(SUBDIRS). +- @echo 'To build Xvnc, do "cd Xvnc", followed by "make World"' +- @echo "" ++ (cd Xvnc ; make World) + + MakeSubdirs($(SUBDIRS)) + DependSubdirs($(SUBDIRS)) diff --git a/net/tightvnc/files/patch-Xvnc::config::cf::vnclibs.def b/net/tightvnc/files/patch-Xvnc::config::cf::vnclibs.def new file mode 100644 index 000000000000..5cb1c5ecbe36 --- /dev/null +++ b/net/tightvnc/files/patch-Xvnc::config::cf::vnclibs.def @@ -0,0 +1,10 @@ +--- Xvnc/config/cf/vnclibs.def.orig Tue Jan 30 05:24:14 2001 ++++ Xvnc/config/cf/vnclibs.def Sat Nov 24 17:16:47 2001 +@@ -5,5 +5,5 @@ + * and programs/Xserver/hw/vnc whenever you change this file. + */ + +-VNCLIBS = $(TOP)/../libvncauth/libvncauth.a /usr/lib/libjpeg.a +-VNCCPPFLAGS = -I$(TOP)/../include ++VNCLIBS = $(TOP)/../libvncauth/libvncauth.a %%LOCALBASE%%/lib/libjpeg.a ++VNCCPPFLAGS = -I$(TOP)/../include -I%%LOCALBASE%%/include diff --git a/net/tightvnc/files/patch-Xvnc::config::imake::imakemdep.h b/net/tightvnc/files/patch-Xvnc::config::imake::imakemdep.h new file mode 100644 index 000000000000..1aaeade24b1f --- /dev/null +++ b/net/tightvnc/files/patch-Xvnc::config::imake::imakemdep.h @@ -0,0 +1,21 @@ +--- Xvnc/config/imake/imakemdep.h.orig Sat Nov 24 16:43:07 2001 ++++ Xvnc/config/imake/imakemdep.h Sat Nov 24 16:44:48 2001 +@@ -225,6 +225,9 @@ + #ifdef hpux + #define USE_CC_E + #endif ++#if defined(__FreeBSD__) ++#define USE_CC_E ++#endif + #ifdef WIN32 + #define USE_CC_E + #define DEFAULT_CC "cl" +@@ -253,7 +256,7 @@ + #ifdef _CRAY + #define DEFAULT_CPP "/lib/pcpp" + #endif +-#if defined(__386BSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__) ++#if defined(__386BSD__) || defined(__NetBSD__) || defined(__OpenBSD__) + #define DEFAULT_CPP "/usr/libexec/cpp" + #endif + #if defined(__sgi) && defined(__ANSI_CPP__) diff --git a/net/tightvnc/files/patch-vncviewer::Imakefile b/net/tightvnc/files/patch-vncviewer::Imakefile new file mode 100644 index 000000000000..e12c76004766 --- /dev/null +++ b/net/tightvnc/files/patch-vncviewer::Imakefile @@ -0,0 +1,15 @@ +--- vncviewer/Imakefile.orig Sat Nov 24 16:30:55 2001 ++++ vncviewer/Imakefile Sat Nov 24 16:32:38 2001 +@@ -13,10 +13,10 @@ + DEFINES = -DMITSHM + #endif + +-INCLUDES = -I../include -I. -I/usr/include ++INCLUDES = -I../include -I. -I/usr/include -I%%LOCALBASE%%/include + VNCAUTH_LIB = ../libvncauth/libvncauth.a + ZLIB_LIB = /usr/lib/libz.a +-JPEG_LIB = /usr/lib/libjpeg.a ++JPEG_LIB = %%LOCALBASE%%/lib/libjpeg.a + + DEPLIBS = XawClientDepLibs $(VNCAUTH_LIB) $(ZLIB_LIB) $(JPEG_LIB) + LOCAL_LIBRARIES = XawClientLibs $(VNCAUTH_LIB) $(ZLIB_LIB) $(JPEG_LIB) |