diff options
author | steve <steve@FreeBSD.org> | 2000-01-24 04:51:34 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-01-24 04:51:34 +0000 |
commit | 34d235fd6e784cc3c52f3d399c2c157527a395ed (patch) | |
tree | 4ab1d2f348403aa00f28ebcd66ae05cea3231852 /astro | |
parent | 6fb38ea0477b61f5fe818daa63cd412e63d17685 (diff) | |
download | FreeBSD-ports-34d235fd6e784cc3c52f3d399c2c157527a395ed.zip FreeBSD-ports-34d235fd6e784cc3c52f3d399c2c157527a395ed.tar.gz |
Fix build for FreeBSD/alpha.
Diffstat (limited to 'astro')
-rw-r--r-- | astro/saoimage/files/patch-aa | 13 | ||||
-rw-r--r-- | astro/saoimage/files/patch-ad | 11 | ||||
-rw-r--r-- | astro/saoimage/files/patch-ae | 11 |
3 files changed, 33 insertions, 2 deletions
diff --git a/astro/saoimage/files/patch-aa b/astro/saoimage/files/patch-aa index 4db4aa7..b418a4e 100644 --- a/astro/saoimage/files/patch-aa +++ b/astro/saoimage/files/patch-aa @@ -1,5 +1,5 @@ ---- makefile.FreeBSD.orig Fri Nov 5 22:57:30 1999 -+++ makefile.FreeBSD Sun Dec 19 14:55:37 1999 +--- makefile.FreeBSD.orig Fri Nov 5 15:57:30 1999 ++++ makefile.FreeBSD Sun Jan 16 23:43:10 2000 @@ -36,9 +36,9 @@ # FBCONFIG_2, which is set to the value of IMTOOLRC in the definition of # the CFLAGS macro below.) @@ -13,3 +13,12 @@ IMTOOLRC = $(IMTRCDIR)imtoolrc FIFO_I = $(ROOT)/dev/imt1i +@@ -76,7 +76,7 @@ + # OFLAGS: compiler optimization/debug options. + + #OFLAGS = -g -DDEBUG +-OFLAGS = -O2 -m486 -pipe ++OFLAGS = -O2 -pipe + + # ADFLAGS: architecture-dependent floating point flags, etc. + diff --git a/astro/saoimage/files/patch-ad b/astro/saoimage/files/patch-ad new file mode 100644 index 0000000..159f958 --- /dev/null +++ b/astro/saoimage/files/patch-ad @@ -0,0 +1,11 @@ +--- disppsct.c.orig Sun Jan 16 23:45:17 2000 ++++ disppsct.c Sun Jan 16 23:53:18 2000 +@@ -598,7 +598,7 @@ + char *getenv(); + #endif + +-#ifdef SUN ++#if defined(SUN) && !defined(__FreeBSD__) + long time(); /* should be in time.h, but not in SunOS */ + #endif + long clock; diff --git a/astro/saoimage/files/patch-ae b/astro/saoimage/files/patch-ae new file mode 100644 index 0000000..6ea9d65 --- /dev/null +++ b/astro/saoimage/files/patch-ae @@ -0,0 +1,11 @@ +--- rgnwrite.c.orig Sun Jan 16 23:54:54 2000 ++++ rgnwrite.c Sun Jan 16 23:55:51 2000 +@@ -183,7 +183,7 @@ + #ifdef LONG64 + int time(); + #else +-#ifndef VMS ++#if !defined(VMS) && !defined(__FreeBSD__) + long time(); + #else + time_t time(); |