1diff -ruN procps-3.2.6/Makefile procps-3.2.6.new/Makefile
2--- procps-3.2.6/Makefile 2005-10-30 07:27:04.000000000 +0100
3+++ procps-3.2.6.new/Makefile 2005-12-13 16:52:02.000000000 +0100
4@@ -43,7 +43,7 @@
5 usr/lib := $(DESTDIR)/usr/$(lib64)/
6 usr/include := $(DESTDIR)/usr/include/
7
8-#SKIP := $(bin)kill $(man1)kill.1
9+SKIP := $(bin)kill $(man1)kill.1 $(usr/bin)uptime $(man1)uptime.1
10
11 BINFILES := $(usr/bin)uptime $(usr/bin)tload $(usr/bin)free $(usr/bin)w \
12 $(usr/bin)top $(usr/bin)vmstat $(usr/bin)watch $(usr/bin)skill \
13@@ -127,26 +127,26 @@
14 # produce separate executables for ppc and ppc64, s390 and s390x,
15 # i386 and x86-64, mips and mips64, sparc and sparc64, and so on.
16 # Failure to do so will cause data corruption.
17-m64 := $(call check_gcc,-m64,$(call check_gcc,-mabi=64,))
18-ALL_CFLAGS += $(m64)
19+#m64 := $(call check_gcc,-m64,$(call check_gcc,-mabi=64,))
20+#ALL_CFLAGS += $(m64)
21
22-ALL_CFLAGS += $(call check_gcc,-Wdeclaration-after-statement,)
23-ALL_CFLAGS += $(call check_gcc,-Wpadded,)
24-ALL_CFLAGS += $(call check_gcc,-Wstrict-aliasing,)
25+#ALL_CFLAGS += $(call check_gcc,-Wdeclaration-after-statement,)
26+#ALL_CFLAGS += $(call check_gcc,-Wpadded,)
27+#ALL_CFLAGS += $(call check_gcc,-Wstrict-aliasing,)
28
29 # Adding -fno-gcse might be good for those files which
30 # use computed goto.
31 #ALL_CFLAGS += $(call check_gcc,-fno-gcse,)
32
33 # if not debugging, enable things that could confuse gdb
34-ifeq (,$(findstring -g,$(filter -g%,$(CFLAGS))))
35-ALL_CFLAGS += $(call check_gcc,-fweb,)
36-ALL_CFLAGS += $(call check_gcc,-frename-registers,)
37-ALL_CFLAGS += $(call check_gcc,-fomit-frame-pointer,)
38-endif
39+#ifeq (,$(findstring -g,$(filter -g%,$(CFLAGS))))
40+#ALL_CFLAGS += $(call check_gcc,-fweb,)
41+#ALL_CFLAGS += $(call check_gcc,-frename-registers,)
42+#ALL_CFLAGS += $(call check_gcc,-fomit-frame-pointer,)
43+#endif
44
45 # in case -O3 is enabled, avoid bloat
46-ALL_CFLAGS += $(call check_gcc,-fno-inline-functions,)
47+#ALL_CFLAGS += $(call check_gcc,-fno-inline-functions,)
48
49 endif
50 endif