mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: Re: [ptxdist] [PATCH 1/2] libcurl: version bump to 7.21.2
Date: Thu, 31 May 2012 17:32:24 +0200	[thread overview]
Message-ID: <20120531153224.GK10627@pengutronix.de> (raw)
In-Reply-To: <1338208981-8681-32-git-send-email-bartvdrmeulen@gmail.com>

On Mon, May 28, 2012 at 02:42:58PM +0200, Bart vdr. Meulen wrote:
> From: "Bart vdr. Meulen" <bartvdrmeulen@gmail.com>
> 
> bump libcurl to version 7.21.2
> 

The patch does not apply here.

> Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
> ---
>  .../0001-curl-config.in-add-SYSROOT-support.patch  |   33 --------------------
>  patches/curl-7.21.0/series                         |    1 -
>  .../0001-curl-config.in-add-SYSROOT-support.patch  |   33 ++++++++++++++++++++
>  patches/curl-7.21.2/series                         |    1 +
>  rules/libcurl.make                                 |    6 ++--
>  5 files changed, 37 insertions(+), 37 deletions(-)
>  delete mode 100644 patches/curl-7.21.0/0001-curl-config.in-add-SYSROOT-support.patch
>  delete mode 100644 patches/curl-7.21.0/series
>  create mode 100644 patches/curl-7.21.2/0001-curl-config.in-add-SYSROOT-support.patch
>  create mode 100644 patches/curl-7.21.2/series
> 
> diff --git a/patches/curl-7.21.0/0001-curl-config.in-add-SYSROOT-support.patch b/patches/curl-7.21.0/0001-curl-config.in-add-SYSROOT-support.patch
> deleted file mode 100644
> index e21f2ab..0000000
> --- a/patches/curl-7.21.0/0001-curl-config.in-add-SYSROOT-support.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -From 9917e03c4d0441a9bc73a7a48664a63cb3beb71d Mon Sep 17 00:00:00 2001
> -From: Marc Kleine-Budde <mkl@pengutronix.de>
> -Date: Sat, 9 Jan 2010 19:25:26 +0100
> -Subject: [PATCH 2/2] curl-config.in: add SYSROOT support
> -
> -Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ----
> - curl-config.in |    8 ++++----
> - 1 file changed, 4 insertions(+), 4 deletions(-)
> -
> ---- a/curl-config.in
> -+++ b/curl-config.in
> -@@ -123,16 +123,16 @@ while test $# -gt 0; do
> - 	;;
> -
> -     --cflags)
> --       	if test "X@includedir@" = "X/usr/include"; then
> -+       	if test "X${SYSROOT}@includedir@" = "X/usr/include"; then
> -           echo ""
> -         else
> --          echo "-I@includedir@"
> -+          echo "-I${SYSROOT}@includedir@"
> -         fi
> -        	;;
> -
> -     --libs)
> --	if test "X@libdir@" != "X/usr/lib" -a "X@libdir@" != "X/usr/lib64"; then
> --	   CURLLIBDIR="-L@libdir@ "
> -+	if test "X${SYSROOT}@libdir@" != "X/usr/lib" -a "X${SYSROOT}@libdir@" != "X/usr/lib64"; then
> -+	   CURLLIBDIR="-L${SYSROOT}@libdir@ "
> - 	else
> - 	   CURLLIBDIR=""
> - 	fi
> diff --git a/patches/curl-7.21.0/series b/patches/curl-7.21.0/series
> deleted file mode 100644
> index f558799..0000000
> --- a/patches/curl-7.21.0/series
> +++ /dev/null
> @@ -1 +0,0 @@
> -0001-curl-config.in-add-SYSROOT-support.patch
> diff --git a/patches/curl-7.21.2/0001-curl-config.in-add-SYSROOT-support.patch b/patches/curl-7.21.2/0001-curl-config.in-add-SYSROOT-support.patch
> new file mode 100644
> index 0000000..e21f2ab
> --- /dev/null
> +++ b/patches/curl-7.21.2/0001-curl-config.in-add-SYSROOT-support.patch
> @@ -0,0 +1,33 @@
> +From 9917e03c4d0441a9bc73a7a48664a63cb3beb71d Mon Sep 17 00:00:00 2001
> +From: Marc Kleine-Budde <mkl@pengutronix.de>
> +Date: Sat, 9 Jan 2010 19:25:26 +0100
> +Subject: [PATCH 2/2] curl-config.in: add SYSROOT support
> +
> +Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> +---
> + curl-config.in |    8 ++++----
> + 1 file changed, 4 insertions(+), 4 deletions(-)
> +
> +--- a/curl-config.in
> ++++ b/curl-config.in
> +@@ -123,16 +123,16 @@ while test $# -gt 0; do
> + 	;;
> +
> +     --cflags)
> +-       	if test "X@includedir@" = "X/usr/include"; then
> ++       	if test "X${SYSROOT}@includedir@" = "X/usr/include"; then
> +           echo ""
> +         else
> +-          echo "-I@includedir@"
> ++          echo "-I${SYSROOT}@includedir@"
> +         fi
> +        	;;
> +
> +     --libs)
> +-	if test "X@libdir@" != "X/usr/lib" -a "X@libdir@" != "X/usr/lib64"; then
> +-	   CURLLIBDIR="-L@libdir@ "
> ++	if test "X${SYSROOT}@libdir@" != "X/usr/lib" -a "X${SYSROOT}@libdir@" != "X/usr/lib64"; then
> ++	   CURLLIBDIR="-L${SYSROOT}@libdir@ "
> + 	else
> + 	   CURLLIBDIR=""
> + 	fi
> diff --git a/patches/curl-7.21.2/series b/patches/curl-7.21.2/series
> new file mode 100644
> index 0000000..f558799
> --- /dev/null
> +++ b/patches/curl-7.21.2/series
> @@ -0,0 +1 @@
> +0001-curl-config.in-add-SYSROOT-support.patch
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index 58ff053..b9e68f1 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -17,13 +17,14 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
>  #
>  # Paths and names
>  #
> -LIBCURL_VERSION	:= 7.21.0
> -LIBCURL_MD5	:= 6dfb911a254a1b5ca8b534b98f2196aa
> +LIBCURL_VERSION	:= 7.21.2
> +LIBCURL_MD5	:= dfa71ade8d02f4588efaf08489e4626c
>  LIBCURL		:= curl-$(LIBCURL_VERSION)
>  LIBCURL_SUFFIX	:= tar.gz
>  LIBCURL_URL	:= http://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
>  LIBCURL_SOURCE	:= $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
>  LIBCURL_DIR	:= $(BUILDDIR)/$(LIBCURL)
> +LIBCURL_LICENSE := MIT/X
> 
>  # ----------------------------------------------------------------------------
>  # Get
> @@ -53,7 +54,6 @@ LIBCURL_AUTOCONF := \
>  	--disable-ldaps \
>  	--disable-dict \
>  	--disable-telnet \
> -	--disable-tftp \

This should be part of the other patch.

Michael

>  	--disable-manual \
>  	\
>  	--disable-ares \
> --
> 1.7.9.5
> 
> 
> -- 
> ptxdist mailing list
> ptxdist@pengutronix.de
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

-- 
ptxdist mailing list
ptxdist@pengutronix.de

      reply	other threads:[~2012-05-31 15:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-28 12:42 Bart vdr. Meulen
2012-05-31 15:32 ` Michael Olbrich [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120531153224.GK10627@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox