* [meta-oe] geany-fix
@ 2013-02-27 7:30 Andreas Müller
2013-02-27 7:30 ` [meta-oe] geany: fix compile by removing extra check for c++ compiler Andreas Müller
0 siblings, 1 reply; 4+ messages in thread
From: Andreas Müller @ 2013-02-27 7:30 UTC (permalink / raw)
To: openembedded-devel
Martin,
I did not see the mentioned error here so can you please build test in world
before applying - Thanks.
Andreas
The following changes since commit 84ea5433739ddc2551216902f6053d5c2368e755:
macchanger: added 1.5.0 recipe (2013-02-25 09:59:56 -0500)
are available in the git repository at:
git@gitorious.org:schnitzeltony-oe-meta/meta-openembedded.git geany-fix
Andreas Müller (1):
geany: fix compile by removing extra check for c++ compiler
...001-configure.ac-remove-additional-c-test.patch | 47 ++++++++++++++++++++
meta-oe/recipes-devtools/geany/geany_1.22.bb | 6 ++-
2 files changed, 52 insertions(+), 1 deletions(-)
create mode 100644 meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch
--
1.7.6.5
^ permalink raw reply [flat|nested] 4+ messages in thread* [meta-oe] geany: fix compile by removing extra check for c++ compiler 2013-02-27 7:30 [meta-oe] geany-fix Andreas Müller @ 2013-02-27 7:30 ` Andreas Müller 2013-02-28 23:51 ` Martin Jansa 0 siblings, 1 reply; 4+ messages in thread From: Andreas Müller @ 2013-02-27 7:30 UTC (permalink / raw) To: openembedded-devel Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> --- ...001-configure.ac-remove-additional-c-test.patch | 47 ++++++++++++++++++++ meta-oe/recipes-devtools/geany/geany_1.22.bb | 6 ++- 2 files changed, 52 insertions(+), 1 deletions(-) create mode 100644 meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch diff --git a/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch b/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch new file mode 100644 index 0000000..5166fec --- /dev/null +++ b/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch @@ -0,0 +1,47 @@ +From e62d5b59262ec7ffe07931790712c7e247377795 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> +Date: Thu, 21 Feb 2013 09:31:31 +0100 +Subject: [PATCH] configure.ac remove additional c++ test +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +For openembedded cross-builds CXX can contain something like: + +arm-oe-linux-gnueabi-g++ -march=armv5te -marm -mthumb-interwork --sysroot=/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/sysroots/qemuarm + +This ends up in + +configure:5582: error: No C++ compiler found. Please install a C++ compiler. + +Anyway if [1] is still valid, the combination of AC_PROG_CC and AC_PROG_CXX +should thow an error message. + +[1] http://lists.gnu.org/archive/html/bug-autoconf/2010-05/msg00001.html + +Upstream-Status: Inappropriate [configuration] + +Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> +--- + configure.ac | 5 ----- + 1 files changed, 0 insertions(+), 5 deletions(-) + +diff --git a/configure.ac b/configure.ac +index c37312a..742bf35 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -26,11 +26,6 @@ AC_USE_SYSTEM_EXTENSIONS + AC_PROG_CC + + AC_PROG_CXX +-# check for C++ compiler explicitly and fail if none is found, do this check +-# after AC_PROG_CXX has set the CXX environment variable +-if ! which $CXX >/dev/null 2>&1; then +- AC_MSG_ERROR([No C++ compiler found. Please install a C++ compiler.]) +-fi + + AC_PROG_INSTALL + AC_PROG_LN_S +-- +1.7.6.5 + diff --git a/meta-oe/recipes-devtools/geany/geany_1.22.bb b/meta-oe/recipes-devtools/geany/geany_1.22.bb index 1e56ec8..e0b5df5 100644 --- a/meta-oe/recipes-devtools/geany/geany_1.22.bb +++ b/meta-oe/recipes-devtools/geany/geany_1.22.bb @@ -3,10 +3,14 @@ HOMEPAGE = "http://www.geany.org/" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=c107cf754550e65755c42985a5d4e9c9" DEPENDS = "gtk+" +PR = "r1" inherit autotools pkgconfig -SRC_URI = "http://download.geany.org/${PN}-${PV}.tar.bz2" +SRC_URI = " \ + http://download.geany.org/${PN}-${PV}.tar.bz2 \ + file://0001-configure.ac-remove-additional-c-test.patch \ +" SRC_URI[md5sum] = "0672077fe83e2a739aa0eaca426aacf0" SRC_URI[sha256sum] = "901a35a7395ef10a80fb10b3ab63bae3871693a4e82d56388e9521a27877577e" -- 1.7.6.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-oe] geany: fix compile by removing extra check for c++ compiler 2013-02-27 7:30 ` [meta-oe] geany: fix compile by removing extra check for c++ compiler Andreas Müller @ 2013-02-28 23:51 ` Martin Jansa 2013-03-01 0:24 ` Andreas Müller 0 siblings, 1 reply; 4+ messages in thread From: Martin Jansa @ 2013-02-28 23:51 UTC (permalink / raw) To: openembedded-devel [-- Attachment #1: Type: text/plain, Size: 3986 bytes --] On Wed, Feb 27, 2013 at 08:30:24AM +0100, Andreas Müller wrote: > Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Thanks, now it fails a bit later: | configure:17392: checking for perl >= 5.8.1 | configure:17399: result: 5.14.2 | configure:17403: checking for XML::Parser | configure:17409: error: XML::Parser perl module is required for intltool Complete log: http://logs.nslu2-linux.org/buildlogs/oe/oe-shr-core-branches/log.world.20130228_192523.log/ > --- > ...001-configure.ac-remove-additional-c-test.patch | 47 ++++++++++++++++++++ > meta-oe/recipes-devtools/geany/geany_1.22.bb | 6 ++- > 2 files changed, 52 insertions(+), 1 deletions(-) > create mode 100644 meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch > > diff --git a/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch b/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch > new file mode 100644 > index 0000000..5166fec > --- /dev/null > +++ b/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch > @@ -0,0 +1,47 @@ > +From e62d5b59262ec7ffe07931790712c7e247377795 Mon Sep 17 00:00:00 2001 > +From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> > +Date: Thu, 21 Feb 2013 09:31:31 +0100 > +Subject: [PATCH] configure.ac remove additional c++ test > +MIME-Version: 1.0 > +Content-Type: text/plain; charset=UTF-8 > +Content-Transfer-Encoding: 8bit > + > +For openembedded cross-builds CXX can contain something like: > + > +arm-oe-linux-gnueabi-g++ -march=armv5te -marm -mthumb-interwork --sysroot=/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/sysroots/qemuarm > + > +This ends up in > + > +configure:5582: error: No C++ compiler found. Please install a C++ compiler. > + > +Anyway if [1] is still valid, the combination of AC_PROG_CC and AC_PROG_CXX > +should thow an error message. > + > +[1] http://lists.gnu.org/archive/html/bug-autoconf/2010-05/msg00001.html > + > +Upstream-Status: Inappropriate [configuration] > + > +Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> > +--- > + configure.ac | 5 ----- > + 1 files changed, 0 insertions(+), 5 deletions(-) > + > +diff --git a/configure.ac b/configure.ac > +index c37312a..742bf35 100644 > +--- a/configure.ac > ++++ b/configure.ac > +@@ -26,11 +26,6 @@ AC_USE_SYSTEM_EXTENSIONS > + AC_PROG_CC > + > + AC_PROG_CXX > +-# check for C++ compiler explicitly and fail if none is found, do this check > +-# after AC_PROG_CXX has set the CXX environment variable > +-if ! which $CXX >/dev/null 2>&1; then > +- AC_MSG_ERROR([No C++ compiler found. Please install a C++ compiler.]) > +-fi > + > + AC_PROG_INSTALL > + AC_PROG_LN_S > +-- > +1.7.6.5 > + > diff --git a/meta-oe/recipes-devtools/geany/geany_1.22.bb b/meta-oe/recipes-devtools/geany/geany_1.22.bb > index 1e56ec8..e0b5df5 100644 > --- a/meta-oe/recipes-devtools/geany/geany_1.22.bb > +++ b/meta-oe/recipes-devtools/geany/geany_1.22.bb > @@ -3,10 +3,14 @@ HOMEPAGE = "http://www.geany.org/" > LICENSE = "GPLv2" > LIC_FILES_CHKSUM = "file://COPYING;md5=c107cf754550e65755c42985a5d4e9c9" > DEPENDS = "gtk+" > +PR = "r1" > > inherit autotools pkgconfig > > -SRC_URI = "http://download.geany.org/${PN}-${PV}.tar.bz2" > +SRC_URI = " \ > + http://download.geany.org/${PN}-${PV}.tar.bz2 \ > + file://0001-configure.ac-remove-additional-c-test.patch \ > +" > SRC_URI[md5sum] = "0672077fe83e2a739aa0eaca426aacf0" > SRC_URI[sha256sum] = "901a35a7395ef10a80fb10b3ab63bae3871693a4e82d56388e9521a27877577e" > > -- > 1.7.6.5 > > > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 205 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-oe] geany: fix compile by removing extra check for c++ compiler 2013-02-28 23:51 ` Martin Jansa @ 2013-03-01 0:24 ` Andreas Müller 0 siblings, 0 replies; 4+ messages in thread From: Andreas Müller @ 2013-03-01 0:24 UTC (permalink / raw) To: openembedded-devel On Fri, Mar 1, 2013 at 12:51 AM, Martin Jansa <martin.jansa@gmail.com> wrote: > On Wed, Feb 27, 2013 at 08:30:24AM +0100, Andreas Müller wrote: >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> > > Thanks, now it fails a bit later: > | configure:17392: checking for perl >= 5.8.1 > | configure:17399: result: 5.14.2 > | configure:17403: checking for XML::Parser > | configure:17409: error: XML::Parser perl module is required for intltool > > Complete log: > http://logs.nslu2-linux.org/buildlogs/oe/oe-shr-core-branches/log.world.20130228_192523.log/ > Another chapter of success-stroies :) Will check that next week Andreas ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-03-01 0:41 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-02-27 7:30 [meta-oe] geany-fix Andreas Müller 2013-02-27 7:30 ` [meta-oe] geany: fix compile by removing extra check for c++ compiler Andreas Müller 2013-02-28 23:51 ` Martin Jansa 2013-03-01 0:24 ` Andreas Müller
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.