public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Karl Weigel <xml-22047@gmx.de>
To: Roman Zippel <zippel@linux-m68k.org>
Cc: linux-kernel@vger.kernel.org
Subject: linux-2.5.68-bk8: Problem with "make xconfig"
Date: Tue, 29 Apr 2003 11:27:39 +0200	[thread overview]
Message-ID: <200304291127.39758.xml-22047@gmx.de> (raw)

Hello Roman,


I have difficulties with configuring the kernel with "make xconfig":

  g++ -Wp,-MD,scripts/kconfig/.qconf.o.d -O2  -I/usr/lib/qt3/include  -c -o 
scripts/kconfig/qconf.o scripts/kconfig/qconf.cc
scripts/kconfig/qconf.cc: In destructor `virtual ConfigItem::~ConfigItem()':
scripts/kconfig/qconf.cc:291: error: non-lvalue in unary `&'
make[1]: *** [scripts/kconfig/qconf.o] Fehler 1
make: *** [scripts/kconfig/qconf] Fehler 2


After changing the offending line, it did compile and I was able to configure 
the kernel. However, I am not really sure, whether this change is correct:

--- scripts/kconfig/qconf.cc~   2003-03-17 22:43:38.000000000 +0100
+++ scripts/kconfig/qconf.cc    2003-04-29 11:07:57.000000000 +0200
@@ -288,7 +288,7 @@
 ConfigItem::~ConfigItem(void)
 {
        if (menu) {
-               ConfigItem** ip = &(ConfigItem*)menu->data;
+               ConfigItem** ip = (ConfigItem**)&(menu->data);
                for (; *ip; ip = &(*ip)->nextItem) {
                        if (*ip == this) {
                                *ip = nextItem;


My environment is SuSE Linux 8.2 and GCC 3.3
g++ --version
g++ (GCC) 3.3 20030226 (prerelease) (SuSE Linux)
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


I would like to know, whether this modification would be correct with you.


Regards
Karl


                 reply	other threads:[~2003-04-29  9:32 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=200304291127.39758.xml-22047@gmx.de \
    --to=xml-22047@gmx.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=zippel@linux-m68k.org \
    /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