aboutsummaryrefslogtreecommitdiffstats
path: root/astro/openuniverse/files
diff options
context:
space:
mode:
authorwill <will@FreeBSD.org>2000-08-26 09:48:53 +0800
committerwill <will@FreeBSD.org>2000-08-26 09:48:53 +0800
commitbb34c5b37a7b29bb2a482e9bb3dc21a24676a7bb (patch)
tree527378494e62b1bc27066a56023e8baa8a5dcd3d /astro/openuniverse/files
parent932a724ab7089bf7386182798507540ba493d444 (diff)
downloadfreebsd-ports-gnome-bb34c5b37a7b29bb2a482e9bb3dc21a24676a7bb.tar.gz
freebsd-ports-gnome-bb34c5b37a7b29bb2a482e9bb3dc21a24676a7bb.tar.zst
freebsd-ports-gnome-bb34c5b37a7b29bb2a482e9bb3dc21a24676a7bb.zip
Rename ssystem to openuniverse after repository copy. Update to
openuniverse 1.0beta3. PR: 19176 Submitted by: Trevor Johnson <trevor@jpj.net>
Diffstat (limited to 'astro/openuniverse/files')
-rw-r--r--astro/openuniverse/files/patch-a12
-rw-r--r--astro/openuniverse/files/patch-b50
2 files changed, 62 insertions, 0 deletions
diff --git a/astro/openuniverse/files/patch-a b/astro/openuniverse/files/patch-a
new file mode 100644
index 000000000000..76b6ad6ad7f1
--- /dev/null
+++ b/astro/openuniverse/files/patch-a
@@ -0,0 +1,12 @@
+diff -ruN src/ou.cpp.orig src/ou.cpp
+--- src/ou.cpp.orig Sun Jun 4 21:29:29 2000
++++ src/ou.cpp Sat Jun 10 07:37:23 2000
+@@ -22,7 +22,7 @@
+ #include <string.h>
+ #include <math.h>
+ #include <time.h>
+-#include <sys/timeb.h>
++#include "timeb.h"
+ #include <setjmp.h>
+ #include "ou.h"
+ #include "gui.h"
diff --git a/astro/openuniverse/files/patch-b b/astro/openuniverse/files/patch-b
new file mode 100644
index 000000000000..f87af09f7600
--- /dev/null
+++ b/astro/openuniverse/files/patch-b
@@ -0,0 +1,50 @@
+diff -ruN src/timeb.h.orig src/timeb.h
+--- src/timeb.h.orig Thu Jan 1 00:00:00 1970
++++ src/timeb.h Sat Jun 10 07:37:45 2000
+@@ -0,0 +1,46 @@
++/* Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
++ This file is part of the GNU C Library.
++
++ The GNU C Library is free software; you can redistribute it and/or
++ modify it under the terms of the GNU Library General Public License as
++ published by the Free Software Foundation; either version 2 of the
++ License, or (at your option) any later version.
++
++ The GNU C Library is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
++ Library General Public License for more details.
++
++ You should have received a copy of the GNU Library General Public
++ License along with the GNU C Library; see the file COPYING.LIB. If not,
++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
++ Boston, MA 02111-1307, USA. */
++
++#ifndef _SYS_TIMEB_H
++#define _SYS_TIMEB_H 1
++
++//#include <features.h>
++
++#define __need_time_t
++#include <time.h>
++
++
++__BEGIN_DECLS
++
++/* Structure returned by the `ftime' function. */
++
++struct timeb
++ {
++ time_t time; /* Seconds since epoch, as from `time'. */
++ unsigned short int millitm; /* Additional milliseconds. */
++ short int timezone; /* Minutes west of GMT. */
++ short int dstflag; /* Nonzero if Daylight Savings Time used. */
++ };
++
++/* Fill in TIMEBUF with information about the current time. */
++
++extern int ftime __P ((struct timeb *__timebuf));
++
++__END_DECLS
++
++#endif /* sys/timeb.h */