diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-07-13 16:46:46 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-21 21:44:37 +0100 |
commit | 75fff516610b8f8b64523979c005fddd4ec4a76d (patch) | |
tree | d8378a8f01b3580c66f42f3609e45a63d13b7224 /meta/packages/apmd/apmd-3.2.2-14/libtool.patch | |
parent | cb249ed2f0791d021593209cd000baaa9629fcf1 (diff) | |
download | poky-75fff516610b8f8b64523979c005fddd4ec4a76d.tar.gz |
apmd: upgrade to 3.2.2-14
[Patches]
KEEP _unlinux.patch_: remove reference to build system paths
DISABLE _libtool.patch_: this patch adds a "--tag=CC" to be compatible with libtool2.2.4.
however with latest 2.2.10 libtool, w/o this patch it still works. From
the manual, CC is the default tag actually. So disable it for now, and once
same error happens again, it'll be re-neabled and if necessary push to upstream
DISABLE _workaround.patch_: a SIGUSR1 is hooked to signal suspend event as a so-called 'workaround'.
however no exact commit is found for exact usage case. So disable it.
REMOVE _debian.patch_: in upstream
[Recipe]
Add license checksum
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages/apmd/apmd-3.2.2-14/libtool.patch')
-rw-r--r-- | meta/packages/apmd/apmd-3.2.2-14/libtool.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/packages/apmd/apmd-3.2.2-14/libtool.patch b/meta/packages/apmd/apmd-3.2.2-14/libtool.patch new file mode 100644 index 0000000000..711e777084 --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2-14/libtool.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | # Add by RP to address "unable to infer tagged configuration" error: | ||
2 | # commit 35de05e61b88c0808a5e885bb0efdf420555d5ad | ||
3 | # Author: Richard Purdie <rpurdie@rpsys.net> | ||
4 | # Date: Sun Jun 1 16:13:38 2008 +0000 | ||
5 | # | ||
6 | # apmd: Use libtool --tag options to avoid problems with libtool 2.2.4 (from poky) | ||
7 | # | ||
8 | # However I didn't see same issue with current libtool-2.2.10. Also per my understanding, | ||
9 | # the default tag, if not specified, falls back to CC. So disable it from patching, but | ||
10 | # keep it here. If we encounter similar issue in the future, we could then push upstream | ||
11 | # | ||
12 | # Comment added by Kevin Tian <kevin.tian@intel.com>, 2010-07-16 | ||
13 | |||
14 | Index: apmd-3.2.2.orig/Makefile | ||
15 | =================================================================== | ||
16 | --- apmd-3.2.2.orig.orig/Makefile 2004-01-04 08:13:18.000000000 +0000 | ||
17 | +++ apmd-3.2.2.orig/Makefile 2008-04-21 17:10:03.000000000 +0100 | ||
18 | @@ -58,9 +57,8 @@ | ||
19 | #CFLAGS=-O3 -m486 -fomit-frame-pointer | ||
20 | #LDFLAGS=-s | ||
21 | |||
22 | -LIBTOOL=libtool --quiet | ||
23 | -LT_COMPILE = $(LIBTOOL) --mode=compile $(CC) | ||
24 | -LT_LINK = $(LIBTOOL) --mode=link $(CC) | ||
25 | +LT_COMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) | ||
26 | +LT_LINK = $(LIBTOOL) --tag=CC --mode=link $(CC) | ||
27 | LT_INSTALL = $(LIBTOOL) --mode=install install | ||
28 | LT_CLEAN = $(LIBTOOL) --mode=clean rm | ||
29 | |||