blob: be4359465518f87f04f061a3ef16894682f8ce7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
diff -ur clockspeed-0.62.orig/conf-cc clockspeed-0.62/conf-cc
--- clockspeed-0.62.orig/conf-cc Tue Oct 13 13:37:49 1998
+++ clockspeed-0.62/conf-cc Thu Apr 19 19:55:16 2001
@@ -1,3 +1,3 @@
-gcc -O2
+gcc @CFLAGS@
This will be used to compile .c files.
diff -ur clockspeed-0.62.orig/conf-home clockspeed-0.62/conf-home
--- clockspeed-0.62.orig/conf-home Tue Oct 13 13:37:49 1998
+++ clockspeed-0.62/conf-home Thu Apr 19 19:55:00 2001
@@ -1,4 +1,4 @@
-/usr/local/clockspeed
+/usr
This is the clockspeed home directory. Programs will be installed in
.../bin.
diff -ur clockspeed-0.62.orig/conf-ld clockspeed-0.62/conf-ld
--- clockspeed-0.62.orig/conf-ld Tue Oct 13 13:37:49 1998
+++ clockspeed-0.62/conf-ld Thu Apr 19 19:54:54 2001
@@ -1,3 +1,3 @@
-gcc -s
+gcc @LDFLAGS@
This will be used to link .o files into an executable.
--- clockspeed-0.62/clockview.c~ Tue Oct 13 19:37:49 1998
+++ clockspeed-0.62/clockview.c Thu Apr 26 01:11:43 2001
@@ -1,5 +1,5 @@
#include <sys/types.h>
-#include <sys/time.h>
+#include <time.h>
#include "substdio.h"
#include "readwrite.h"
#include "strerr.h"
diff -ur clockspeed-0.62.orig/error.h clockspeed-0.62/error.h
--- clockspeed-0.62.orig/error.h 2003-03-10 14:41:55.000000000 +0000
+++ clockspeed-0.62/error.h 2003-03-10 14:45:09.000000000 +0000
@@ -1,7 +1,7 @@
#ifndef ERROR_H
#define ERROR_H
-extern int errno;
+#include <errno.h>
extern int error_intr;
extern int error_nomem;
diff -ur clockspeed-0.62.orig/leapsecs_read.c clockspeed-0.62/leapsecs_read.c
--- clockspeed-0.62.orig/leapsecs_read.c 2003-03-10 14:41:55.000000000 +0000
+++ clockspeed-0.62/leapsecs_read.c 2003-03-10 14:44:40.000000000 +0000
@@ -2,7 +2,6 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
-extern int errno;
#include "tai.h"
#include "leapsecs.h"
|