summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42
diff options
context:
space:
mode:
authorScott Garman <scott.a.garman@intel.com>2012-01-12 14:27:07 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-17 14:53:23 +0000
commit464a2d66a465d49114c1e3748490657910dcc3a5 (patch)
tree5b7f712b4597c1a6a54a02980f59d76b26db0f3e /meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42
parent6ce82eac3b398816f7c11dbfa90d24517a792839 (diff)
downloadpoky-464a2d66a465d49114c1e3748490657910dcc3a5.tar.gz
e2fsprogs: upgrade to 1.42
Refactored quotefix.patch to apply cleanly. (From OE-Core rev: 1749f35bc92acd971eda245b93781305f79c2bef) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42')
-rw-r--r--meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/acinclude.m486
-rw-r--r--meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/mkdir.patch29
-rw-r--r--meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch44
3 files changed, 159 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/acinclude.m4 b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/acinclude.m4
new file mode 100644
index 0000000000..4b00668476
--- /dev/null
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/acinclude.m4
@@ -0,0 +1,86 @@
1# Extracted from the package's shipped aclocal.m4. Custom macros should be in
2# acinclude.m4 so running aclocal doesn't blow them away.
3#
4# RP 1/6/2010
5
6# ===========================================================================
7# http://www.nongnu.org/autoconf-archive/check_gnu_make.html
8# ===========================================================================
9#
10# SYNOPSIS
11#
12# CHECK_GNU_MAKE()
13#
14# DESCRIPTION
15#
16# This macro searches for a GNU version of make. If a match is found, the
17# makefile variable `ifGNUmake' is set to the empty string, otherwise it
18# is set to "#". This is useful for including a special features in a
19# Makefile, which cannot be handled by other versions of make. The
20# variable _cv_gnu_make_command is set to the command to invoke GNU make
21# if it exists, the empty string otherwise.
22#
23# Here is an example of its use:
24#
25# Makefile.in might contain:
26#
27# # A failsafe way of putting a dependency rule into a makefile
28# $(DEPEND):
29# $(CC) -MM $(srcdir)/*.c > $(DEPEND)
30#
31# @ifGNUmake@ ifeq ($(DEPEND),$(wildcard $(DEPEND)))
32# @ifGNUmake@ include $(DEPEND)
33# @ifGNUmake@ endif
34#
35# Then configure.in would normally contain:
36#
37# CHECK_GNU_MAKE()
38# AC_OUTPUT(Makefile)
39#
40# Then perhaps to cause gnu make to override any other make, we could do
41# something like this (note that GNU make always looks for GNUmakefile
42# first):
43#
44# if ! test x$_cv_gnu_make_command = x ; then
45# mv Makefile GNUmakefile
46# echo .DEFAULT: > Makefile ;
47# echo \ $_cv_gnu_make_command \$@ >> Makefile;
48# fi
49#
50# Then, if any (well almost any) other make is called, and GNU make also
51# exists, then the other make wraps the GNU make.
52#
53# LICENSE
54#
55# Copyright (c) 2008 John Darrington <j.darrington@elvis.murdoch.edu.au>
56#
57# Copying and distribution of this file, with or without modification, are
58# permitted in any medium without royalty provided the copyright notice
59# and this notice are preserved.
60#
61# Note: Modified by Ted Ts'o to add @ifNotGNUMake@
62
63AC_DEFUN(
64 [CHECK_GNU_MAKE], [ AC_CACHE_CHECK( for GNU make,_cv_gnu_make_command,
65 _cv_gnu_make_command='' ;
66dnl Search all the common names for GNU make
67 for a in "$MAKE" make gmake gnumake ; do
68 if test -z "$a" ; then continue ; fi ;
69 if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null ) ; then
70 _cv_gnu_make_command=$a ;
71 break;
72 fi
73 done ;
74 ) ;
75dnl If there was a GNU version, then set @ifGNUmake@ to the empty string, '#' otherwise
76 if test "x$_cv_gnu_make_command" != "x" ; then
77 ifGNUmake='' ;
78 ifNotGNUmake='#' ;
79 else
80 ifGNUmake='#' ;
81 ifNotGNUmake='' ;
82 AC_MSG_RESULT("Not found");
83 fi
84 AC_SUBST(ifGNUmake)
85 AC_SUBST(ifNotGNUmake)
86] )
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/mkdir.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/mkdir.patch
new file mode 100644
index 0000000000..e91ffa96c4
--- /dev/null
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/mkdir.patch
@@ -0,0 +1,29 @@
1Upstream-Status: Inappropriate [configuration]
2Signed-off-by: Mei Lei <lei.mei@intel.com>
3
4Index: e2fsprogs-1.41.5/po/Makefile.in.in
5===================================================================
6--- e2fsprogs-1.41.5.orig/po/Makefile.in.in 2009-02-14 13:49:08.000000000 +0000
7+++ e2fsprogs-1.41.5/po/Makefile.in.in 2009-08-19 17:52:31.000000000 +0100
8@@ -30,7 +30,7 @@
9 INSTALL = @INSTALL@
10 INSTALL_DATA = @INSTALL_DATA@
11 MKINSTALLDIRS = @MKINSTALLDIRS@
12-mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
13+mkinstalldirs = $(MKINSTALLDIRS)
14
15 GMSGFMT = @GMSGFMT@
16 MSGFMT = @MSGFMT@
17Index: e2fsprogs-1.41.5/configure.in
18===================================================================
19--- e2fsprogs-1.41.5.orig/configure.in 2009-08-19 17:53:50.000000000 +0100
20+++ e2fsprogs-1.41.5/configure.in 2009-08-19 17:48:38.000000000 +0100
21@@ -970,6 +970,8 @@
22 fi
23 AC_SUBST(BUILD_CFLAGS)
24 AC_SUBST(BUILD_LDFLAGS)
25+MKINSTALLDIRS="mkdir -p"
26+AC_SUBST(MKINSTALLDIRS)
27 dnl
28 dnl Make our output files, being sure that we create the some miscellaneous
29 dnl directories
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch
new file mode 100644
index 0000000000..e576f35ccc
--- /dev/null
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42/quotefix.patch
@@ -0,0 +1,44 @@
1Upstream-Status: Pending
2
3These macros are underquoted and break with recent autoconf+automake
4combinations. - RP 2010-01-02
5
6Signed-off-by: Scott Garman <scott.a.garman@intel.com>
7
8diff -urN e2fsprogs-1.42.orig//configure.in e2fsprogs-1.42/configure.in
9--- e2fsprogs-1.42.orig//configure.in 2011-11-28 09:28:22.000000000 -0800
10+++ e2fsprogs-1.42/configure.in 2012-01-12 14:42:54.820531407 -0800
11@@ -439,11 +439,11 @@
12 AC_MSG_ERROR([pkg-config not installed; please install it.])
13 fi
14
15- AC_CHECK_LIB(uuid, uuid_generate,
16+ [AC_CHECK_LIB(uuid, uuid_generate,
17 [LIBUUID=`$PKG_CONFIG --libs uuid`;
18 STATIC_LIBUUID=`$PKG_CONFIG --static --libs uuid`],
19 [AC_MSG_ERROR([external uuid library not found])],
20- [$LIBUUID])
21+ [$LIBUUID])]
22 UUID_CMT=#
23 AC_MSG_RESULT([Disabling private uuid library])
24 else
25@@ -939,15 +939,15 @@
26 AH_TEMPLATE([HAVE_SEM_INIT], [Define to 1 if sem_init() exists])
27 SEM_INIT_LIB=''
28 AC_CHECK_FUNC(sem_init, ,
29- AC_CHECK_LIB(pthread, sem_init,
30+ [AC_CHECK_LIB(pthread, sem_init,
31 AC_DEFINE(HAVE_SEM_INIT, 1)
32 SEM_INIT_LIB=-lpthread,
33- AC_CHECK_LIB(rt, sem_init,
34+ [AC_CHECK_LIB(rt, sem_init,
35 AC_DEFINE(HAVE_SEM_INIT, 1)
36 SEM_INIT_LIB=-lrt,
37- AC_CHECK_LIB(posix4, sem_init,
38+ [AC_CHECK_LIB(posix4, sem_init,
39 AC_DEFINE(HAVE_SEM_INIT, 1)
40- SEM_INIT_LIB=-lposix4))))dnl
41+ SEM_INIT_LIB=-lposix4)])])])dnl
42 AC_SUBST(SEM_INIT_LIB)
43 dnl
44 dnl Check for unified diff