All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] apr-util: disable odbc support to avoid QA error
@ 2011-05-23 14:07 Steffen Sledz
  2011-05-24 13:57 ` Steffen Sledz
  2011-05-24 20:58 ` Paul Menzel
  0 siblings, 2 replies; 4+ messages in thread
From: Steffen Sledz @ 2011-05-23 14:07 UTC (permalink / raw)
  To: openembedded-devel

The odbc checker part of the configure script seems to be buggy and
may add host pathes to compiler and linker options:

--------->snip<--------
 checking for odbc_config... /usr/bin/odbc_config
   adding "-I/usr/include" to CPPFLAGS
   adding "-L/usr/lib" to LDFLAGS
   setting LIBS to "-L/usr/lib -lodbc"
--------->snip<--------

Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
---
 recipes/apr/apr-util_1.3.10.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/apr/apr-util_1.3.10.bb b/recipes/apr/apr-util_1.3.10.bb
index ee32ddd..32b568e 100644
--- a/recipes/apr/apr-util_1.3.10.bb
+++ b/recipes/apr/apr-util_1.3.10.bb
@@ -3,7 +3,7 @@ SECTION = "libs"
 DEPENDS = "apr expat gdbm"
 LICENSE = "Apache License, Version 2.0"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "${APACHE_MIRROR}/apr/${P}.tar.gz \
            file://configfix.patch \
@@ -15,6 +15,7 @@ EXTRA_OECONF = "--with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \
 		--without-sqlite2 \
 		--without-sqlite3 \
 		--without-pgsql \
+		--without-odbc \
 		--with-expat=${STAGING_DIR_HOST}${layout_prefix}"
 
 SRC_URI[md5sum] = "82acd25cf3df8c72eba44eaee8b80c19"
-- 
1.7.1




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

* Re: [PATCH] apr-util: disable odbc support to avoid QA error
  2011-05-23 14:07 [PATCH] apr-util: disable odbc support to avoid QA error Steffen Sledz
@ 2011-05-24 13:57 ` Steffen Sledz
  2011-05-24 20:58 ` Paul Menzel
  1 sibling, 0 replies; 4+ messages in thread
From: Steffen Sledz @ 2011-05-24 13:57 UTC (permalink / raw)
  To: Steffen Sledz; +Cc: openembedded-devel, eric, Martin Jansa

On 23.05.2011 16:07, Steffen Sledz wrote:
> The odbc checker part of the configure script seems to be buggy and
> may add host pathes to compiler and linker options:
>
> --------->snip<--------
>   checking for odbc_config... /usr/bin/odbc_config
>     adding "-I/usr/include" to CPPFLAGS
>     adding "-L/usr/lib" to LDFLAGS
>     setting LIBS to "-L/usr/lib -lodbc"
> --------->snip<--------
>
> Signed-off-by: Steffen Sledz<sledz@dresearch-fe.de>

If there are no NAKs i'll push this commit tonight to enable the build on linux distros like openSUSE which fail at the moment.

Steffen

-- 
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058



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

* Re: [PATCH] apr-util: disable odbc support to avoid QA error
  2011-05-23 14:07 [PATCH] apr-util: disable odbc support to avoid QA error Steffen Sledz
  2011-05-24 13:57 ` Steffen Sledz
@ 2011-05-24 20:58 ` Paul Menzel
  2011-05-25  6:02   ` Steffen Sledz
  1 sibling, 1 reply; 4+ messages in thread
From: Paul Menzel @ 2011-05-24 20:58 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1677 bytes --]

Am Montag, den 23.05.2011, 16:07 +0200 schrieb Steffen Sledz:
> The odbc checker part of the configure script seems to be buggy and
> may add host pathes to compiler and linker options:

s/patches/paths/

>
> --------->snip<--------
>  checking for odbc_config... /usr/bin/odbc_config
>    adding "-I/usr/include" to CPPFLAGS
>    adding "-L/usr/lib" to LDFLAGS
>    setting LIBS to "-L/usr/lib -lodbc"
> --------->snip<--------

Did you report that problem upstream?

Why is that a QA error? I would have guessed that the compilation would
fail.

> Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
> ---
>  recipes/apr/apr-util_1.3.10.bb |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/apr/apr-util_1.3.10.bb b/recipes/apr/apr-util_1.3.10.bb
> index ee32ddd..32b568e 100644
> --- a/recipes/apr/apr-util_1.3.10.bb
> +++ b/recipes/apr/apr-util_1.3.10.bb
> @@ -3,7 +3,7 @@ SECTION = "libs"
>  DEPENDS = "apr expat gdbm"
>  LICENSE = "Apache License, Version 2.0"
>  
> -PR = "r0"
> +PR = "r1"
>  
>  SRC_URI = "${APACHE_MIRROR}/apr/${P}.tar.gz \
>             file://configfix.patch \
> @@ -15,6 +15,7 @@ EXTRA_OECONF = "--with-apr=${STAGING_BINDIR_CROSS}/apr-1-config \
>  		--without-sqlite2 \
>  		--without-sqlite3 \
>  		--without-pgsql \
> +		--without-odbc \
>  		--with-expat=${STAGING_DIR_HOST}${layout_prefix}"
>  
>  SRC_URI[md5sum] = "82acd25cf3df8c72eba44eaee8b80c19"

Anyway, since `odbc_config` does not seem to be packaged for
OpenEmbedded, disabling that option seems like a sane thing.

Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH] apr-util: disable odbc support to avoid QA error
  2011-05-24 20:58 ` Paul Menzel
@ 2011-05-25  6:02   ` Steffen Sledz
  0 siblings, 0 replies; 4+ messages in thread
From: Steffen Sledz @ 2011-05-25  6:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Paul Menzel

Am 24.05.2011 22:58, schrieb Paul Menzel:
> Am Montag, den 23.05.2011, 16:07 +0200 schrieb Steffen Sledz:
>> The odbc checker part of the configure script seems to be buggy and
>> may add host pathes to compiler and linker options:
> 
> s/patches/paths/

s/pathes/paths/  ;-)

>> --------->snip<--------
>>  checking for odbc_config... /usr/bin/odbc_config
>>    adding "-I/usr/include" to CPPFLAGS
>>    adding "-L/usr/lib" to LDFLAGS
>>    setting LIBS to "-L/usr/lib -lodbc"
>> --------->snip<--------
> 
> Why is that a QA error? I would have guessed that the compilation would
> fail.

I'm not at the HEAD of org.openembedded.dev but i got this fatal without my patch:

--------->snip<--------
FATAL: This autoconf log indicates errors, it looked at host includes.
Rerun configure task after fixing this. The path was '/home/sledz/work/HydraIP/OE/tmp.6/work/armv5te-angstrom-linux-gnueabi/apr-util-1.3.10-r0/apr-util-1.3.10'
ERROR: Error in executing python function in: /home/sledz/work/openembedded/recipes/apr/apr-util_1.3.10.bb
ERROR: Exception:<type 'exceptions.SystemExit'> Message:1
ERROR: Printing the environment of the function
ERROR: Function do_qa_configure failed
ERROR: TaskFailed event exception, aborting
ERROR: Build of /home/sledz/work/openembedded/recipes/apr/apr-util_1.3.10.bb do_qa_configure failed
NOTE: package apr-util-1.3.10-r0: task do_configure: Succeeded
ERROR: Task 12 (/home/sledz/work/openembedded/recipes/apr/apr-util_1.3.10.bb, do_qa_configure) failed with 256
ERROR: '/home/sledz/work/openembedded/recipes/apr/apr-util_1.3.10.bb' failed
NOTE: Running task 625 of 635 (ID: 12, /home/sledz/work/openembedded/recipes/apr/apr-util_1.3.10.bb, do_qa_configure)
NOTE: package apr-util-1.3.10-r0: task do_qa_configure: Started
FATAL: This autoconf log indicates errors, it looked at host includes.
Rerun configure task after fixing this. The path was '/home/sledz/work/HydraIP/OE/tmp.6/work/armv5te-angstrom-linux-gnueabi/apr-util-1.3.10-r0/apr-util-1.3.10'
ERROR: '/home/sledz/work/openembedded/recipes/apr/apr-util_1.3.10.bb' failed
--------->snip<--------

> Anyway, since `odbc_config` does not seem to be packaged for
> OpenEmbedded, disabling that option seems like a sane thing.
> 
> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>

Thanx and pushed.

Steffen

-- 
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058



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

end of thread, other threads:[~2011-05-25  6:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-23 14:07 [PATCH] apr-util: disable odbc support to avoid QA error Steffen Sledz
2011-05-24 13:57 ` Steffen Sledz
2011-05-24 20:58 ` Paul Menzel
2011-05-25  6:02   ` Steffen Sledz

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.