Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (bcc5997c50c0c8053632ba4348983e557c2f6621)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (bcc5997c50c0c8053632ba4348983e557c2f6621)
  • Date: Tue, 4 Jan 2011 20:56:50 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

utils/procps/DETAILS | 1 +
utils/procps/HISTORY | 8 +++++++-
utils/procps/PRE_BUILD | 2 ++
utils/procps/version.patch | 11 +++++++++++
4 files changed, 21 insertions(+), 1 deletion(-)

New commits:
commit bcc5997c50c0c8053632ba4348983e557c2f6621
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

procps: fixed bug about some 'Unknown HZ value' warnings in new kernels

diff --git a/utils/procps/DETAILS b/utils/procps/DETAILS
index b96a3b4..543bdf8 100755
--- a/utils/procps/DETAILS
+++ b/utils/procps/DETAILS
@@ -1,5 +1,6 @@
SPELL=procps
VERSION=3.2.8
+ PATCHLEVEL=1

SOURCE_HASH=sha512:00db8da277fec58fa603ff95e3c5a9e4efc6d8d4a705b20f08a08048b213a585197b2cb48ec6a25941c02d54212059bc02e8946d5801c0b9afa83a8bb88ddf64
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/utils/procps/HISTORY b/utils/procps/HISTORY
index 395726e..d964287 100644
--- a/utils/procps/HISTORY
+++ b/utils/procps/HISTORY
@@ -1,3 +1,9 @@
+2011-01-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * PRE_BUILD: apply the patch
+ * version.patch: added, to fix the warnings on new kernels
+ ("Unknown HZ value!")
+
2010-10-06 Eric Sandall <sandalle AT sourcemage.org>
* PRE_BUILD: Apply make.patch
* make.patch: Fix overzealous make 3.82 syntax
@@ -22,7 +28,7 @@
2006-12-19 David Kowis <dkowis AT shlrm.org>
* BUILD: removed -ffast-math from the Makefile
Thanks to ruskie, sqweek for their assistance in tracking this down
- fixes bug 13338
+ fixes bug 13338

2006-06-28 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Removed BUILD_API=2, set grimoire-wide
diff --git a/utils/procps/PRE_BUILD b/utils/procps/PRE_BUILD
index 5387f93..d9a3547 100755
--- a/utils/procps/PRE_BUILD
+++ b/utils/procps/PRE_BUILD
@@ -1,6 +1,8 @@
default_pre_build &&
cd ${SOURCE_DIRECTORY} &&

+patch -p0 < "$SPELL_DIRECTORY/version.patch" &&
+
message "${MESSAGE_COLOR}Patching for make 3.82 syntax...${DEFAULT_COLOR}" &&
patch "$SOURCE_DIRECTORY"/Makefile \
"$SPELL_DIRECTORY"/make.patch &&
diff --git a/utils/procps/version.patch b/utils/procps/version.patch
new file mode 100644
index 0000000..8a5b450
--- /dev/null
+++ b/utils/procps/version.patch
@@ -0,0 +1,11 @@
+--- proc/version.c.orig
++++ proc/version.c
+@@ -33,7 +33,7 @@ void display_version(void) {
+
+ int linux_version_code;
+
+-static void init_Linux_version(void) __attribute__((constructor));
++static void init_Linux_version(void) __attribute__((constructor(100)));
+ static void init_Linux_version(void) {
+ static struct utsname uts;
+ int x = 0, y = 0, z = 0; /* cleared in case sscanf() < 3 */



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (bcc5997c50c0c8053632ba4348983e557c2f6621), Vlad Glagolev, 01/04/2011

Archive powered by MHonArc 2.6.24.

Top of Page