diff options
author | Bill Fenner <fenner@FreeBSD.org> | 1997-11-17 06:31:01 +0000 |
---|---|---|
committer | Bill Fenner <fenner@FreeBSD.org> | 1997-11-17 06:31:01 +0000 |
commit | 5c8496e834bc7be9f5016f37b3cc8b6675a67a74 (patch) | |
tree | 5b6435b0e187425e3d962c2581779604dfb757b8 /www/vrweb/files | |
parent | Fix md5. The distfile must have changed again, since the md5 was (diff) |
A VRML browser.
PR: 3997
Submitted by: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
Notes
Notes:
svn path=/head/; revision=8675
Diffstat (limited to 'www/vrweb/files')
-rw-r--r-- | www/vrweb/files/patch-aa | 14 | ||||
-rw-r--r-- | www/vrweb/files/patch-ab | 12 |
2 files changed, 26 insertions, 0 deletions
diff --git a/www/vrweb/files/patch-aa b/www/vrweb/files/patch-aa new file mode 100644 index 000000000000..89fa63bf6429 --- /dev/null +++ b/www/vrweb/files/patch-aa @@ -0,0 +1,14 @@ +*** src/common/utils/unixsocket.C.orig Mon Jun 23 02:12:28 1997 +--- src/common/utils/unixsocket.C Mon Jun 23 02:17:04 1997 +*************** +*** 67,72 **** +--- 67,75 ---- + #if defined(BSDI) + # define DONT_HAVE_SENDFD + #endif ++ #if defined(FreeBSD) ++ # define DONT_HAVE_SENDFD ++ #endif + + #if ! (defined HAVE_SENDFD || defined DONT_HAVE_SENDFD) + #error SEND_FD diff --git a/www/vrweb/files/patch-ab b/www/vrweb/files/patch-ab new file mode 100644 index 000000000000..b7557a7ea16c --- /dev/null +++ b/www/vrweb/files/patch-ab @@ -0,0 +1,12 @@ +*** src/common/OS/directory.C.orig Mon Jun 23 02:29:52 1997 +--- src/common/OS/directory.C Mon Jun 23 02:31:27 1997 +*************** +*** 32,37 **** +--- 32,38 ---- + * includes <sys/dir.h>, which is silly because <sys/dir.h> + * needs <sys/types.h>. + */ ++ #include <machine/types.h> + #include "types.h" + #ifdef apollo + #include <sys/dir.h> |