All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] systemtap: update to version 1.8
@ 2012-06-21 19:55 Wade Farnsworth
  2012-06-25 17:12 ` Saul Wold
  2012-06-28 17:11 ` Saul Wold
  0 siblings, 2 replies; 5+ messages in thread
From: Wade Farnsworth @ 2012-06-21 19:55 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

Update the systemtap recipes to the recently released version 1.8.  Remove a
couple of patches whose changes are already present in the new version.

Signed-off-by: Wade Farnsworth <wade_farnsworth@mentor.com>
---
 ...prun-configure.ac-support-without-nss-for.patch |   50 --------------------
 .../systemtap_fix_for_automake_1.12.patch          |   23 ---------
 meta/recipes-kernel/systemtap/systemtap_git.bb     |    2 +-
 meta/recipes-kernel/systemtap/systemtap_git.inc    |    6 +--
 4 files changed, 3 insertions(+), 78 deletions(-)
 delete mode 100644 meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
 delete mode 100644 meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch

diff --git a/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch b/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
deleted file mode 100644
index eef414a..0000000
--- a/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From fa81ccd4f92e5cb15a11a81a7e656bfe01745afb Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
-Date: Tue, 5 Jun 2012 10:22:23 +0200
-Subject: [PATCH] runtime/staprun/configure.ac: support --without-nss for
- staprun
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Upstream-Status: Submitted
-
-Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
----
- runtime/staprun/configure.ac |   20 +++++++++++++++-----
- 1 files changed, 15 insertions(+), 5 deletions(-)
-
-diff --git a/runtime/staprun/configure.ac b/runtime/staprun/configure.ac
-index 8fd1b42..7b05f73 100644
---- a/runtime/staprun/configure.ac
-+++ b/runtime/staprun/configure.ac
-@@ -67,11 +67,21 @@ AS_IF([test "x$enable_sdt_probes" != xno], [
-             [Define to 1 to enable process.mark probes in staprun, stapio.])
- ])
- 
--PKG_CHECK_MODULES([nss], [nss >= 3], [have_nss=yes], [have_nss=no])
--AM_CONDITIONAL([HAVE_NSS], [test $have_nss = yes])
--AS_IF([test $have_nss = yes], [
--  AC_DEFINE([HAVE_NSS], [1], [Define to 1 if you have the nss libraries.])
--])
-+dnl See if we have the nss/nspr headers and libraries
-+AC_ARG_WITH([nss],
-+  AS_HELP_STRING([--without-nss],
-+    [Do not use NSS even if present]))
-+
-+AS_IF([test "x$with_nss" != "xno"], [
-+  PKG_CHECK_MODULES([nss], [nss >= 3],
-+    [have_nss=yes
-+     AC_DEFINE([HAVE_NSS], [1], [Define to 1 if you have the nss libraries.])
-+    ], [have_nss=no])
-+], [have_nss=no])
-+
-+AM_CONDITIONAL([HAVE_NSS], [test "${have_nss}" = "yes"])
-+
-+
- AC_ARG_ENABLE([nls], [AS_HELP_STRING([--enable-nls], [enable translating program messages])])
- AS_IF([test "x$enable_nls" != xno], [
- AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if program messages should be translated.])
--- 
-1.7.6.5
-
diff --git a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch b/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
deleted file mode 100644
index ef74a09..0000000
--- a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Upstream-Status: Pending 
-
-Automake 1.12 has deprecated automatic de-ANSI-fication support
-
-Fix this issue with automake 1.12:
-
-| configure.ac:23: error: automatic de-ANSI-fication support has been removed
-
-Signed-Off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
-2012/05/02
-
-Index: git/configure.ac
-===================================================================
---- git.orig/configure.ac
-+++ git/configure.ac
-@@ -20,7 +20,6 @@ AC_PROG_CXX
- AC_PROG_CPP
- AM_PROG_CC_STDC
- AM_PROG_CC_C_O
--AM_C_PROTOTYPES
- AC_PROG_RANLIB
- AC_OBJEXT
- AC_EXEEXT
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 7ed5fcd..059aca7 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -6,7 +6,7 @@ DEPENDS = "elfutils sqlite3 systemtap-native"
 DEPENDS_virtclass-native = "elfutils-native sqlite3-native gettext-native"
 DEPENDS_virtclass-nativesdk = "elfutils-nativesdk sqlite3-nativesdk gettext-nativesdk"
 
-PR = "r5"
+PR = "r0"
 
 export CC_FOR_BUILD = "${BUILD_CC}"
 export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}"
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 5f2987b..093e62d 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,13 +1,11 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-SRCREV = "83bd2699d8cff2f2d6b9eaf5ea254e4cb6b33e81"
-PV = "1.7+git${SRCPV}"
+SRCREV = "48fa6b5e1d3e636c34cbd5650370e6f634efc294"
+PV = "1.8+git${SRCPV}"
 
 SRC_URI = "git://sources.redhat.com/git/systemtap.git;protocol=git \
            file://docproc-build-fix.patch \
-           file://systemtap_fix_for_automake_1.12.patch \
-           file://runtime-staprun-configure.ac-support-without-nss-for.patch \
           "
 
 FILESPATH = "${FILE_DIRNAME}/systemtap"
-- 
1.7.0.4





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] systemtap: update to version 1.8
  2012-06-21 19:55 [PATCH 1/1] systemtap: update to version 1.8 Wade Farnsworth
@ 2012-06-25 17:12 ` Saul Wold
  2012-06-25 19:16   ` Wade Farnsworth
  2012-06-28 17:11 ` Saul Wold
  1 sibling, 1 reply; 5+ messages in thread
From: Saul Wold @ 2012-06-25 17:12 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 06/21/2012 12:55 PM, Wade Farnsworth wrote:
> Update the systemtap recipes to the recently released version 1.8.  Remove a
> couple of patches whose changes are already present in the new version.
>
> Signed-off-by: Wade Farnsworth<wade_farnsworth@mentor.com>
> ---
>   ...prun-configure.ac-support-without-nss-for.patch |   50 --------------------
>   .../systemtap_fix_for_automake_1.12.patch          |   23 ---------
>   meta/recipes-kernel/systemtap/systemtap_git.bb     |    2 +-
>   meta/recipes-kernel/systemtap/systemtap_git.inc    |    6 +--
>   4 files changed, 3 insertions(+), 78 deletions(-)
>   delete mode 100644 meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
>   delete mode 100644 meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
>
Wade,

This patch is not applying cleanly with git am on the lastest master, 
would you check it and possibly re-base/re-send.

Thanks
	Sau!


> diff --git a/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch b/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
> deleted file mode 100644
> index eef414a..0000000
> --- a/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
> +++ /dev/null
> @@ -1,50 +0,0 @@
> -From fa81ccd4f92e5cb15a11a81a7e656bfe01745afb Mon Sep 17 00:00:00 2001
> -From: =?UTF-8?q?Andreas=20M=C3=BCller?=<schnitzeltony@googlemail.com>
> -Date: Tue, 5 Jun 2012 10:22:23 +0200
> -Subject: [PATCH] runtime/staprun/configure.ac: support --without-nss for
> - staprun
> -MIME-Version: 1.0
> -Content-Type: text/plain; charset=UTF-8
> -Content-Transfer-Encoding: 8bit
> -
> -Upstream-Status: Submitted
> -
> -Signed-off-by: Andreas Müller<schnitzeltony@googlemail.com>
> ----
> - runtime/staprun/configure.ac |   20 +++++++++++++++-----
> - 1 files changed, 15 insertions(+), 5 deletions(-)
> -
> -diff --git a/runtime/staprun/configure.ac b/runtime/staprun/configure.ac
> -index 8fd1b42..7b05f73 100644
> ---- a/runtime/staprun/configure.ac
> -+++ b/runtime/staprun/configure.ac
> -@@ -67,11 +67,21 @@ AS_IF([test "x$enable_sdt_probes" != xno], [
> -             [Define to 1 to enable process.mark probes in staprun, stapio.])
> - ])
> -
> --PKG_CHECK_MODULES([nss], [nss>= 3], [have_nss=yes], [have_nss=no])
> --AM_CONDITIONAL([HAVE_NSS], [test $have_nss = yes])
> --AS_IF([test $have_nss = yes], [
> --  AC_DEFINE([HAVE_NSS], [1], [Define to 1 if you have the nss libraries.])
> --])
> -+dnl See if we have the nss/nspr headers and libraries
> -+AC_ARG_WITH([nss],
> -+  AS_HELP_STRING([--without-nss],
> -+    [Do not use NSS even if present]))
> -+
> -+AS_IF([test "x$with_nss" != "xno"], [
> -+  PKG_CHECK_MODULES([nss], [nss>= 3],
> -+    [have_nss=yes
> -+     AC_DEFINE([HAVE_NSS], [1], [Define to 1 if you have the nss libraries.])
> -+    ], [have_nss=no])
> -+], [have_nss=no])
> -+
> -+AM_CONDITIONAL([HAVE_NSS], [test "${have_nss}" = "yes"])
> -+
> -+
> - AC_ARG_ENABLE([nls], [AS_HELP_STRING([--enable-nls], [enable translating program messages])])
> - AS_IF([test "x$enable_nls" != xno], [
> - AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if program messages should be translated.])
> ---
> -1.7.6.5
> -
> diff --git a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch b/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
> deleted file mode 100644
> index ef74a09..0000000
> --- a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
> +++ /dev/null
> @@ -1,23 +0,0 @@
> -Upstream-Status: Pending
> -
> -Automake 1.12 has deprecated automatic de-ANSI-fication support
> -
> -Fix this issue with automake 1.12:
> -
> -| configure.ac:23: error: automatic de-ANSI-fication support has been removed
> -
> -Signed-Off-by: Nitin A Kamble<nitin.a.kamble@intel.com>
> -2012/05/02
> -
> -Index: git/configure.ac
> -===================================================================
> ---- git.orig/configure.ac
> -+++ git/configure.ac
> -@@ -20,7 +20,6 @@ AC_PROG_CXX
> - AC_PROG_CPP
> - AM_PROG_CC_STDC
> - AM_PROG_CC_C_O
> --AM_C_PROTOTYPES
> - AC_PROG_RANLIB
> - AC_OBJEXT
> - AC_EXEEXT
> diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
> index 7ed5fcd..059aca7 100644
> --- a/meta/recipes-kernel/systemtap/systemtap_git.bb
> +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
> @@ -6,7 +6,7 @@ DEPENDS = "elfutils sqlite3 systemtap-native"
>   DEPENDS_virtclass-native = "elfutils-native sqlite3-native gettext-native"
>   DEPENDS_virtclass-nativesdk = "elfutils-nativesdk sqlite3-nativesdk gettext-nativesdk"
>
> -PR = "r5"
> +PR = "r0"
>
>   export CC_FOR_BUILD = "${BUILD_CC}"
>   export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}"
> diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
> index 5f2987b..093e62d 100644
> --- a/meta/recipes-kernel/systemtap/systemtap_git.inc
> +++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
> @@ -1,13 +1,11 @@
>   LICENSE = "GPLv2"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> -SRCREV = "83bd2699d8cff2f2d6b9eaf5ea254e4cb6b33e81"
> -PV = "1.7+git${SRCPV}"
> +SRCREV = "48fa6b5e1d3e636c34cbd5650370e6f634efc294"
> +PV = "1.8+git${SRCPV}"
>
>   SRC_URI = "git://sources.redhat.com/git/systemtap.git;protocol=git \
>              file://docproc-build-fix.patch \
> -           file://systemtap_fix_for_automake_1.12.patch \
> -           file://runtime-staprun-configure.ac-support-without-nss-for.patch \
>             "
>
>   FILESPATH = "${FILE_DIRNAME}/systemtap"



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] systemtap: update to version 1.8
  2012-06-25 17:12 ` Saul Wold
@ 2012-06-25 19:16   ` Wade Farnsworth
  2012-06-25 19:19     ` Saul Wold
  0 siblings, 1 reply; 5+ messages in thread
From: Wade Farnsworth @ 2012-06-25 19:16 UTC (permalink / raw)
  To: Saul Wold; +Cc: Patches and discussions about the oe-core layer

Saul Wold wrote:
> On 06/21/2012 12:55 PM, Wade Farnsworth wrote:
>> Update the systemtap recipes to the recently released version 1.8. 
>> Remove a
>> couple of patches whose changes are already present in the new version.
>>
>> Signed-off-by: Wade Farnsworth<wade_farnsworth@mentor.com>
>> ---
>> ...prun-configure.ac-support-without-nss-for.patch | 50 
>> --------------------
>> .../systemtap_fix_for_automake_1.12.patch | 23 ---------
>> meta/recipes-kernel/systemtap/systemtap_git.bb | 2 +-
>> meta/recipes-kernel/systemtap/systemtap_git.inc | 6 +--
>> 4 files changed, 3 insertions(+), 78 deletions(-)
>> delete mode 100644 
>> meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch 
>>
>> delete mode 100644 
>> meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch 
>>
>>
> Wade,
> 
> This patch is not applying cleanly with git am on the lastest master, 
> would you check it and possibly re-base/re-send.
> 
> Thanks
> Sau!
> 
> 

Hi Saul,

It looks like the umlaut characters in the deleted patches are being munged by my
mailer.  As a workaround, I've set up a github repo containing my change.  Do you mind
pulling this directly?

Thanks,

Wade


The following changes since commit f4b5afe46ff018570c1949653eb6995428827f6f:
  Richard Purdie (1):
        sanity.bbclass: Increase LAYER_CONF_VERSION to match bblayers change

are available in the git repository at:

  https://github.com/wfarnsworth/oe-core.git stap

Wade Farnsworth (1):
      systemtap: update to version 1.8

 ...prun-configure.ac-support-without-nss-for.patch |   50 --------------------
 .../systemtap_fix_for_automake_1.12.patch          |   23 ---------
 meta/recipes-kernel/systemtap/systemtap_git.bb     |    2 +-
 meta/recipes-kernel/systemtap/systemtap_git.inc    |    6 +--
 4 files changed, 3 insertions(+), 78 deletions(-)







^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] systemtap: update to version 1.8
  2012-06-25 19:16   ` Wade Farnsworth
@ 2012-06-25 19:19     ` Saul Wold
  0 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2012-06-25 19:19 UTC (permalink / raw)
  To: Wade Farnsworth; +Cc: Patches and discussions about the oe-core layer

On 06/25/2012 12:16 PM, Wade Farnsworth wrote:
> Saul Wold wrote:
>> On 06/21/2012 12:55 PM, Wade Farnsworth wrote:
>>> Update the systemtap recipes to the recently released version 1.8.
>>> Remove a
>>> couple of patches whose changes are already present in the new version.
>>>
>>> Signed-off-by: Wade Farnsworth<wade_farnsworth@mentor.com>
>>> ---
>>> ...prun-configure.ac-support-without-nss-for.patch | 50
>>> --------------------
>>> .../systemtap_fix_for_automake_1.12.patch | 23 ---------
>>> meta/recipes-kernel/systemtap/systemtap_git.bb | 2 +-
>>> meta/recipes-kernel/systemtap/systemtap_git.inc | 6 +--
>>> 4 files changed, 3 insertions(+), 78 deletions(-)
>>> delete mode 100644
>>> meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
>>>
>>> delete mode 100644
>>> meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
>>>
>>>
>> Wade,
>>
>> This patch is not applying cleanly with git am on the lastest master,
>> would you check it and possibly re-base/re-send.
>>
>> Thanks
>> Sau!
>>
>>
>
> Hi Saul,
>
> It looks like the umlaut characters in the deleted patches are being munged by my
> mailer.  As a workaround, I've set up a github repo containing my change.  Do you mind
> pulling this directly?
>
Not at all, sometimes this can be easier for me, especially if there is 
a series of commits.

Thanks, will get this in the next day or so.

Sau!

> Thanks,
>
> Wade
>
>
> The following changes since commit f4b5afe46ff018570c1949653eb6995428827f6f:
>    Richard Purdie (1):
>          sanity.bbclass: Increase LAYER_CONF_VERSION to match bblayers change
>
> are available in the git repository at:
>
>    https://github.com/wfarnsworth/oe-core.git stap
>
> Wade Farnsworth (1):
>        systemtap: update to version 1.8
>
>   ...prun-configure.ac-support-without-nss-for.patch |   50 --------------------
>   .../systemtap_fix_for_automake_1.12.patch          |   23 ---------
>   meta/recipes-kernel/systemtap/systemtap_git.bb     |    2 +-
>   meta/recipes-kernel/systemtap/systemtap_git.inc    |    6 +--
>   4 files changed, 3 insertions(+), 78 deletions(-)
>
>
>
>
>
>



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/1] systemtap: update to version 1.8
  2012-06-21 19:55 [PATCH 1/1] systemtap: update to version 1.8 Wade Farnsworth
  2012-06-25 17:12 ` Saul Wold
@ 2012-06-28 17:11 ` Saul Wold
  1 sibling, 0 replies; 5+ messages in thread
From: Saul Wold @ 2012-06-28 17:11 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 06/21/2012 12:55 PM, Wade Farnsworth wrote:
> Update the systemtap recipes to the recently released version 1.8.  Remove a
> couple of patches whose changes are already present in the new version.
>
> Signed-off-by: Wade Farnsworth<wade_farnsworth@mentor.com>
> ---
>   ...prun-configure.ac-support-without-nss-for.patch |   50 --------------------
>   .../systemtap_fix_for_automake_1.12.patch          |   23 ---------
>   meta/recipes-kernel/systemtap/systemtap_git.bb     |    2 +-
>   meta/recipes-kernel/systemtap/systemtap_git.inc    |    6 +--
>   4 files changed, 3 insertions(+), 78 deletions(-)
>   delete mode 100644 meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
>   delete mode 100644 meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
>
Merged into OE-Core from your github repo

Thanks
	Sau!


> diff --git a/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch b/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
> deleted file mode 100644
> index eef414a..0000000
> --- a/meta/recipes-kernel/systemtap/systemtap/runtime-staprun-configure.ac-support-without-nss-for.patch
> +++ /dev/null
> @@ -1,50 +0,0 @@
> -From fa81ccd4f92e5cb15a11a81a7e656bfe01745afb Mon Sep 17 00:00:00 2001
> -From: =?UTF-8?q?Andreas=20M=C3=BCller?=<schnitzeltony@googlemail.com>
> -Date: Tue, 5 Jun 2012 10:22:23 +0200
> -Subject: [PATCH] runtime/staprun/configure.ac: support --without-nss for
> - staprun
> -MIME-Version: 1.0
> -Content-Type: text/plain; charset=UTF-8
> -Content-Transfer-Encoding: 8bit
> -
> -Upstream-Status: Submitted
> -
> -Signed-off-by: Andreas Müller<schnitzeltony@googlemail.com>
> ----
> - runtime/staprun/configure.ac |   20 +++++++++++++++-----
> - 1 files changed, 15 insertions(+), 5 deletions(-)
> -
> -diff --git a/runtime/staprun/configure.ac b/runtime/staprun/configure.ac
> -index 8fd1b42..7b05f73 100644
> ---- a/runtime/staprun/configure.ac
> -+++ b/runtime/staprun/configure.ac
> -@@ -67,11 +67,21 @@ AS_IF([test "x$enable_sdt_probes" != xno], [
> -             [Define to 1 to enable process.mark probes in staprun, stapio.])
> - ])
> -
> --PKG_CHECK_MODULES([nss], [nss>= 3], [have_nss=yes], [have_nss=no])
> --AM_CONDITIONAL([HAVE_NSS], [test $have_nss = yes])
> --AS_IF([test $have_nss = yes], [
> --  AC_DEFINE([HAVE_NSS], [1], [Define to 1 if you have the nss libraries.])
> --])
> -+dnl See if we have the nss/nspr headers and libraries
> -+AC_ARG_WITH([nss],
> -+  AS_HELP_STRING([--without-nss],
> -+    [Do not use NSS even if present]))
> -+
> -+AS_IF([test "x$with_nss" != "xno"], [
> -+  PKG_CHECK_MODULES([nss], [nss>= 3],
> -+    [have_nss=yes
> -+     AC_DEFINE([HAVE_NSS], [1], [Define to 1 if you have the nss libraries.])
> -+    ], [have_nss=no])
> -+], [have_nss=no])
> -+
> -+AM_CONDITIONAL([HAVE_NSS], [test "${have_nss}" = "yes"])
> -+
> -+
> - AC_ARG_ENABLE([nls], [AS_HELP_STRING([--enable-nls], [enable translating program messages])])
> - AS_IF([test "x$enable_nls" != xno], [
> - AC_DEFINE([ENABLE_NLS], [1], [Define to 1 if program messages should be translated.])
> ---
> -1.7.6.5
> -
> diff --git a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch b/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
> deleted file mode 100644
> index ef74a09..0000000
> --- a/meta/recipes-kernel/systemtap/systemtap/systemtap_fix_for_automake_1.12.patch
> +++ /dev/null
> @@ -1,23 +0,0 @@
> -Upstream-Status: Pending
> -
> -Automake 1.12 has deprecated automatic de-ANSI-fication support
> -
> -Fix this issue with automake 1.12:
> -
> -| configure.ac:23: error: automatic de-ANSI-fication support has been removed
> -
> -Signed-Off-by: Nitin A Kamble<nitin.a.kamble@intel.com>
> -2012/05/02
> -
> -Index: git/configure.ac
> -===================================================================
> ---- git.orig/configure.ac
> -+++ git/configure.ac
> -@@ -20,7 +20,6 @@ AC_PROG_CXX
> - AC_PROG_CPP
> - AM_PROG_CC_STDC
> - AM_PROG_CC_C_O
> --AM_C_PROTOTYPES
> - AC_PROG_RANLIB
> - AC_OBJEXT
> - AC_EXEEXT
> diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
> index 7ed5fcd..059aca7 100644
> --- a/meta/recipes-kernel/systemtap/systemtap_git.bb
> +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
> @@ -6,7 +6,7 @@ DEPENDS = "elfutils sqlite3 systemtap-native"
>   DEPENDS_virtclass-native = "elfutils-native sqlite3-native gettext-native"
>   DEPENDS_virtclass-nativesdk = "elfutils-nativesdk sqlite3-nativesdk gettext-nativesdk"
>
> -PR = "r5"
> +PR = "r0"
>
>   export CC_FOR_BUILD = "${BUILD_CC}"
>   export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}"
> diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
> index 5f2987b..093e62d 100644
> --- a/meta/recipes-kernel/systemtap/systemtap_git.inc
> +++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
> @@ -1,13 +1,11 @@
>   LICENSE = "GPLv2"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>
> -SRCREV = "83bd2699d8cff2f2d6b9eaf5ea254e4cb6b33e81"
> -PV = "1.7+git${SRCPV}"
> +SRCREV = "48fa6b5e1d3e636c34cbd5650370e6f634efc294"
> +PV = "1.8+git${SRCPV}"
>
>   SRC_URI = "git://sources.redhat.com/git/systemtap.git;protocol=git \
>              file://docproc-build-fix.patch \
> -           file://systemtap_fix_for_automake_1.12.patch \
> -           file://runtime-staprun-configure.ac-support-without-nss-for.patch \
>             "
>
>   FILESPATH = "${FILE_DIRNAME}/systemtap"



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-28 17:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-21 19:55 [PATCH 1/1] systemtap: update to version 1.8 Wade Farnsworth
2012-06-25 17:12 ` Saul Wold
2012-06-25 19:16   ` Wade Farnsworth
2012-06-25 19:19     ` Saul Wold
2012-06-28 17:11 ` Saul Wold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.