]> git.pld-linux.org Git - packages/util-linux.git/commitdiff
- outdated
authorJan Rękorajski <baggins@pld-linux.org>
Thu, 22 Mar 2007 23:15:43 +0000 (23:15 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    util-linux-as_needed-fix.patch -> 1.2
    util-linux-page.patch -> 1.2
    util-linux-posixsh.patch -> 1.3

util-linux-as_needed-fix.patch [deleted file]
util-linux-page.patch [deleted file]
util-linux-posixsh.patch [deleted file]

diff --git a/util-linux-as_needed-fix.patch b/util-linux-as_needed-fix.patch
deleted file mode 100644 (file)
index 8ddfb22..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nur util-linux-2.12r/configure util-linux-2.12r.as_needed-fix/configure
---- util-linux-2.12r/configure 2006-08-02 02:46:38.000000000 +0200
-+++ util-linux-2.12r.as_needed-fix/configure   2006-08-02 02:46:40.000000000 +0200
-@@ -445,7 +445,7 @@
-       echo "HAVE_NCURSES=no" >> make_include
-       echo "You don't have ncurses - I will not make ul and setterm."
- else
--      echo "LIBCURSES=-lncurses" >> make_include
-+      echo "LIBCURSES=-lncurses -ltinfo" >> make_include
-       echo "#define HAVE_ncurses" >> defines.h
- fi
diff --git a/util-linux-page.patch b/util-linux-page.patch
deleted file mode 100644 (file)
index 4bc03ad..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-diff -ur util-linux-2.12q.org/disk-utils/fsck.cramfs.c util-linux-2.12q/disk-utils/fsck.cramfs.c
---- util-linux-2.12q.org/disk-utils/fsck.cramfs.c      2004-12-11 15:53:16.000000000 +0100
-+++ util-linux-2.12q/disk-utils/fsck.cramfs.c  2005-02-27 20:03:09.000000000 +0100
-@@ -77,15 +77,7 @@
- #define PAD_SIZE 512
- #include <asm/page.h>
--#ifdef PAGE_SIZE
- #define PAGE_CACHE_SIZE ((int) PAGE_SIZE)
--#elif defined __ia64__
--#define PAGE_CACHE_SIZE (16384)
--#elif defined __alpha__
--#define PAGE_CACHE_SIZE (8192)
--#else
--#define PAGE_CACHE_SIZE (4096)
--#endif
- /* Guarantee access to at least 8kB at a time */
- #define ROMBUFFER_BITS        13
-@@ -95,11 +87,21 @@
- static unsigned long read_buffer_block = ~0UL;
- /* Uncompressing data structures... */
--static char outbuffer[PAGE_CACHE_SIZE*2];
-+static char *outbuffer;
- z_stream stream;
- #endif /* INCLUDE_FS_TESTS */
-+static void init_statics(void)
-+{
-+#ifdef INCLUDE_FS_TESTS
-+      if ((outbuffer = malloc (PAGE_CACHE_SIZE*2)) == NULL) {
-+              fprintf (stderr, _("Cannot allocate space for decompression buffer\n"));
-+              exit(8);
-+      }
-+#endif
-+}
-+                  
- /* Input status of 0 to print help and exit without an error. */
- static void usage(int status)
- {
-@@ -464,6 +466,8 @@
-       int c;                  /* for getopt */
-       int start = 0;
-+      init_statics();
-+
-       if (argc)
-               progname = argv[0];
diff --git a/util-linux-posixsh.patch b/util-linux-posixsh.patch
deleted file mode 100644 (file)
index 8118ccd..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- util-linux-2.11t/configure.wiget   Tue Jul  9 12:43:58 2002
-+++ util-linux-2.11t/configure Tue Jul  9 12:46:47 2002
-@@ -494,7 +494,7 @@
- # Many Linux systems do not have "which". Maybe "env" can be used.
- # Writing /usr/bin/xgettext is no good: one may have xgettext elsewhere.
- #
--if (test $MAY_ENABLE_NLS = yes && type xgettext > /dev/null 2>&1); then
-+if (test $MAY_ENABLE_NLS = yes && test -x /usr/bin/xgettext > /dev/null 2>&1); then
-       msg=`xgettext --foreign-user 2>&1 | grep unrecognized`
-       if test -n "$msg"; then
-               echo "FOREIGN = " >> make_include
This page took 0.041603 seconds and 4 git commands to generate.