grep 2.5.1: Fix for uclibc. Grep uses __mempcpy which glibc provides but
authorJamie Lenehan <lenehan@twibble.org>
Thu, 17 May 2007 04:15:09 +0000 (04:15 +0000)
committerJamie Lenehan <lenehan@twibble.org>
Thu, 17 May 2007 04:15:09 +0000 (04:15 +0000)
uclibc doesn't. Since both glibc and uclibc provide the mempcpy version use
that instead.

packages/grep/grep-2.5.1/.mtn2git_empty [new file with mode: 0644]
packages/grep/grep-2.5.1/uclibc-fix.patch [new file with mode: 0644]
packages/grep/grep-native_2.5.1.bb
packages/grep/grep_2.5.1.bb

diff --git a/packages/grep/grep-2.5.1/.mtn2git_empty b/packages/grep/grep-2.5.1/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/grep/grep-2.5.1/uclibc-fix.patch b/packages/grep/grep-2.5.1/uclibc-fix.patch
new file mode 100644 (file)
index 0000000..f67177f
--- /dev/null
@@ -0,0 +1,52 @@
+Fix to use mempcpy instead of __mempcpy. This is needed for uclibc which
+doesn't define __mempcpy only mempcpy. Since both uclibc and glibc have
+mempcpy we'll just use that instead.
+
+Index: grep-2.5.1/intl/localealias.c
+===================================================================
+--- grep-2.5.1.orig/intl/localealias.c 2002-03-14 00:39:06.000000000 +1100
++++ grep-2.5.1/intl/localealias.c      2007-05-17 13:53:58.000000000 +1000
+@@ -65,7 +65,7 @@
+ # define strcasecmp __strcasecmp
+ # ifndef mempcpy
+-#  define mempcpy __mempcpy
++#  error "mempcpy not detected"
+ # endif
+ # define HAVE_MEMPCPY 1
+ # define HAVE___FSETLOCKING   1
+Index: grep-2.5.1/lib/getopt.c
+===================================================================
+--- grep-2.5.1.orig/lib/getopt.c       2001-03-04 16:33:12.000000000 +1100
++++ grep-2.5.1/lib/getopt.c    2007-05-17 13:51:44.000000000 +1000
+@@ -326,7 +326,7 @@
+       nonoption_flags_len = nonoption_flags_max_len = 0;
+       else
+       {
+-        memset (__mempcpy (new_str, __getopt_nonoption_flags,
++        memset (mempcpy (new_str, __getopt_nonoption_flags,
+                            nonoption_flags_max_len),
+                 '\0', top + 1 - nonoption_flags_max_len);
+         nonoption_flags_max_len = top + 1;
+@@ -437,7 +437,7 @@
+             if (__getopt_nonoption_flags == NULL)
+               nonoption_flags_max_len = -1;
+             else
+-              memset (__mempcpy (__getopt_nonoption_flags, orig_str, len),
++              memset (mempcpy (__getopt_nonoption_flags, orig_str, len),
+                       '\0', nonoption_flags_max_len - len);
+           }
+       }
+Index: grep-2.5.1/lib/regex.c
+===================================================================
+--- grep-2.5.1.orig/lib/regex.c        2001-04-03 04:04:45.000000000 +1000
++++ grep-2.5.1/lib/regex.c     2007-05-17 13:51:48.000000000 +1000
+@@ -7842,7 +7842,7 @@
+       if (msg_size > errbuf_size)
+         {
+ #if defined HAVE_MEMPCPY || defined _LIBC
+-        *((char *) __mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
++        *((char *) mempcpy (errbuf, msg, errbuf_size - 1)) = '\0';
+ #else
+           memcpy (errbuf, msg, errbuf_size - 1);
+           errbuf[errbuf_size - 1] = 0;
index cacd675..abc2ea4 100644 (file)
@@ -9,3 +9,5 @@ do_stage () {
        install -m 755 src/egrep ${STAGING_BINDIR}
        install -m 755 src/fgrep ${STAGING_BINDIR}
 }
+
+FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/grep-${PV}"
index 7bcabef..6d184b8 100644 (file)
@@ -1,9 +1,10 @@
 LICENSE = "GPL"
 SECTION = "console/utils"
 DESCRIPTION = "grep GNU utility"
-PR = "r1"
+PR = "r2"
 
-SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.bz2"
+SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.bz2 \
+           file://uclibc-fix.patch;patch=1"
 
 inherit autotools