* updated kmousetool (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / package / base / sysvinit / compile.patch.dietlibc
blob7998bd2e907202d9b8e916155c8c712332986d96
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # T2 SDE: package/.../sysvinit/compile.patch.dietlibc
5 # Copyright (C) 2004 - 2016 The T2 SDE Project
6 # Copyright (C) 1998 - 2004 ROCK Linux Project
7
8 # More information can be found in the files COPYING and README.
9
10 # This patch file is dual-licensed. It is available under the license the
11 # patched project is licensed under, as long as it is an OpenSource license
12 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
13 # of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 # --- T2-COPYRIGHT-NOTE-END ---
18 --- ./src/Makefile.orig Mon May  6 11:15:52 2002
19 +++ ./src/Makefile      Mon May  6 11:17:08 2002
20 @@ -23,10 +23,6 @@
21  INSTALL                = install -o $(BIN_OWNER) -g $(BIN_GROUP)
22  MANDIR         = /usr/share/man
24 -# Additional libs for Gnu Libc
25 -ifneq ($(wildcard /usr/lib/libcrypt.a),)
26 -LCRYPT         = -lcrypt
27 -endif
29  all:           $(PROGS)
31 @@ -46,7 +42,7 @@
32                 $(CC) $(LDFLAGS) -o $@ runlevel.o
34  sulogin:       sulogin.o
35 -               $(CC) $(LDFLAGS) $(STATIC) -o $@ sulogin.o $(LCRYPT)
36 +               $(CC) $(LDFLAGS) $(STATIC) -o $@ sulogin.o
38  wall:          dowall.o wall.o
39                 $(CC) $(LDFLAGS) -o $@ dowall.o wall.o
40 --- ./src/init.c.orig   Sun May  5 03:27:31 2002
41 +++ ./src/init.c        Sat May  4 18:11:40 2002
42 @@ -49,6 +49,8 @@
43  #include <sys/syslog.h>
44  #include <sys/time.h>
46 +#define UTMP_FILE _PATH_UTMP
48  #ifdef __i386__
49  #  if (__GLIBC__ >= 2)
50       /* GNU libc 2.x */
51 --- ./src/last.c.orig   Sun May  5 03:29:32 2002
52 +++ ./src/last.c        Sun May  5 03:04:26 2002
53 @@ -36,6 +36,8 @@
54  #include <arpa/inet.h>
55  #include "oldutmp.h"
57 +#define WTMP_FILE _PATH_WTMP
59  #ifndef SHUTDOWN_TIME
60  #  define SHUTDOWN_TIME 254
61  #endif
62 --- ./src/utmp.c.orig   Sun May  5 03:30:04 2002
63 +++ ./src/utmp.c        Sat May  4 18:12:39 2002
64 @@ -17,6 +17,8 @@
65  #include <fcntl.h>
66  #include <string.h>
67  #include <utmp.h>
68 +#define UTMP_FILE _PATH_UTMP
69 +#define WTMP_FILE _PATH_WTMP
71  #include "init.h"
72  #include "initreq.h"
73 --- sysvinit-2.85/src/ifdown.c.orig     2003-09-20 04:47:44.000000000 +0200
74 +++ sysvinit-2.85/src/ifdown.c  2003-09-20 04:47:54.000000000 +0200
75 @@ -14,7 +14,7 @@
76  #include <sys/ioctl.h>
77  #include <sys/socket.h>
78  #include <sys/time.h>
79 -#include <sys/errno.h>
80 +#include <errno.h>
82  #include <net/if.h>
83  #include <netinet/in.h>
84 --- sysvinit-2.85/src/last.c.orig       2003-09-20 04:51:58.000000000 +0200
85 +++ sysvinit-2.85/src/last.c    2003-09-20 04:52:09.000000000 +0200
86 @@ -19,7 +19,7 @@
88  #include <sys/types.h>
89  #include <sys/stat.h>
90 -#include <sys/fcntl.h>
91 +#include <fcntl.h>
92  #include <time.h>
93  #include <stdio.h>
94  #include <ctype.h>