All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sam Ravnborg <sam@ravnborg.org>
To: Egry G?bor <gaboregry@t-online.hu>
Cc: Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>,
	Roman Zippel <zippel@linux-m68k.org>,
	Massimo Maiurana <maiurana@inwind.it>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	KernelFR <kernelfr@traduc.org>,
	Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Subject: Re: [PATCH 0/19] Kconfig I18N completion
Date: Wed, 13 Jul 2005 20:45:00 +0000	[thread overview]
Message-ID: <20050713204500.GA16284@mars.ravnborg.org> (raw)
In-Reply-To: <1121273456.2975.3.camel@spirit>

On Wed, Jul 13, 2005 at 06:50:56PM +0200, Egry G?bor wrote:
> Hello,
> 
> The following patches complete the "Kconfig I18N support" patch by
> Arnaldo. 
> 
> The following parts are internationalised:
> - Kconfig prompt, help, comment and menu texts
> - full visible configuration interfaces
> - error messages if the user can correct the errors (ex. saving config
> file)
> - answering (Y/M/N)
> - option's value if it is a choice (viewing only)
> 
> Without I18N support:
> - symbol names (CONFIG_xxx)
> - Kconfig parsing errors in LKC
> - lxdialog's errors
> - content of the config file
> - disabled debug messages in the source code
> 
> Some incomplete language files are downloadable from the
> http://sourceforge.net/projects/tlktp/ page for testing (langpack).
> 
> Currently available:
> - Italian (98%)
> - Hungarian (67%)
> - French (37%)
> - Catalan (10%)
> - Russian (5%)
> 
> All patches are tested without any problems.

When I apply them to latest Linus tree I gett a few fuzz and a single
reject. After fixing this and compiling I get a number of warnings and
errors. I have not investigated the source of this.

	Sam

make menuconfig output:

Makefile:485: .config: No such file or directory
make[1]: Nothing to be done for `Makefile'.
  HOSTCC  scripts/lxdialog/checklist.o
scripts/lxdialog/checklist.c: In function `print_item':
scripts/lxdialog/checklist.c:63: warning: implicit declaration of function `mvwaddwstr'
scripts/lxdialog/checklist.c:65: warning: implicit declaration of function `waddwstr'
  HOSTCC  scripts/lxdialog/inputbox.o
scripts/lxdialog/inputbox.c: In function `dialog_inputbox':
scripts/lxdialog/inputbox.c:89: warning: implicit declaration of function `waddwstr'
  HOSTCC  scripts/lxdialog/lxdialog.o
  HOSTCC  scripts/lxdialog/menubox.o
scripts/lxdialog/menubox.c: In function `print_item':
scripts/lxdialog/menubox.c:99: warning: implicit declaration of function `mvwaddwstr'
scripts/lxdialog/menubox.c: In function `dialog_menu':
scripts/lxdialog/menubox.c:236: warning: implicit declaration of function `waddwstr'
scripts/lxdialog/menubox.c:549: warning: implicit declaration of function `_'
scripts/lxdialog/menubox.c:549: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
scripts/lxdialog/menubox.c:550: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
scripts/lxdialog/menubox.c:551: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
scripts/lxdialog/menubox.c:552: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
  HOSTCC  scripts/lxdialog/msgbox.o
scripts/lxdialog/msgbox.c: In function `dialog_msgbox':
scripts/lxdialog/msgbox.c:63: warning: implicit declaration of function `waddwstr'
  HOSTCC  scripts/lxdialog/textbox.o
scripts/lxdialog/textbox.c: In function `dialog_textbox':
scripts/lxdialog/textbox.c:126: warning: implicit declaration of function `waddwstr'
  HOSTCC  scripts/lxdialog/util.o
scripts/lxdialog/util.c: In function `print_autowrap':
scripts/lxdialog/util.c:217: warning: implicit declaration of function `waddwstr'
  HOSTCC  scripts/lxdialog/yesno.o
scripts/lxdialog/yesno.c: In function `dialog_yesno':
scripts/lxdialog/yesno.c:85: warning: implicit declaration of function `waddwstr'
scripts/lxdialog/yesno.c:113: warning: implicit declaration of function `_'
scripts/lxdialog/yesno.c:113: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
scripts/lxdialog/yesno.c:114: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
scripts/lxdialog/yesno.c:115: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
scripts/lxdialog/yesno.c:116: warning: passing arg 1 of `to_wchar' makes pointer from integer without a cast
  HOSTLD  scripts/lxdialog/lxdialog
scripts/lxdialog/menubox.o(.text+0xe6b): In function `dialog_menu':
: undefined reference to `_'
scripts/lxdialog/menubox.o(.text+0xe83): In function `dialog_menu':
: undefined reference to `_'
scripts/lxdialog/menubox.o(.text+0xe99): In function `dialog_menu':
: undefined reference to `_'
scripts/lxdialog/menubox.o(.text+0xeaf): In function `dialog_menu':
: undefined reference to `_'
scripts/lxdialog/yesno.o(.text+0x2a9): In function `dialog_yesno':
: undefined reference to `_'
scripts/lxdialog/yesno.o(.text+0x2bf): more undefined references to `_' follow
collect2: ld returned 1 exit status
make[3]: *** [scripts/lxdialog/lxdialog] Error 1
make[2]: *** [menuconfig] Error 2
make[1]: *** [menuconfig] Error 2
make: *** [menuconfig] Error 2

  parent reply	other threads:[~2005-07-13 18:58 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-07-13 16:50 [PATCH 0/19] Kconfig I18N completion Egry Gábor
2005-07-13 17:04 ` [PATCH 1/19] Kconfig I18N: sublocale Egry Gábor
2005-07-13 17:07 ` [PATCH 2/19] Kconfig I18N: lxdialog: width fix Egry Gábor
2005-07-13 17:26   ` [PATCH] Kconfig: lxdialog: Enable UTF8 Jan Engelhardt
2005-07-14  0:26     ` Ken Moffat
2005-07-16  9:54       ` Sam Ravnborg
2005-07-16 10:12         ` Ken Moffat
2005-07-16 22:14           ` Ken Moffat
2005-07-13 17:09 ` [PATCH 3/19] Kconfig I18N: lxdialog Egry Gábor
2005-07-13 17:11 ` [PATCH 4/19] Kconfig I18N: lxdialog: multibyte character support Egry Gábor
2005-07-14  0:10   ` Roman Zippel
2005-07-13 17:13 ` [PATCH 5/19] Kconfig I18N: lxdialog: answering Egry Gábor
2005-07-13 17:15 ` [PATCH 6/19] Kconfig I18N: config Egry Gábor
2005-07-13 17:17 ` [PATCH 7/19] Kconfig I18N: gconfig Egry Gábor
2005-07-13 17:18 ` [PATCH 8/19] Kconfig I18N: gconfig: GUI Egry Gábor
2005-07-13 17:20 ` [PATCH 9/19] Kconfig I18N: gconfig: answering Egry Gábor
2005-07-13 17:21 ` [PATCH 10/19] Kconfig I18N: gconfig: missing macros Egry Gábor
2005-07-13 17:23 ` [PATCH 11/19] Kconfig I18N: gconfig: symbol fix Egry Gábor
2005-07-13 17:24 ` [PATCH 12/19] Kconfig I18N: menuconfig Egry Gábor
2005-07-13 17:26 ` [PATCH 13/19] Kconfig I18N: menuconfig: answering Egry Gábor
2005-07-13 17:27 ` [PATCH 14/19] Kconfig I18N: menuconfig: missing macros Egry Gábor
2005-07-13 17:28 ` [PATCH 15/19] Kconfig I18n: xconfig Egry Gábor
2005-07-13 17:30 ` [PATCH 16/19] Kconfig I18n: xconfig: answering Egry Gábor
2005-07-13 17:31 ` [PATCH 17/19] Kconfig I18N: xconfig: symbol fix Egry Gábor
2005-07-13 17:33 ` [PATCH 18/19] Kconfig I18N: LKC: whitespace removing Egry Gábor
2005-07-14  0:12   ` Roman Zippel
2005-07-13 17:35 ` [PATCH 19/19] Kconfig I18N: UI: Hungarian translation Egry Gábor
2005-07-13 17:41 ` [PATCH 0/19] Kconfig I18N completion Linus Torvalds
2005-07-13 18:03   ` Egry Gábor
2005-07-13 20:11     ` Sam Ravnborg
2005-07-13 18:41       ` Egry Gábor
2005-07-13 19:02         ` Linus Torvalds
2005-07-15 17:41           ` Arnaldo Carvalho de Melo
2005-07-13 20:48         ` Sam Ravnborg
2005-07-14 10:03         ` Jan Engelhardt
2005-07-13 20:04   ` Jan Engelhardt
2005-07-13 20:45 ` Sam Ravnborg [this message]
2005-07-14  3:42   ` Sam Ravnborg
2005-07-14  0:06 ` Roman Zippel

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=20050713204500.GA16284@mars.ravnborg.org \
    --to=sam@ravnborg.org \
    --cc=acme@conectiva.com.br \
    --cc=akpm@osdl.org \
    --cc=gaboregry@t-online.hu \
    --cc=kernelfr@traduc.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maiurana@inwind.it \
    --cc=torvalds@osdl.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 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.