Hi,

Attached is the diff for my shaperd 0.2.1-5.1 NMU.
diff -u shaperd-0.2.1/debian/changelog shaperd-0.2.1/debian/changelog
--- shaperd-0.2.1/debian/changelog
+++ shaperd-0.2.1/debian/changelog
@@ -1,3 +1,12 @@
+shaperd (0.2.1-5.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Urgency set to high for RC bug fix.
+  * Fix FTBFS as UTS_RELEASE is not exported anymore by linux-libc-dev
+    (closes: 428994).
+
+ -- Pierre Habouzit <[EMAIL PROTECTED]>  Wed, 18 Jul 2007 16:07:09 +0200
+
 shaperd (0.2.1-5) unstable; urgency=low
 
   * gcc-3.4 compliance (closes: #259826)
only in patch2:
unchanged:
--- shaperd-0.2.1.orig/src/main.cpp
+++ shaperd-0.2.1/src/main.cpp
@@ -597,7 +597,10 @@
        printf("version %s\n", VERSION_STR);
        printf("built %s, %s; %s %s\n",
                str_divert, str_ipq,  __DATE__, __TIME__);
-       printf("Compiled against: %s\n", UTS_RELEASE);
+        printf("Compiled against: linux-%d.%d.%d\n",
+               (LINUX_VERSION_CODE >> 16) & 0xff,
+               (LINUX_VERSION_CODE >>  8) & 0xff,
+               (LINUX_VERSION_CODE >>  0) & 0xff);
        printf("GNU CC: %s\n", __VERSION__);
 
        exit(0);

Attachment: pgp4oORGEcgyJ.pgp
Description: PGP signature



Reply via email to