search for: msgcat

Displaying 20 results from an estimated 23 matches for "msgcat".

2000 Sep 27
0
FreeBSD Security Advisory: FreeBSD-SA-00:53.catopen
...y simply recompiling the shared libc library). To patch your present system: save the patch below into a file, and execute the following commands as root: cd /usr/src/lib/libc patch < /path/to/patch/file make all make install Patches for FreeBSD systems before the correction date: Index: msgcat.c =================================================================== RCS file: /usr2/ncvs//src/lib/libc/nls/msgcat.c,v retrieving revision 1.21 retrieving revision 1.27 diff -u -r1.21 -r1.27 --- nls/msgcat.c 2000/01/27 23:06:33 1.21 +++ nls/msgcat.c 2000/09/01 11:56:31...
1998 May 26
0
Re: Beware of dangerous enviroment (Re: Overflows in minicom)
...ames[category]); if (*name == NULL || (*name)[0] == ''\0'') - *name = getenv ("LANG"); + *name = __libc_secure_getenv ("LANG"); if (*name == NULL || (*name)[0] == ''\0'') *name = (char *) _nl_C_name; } --- libc-5.4.44/libc/nls/msgcat.c.secenv Thu Aug 28 04:59:19 1997 +++ libc-5.4.44/libc/nls/msgcat.c Sat May 16 16:45:42 1998 @@ -124,6 +124,8 @@ #include <sys/mman.h> #endif +extern char *__libc_secure_getenv(const char *); + nl_catd catopen( const char *name, int type ) { @@ -141,13 +143,13 @@ if (stat(catpath, &a...
2013 Dec 05
0
[PATCH 1/3] po: fix broken message extraction
...dir) $(DOMAIN).pot: Makefile $(POTFILES) $(POTFILES-pl) $(POTFILES-ml) - rm -f $@-t $@-pl $@-ml - $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \ - --files-from=$(abs_srcdir)/POTFILES - $(XGETTEXT) -o $@-pl $(XGETTEXT_ARGS) --language=Perl \ - --files-from=$(abs_srcdir)/POTFILES-pl -# Don't trust msgcat since it will definitely screw up. Instead, chop -# the head from the second file and append it to the first. - echo >> $@-t - awk '/^#:/{i++}i{print}' < $@-pl >> $@-t - rm $@-pl + rm -f $@-t if HAVE_OCAML_GETTEXT - $(OCAML_GETTEXT) --action extract --extract-pot $@-ml $(PO...
2013 Dec 05
6
[PATCH 0/3] Small improvements to i18n extraction/handling
Hi, here there are few patches to improve the extraction of translatable messages, and the usage of messages with plural forms. Pino Toscano (3): po: fix broken message extraction po: fix dependencies for libguestfs.pot extraction fish: improve the command error messages generator/fish.ml | 20 ++++++++++++++++---- po/Makefile.am | 24 +++++++----------------- 2 files changed, 23
2013 Dec 05
1
Re: [PATCH 1/3] po: fix broken message extraction
...e $(POTFILES) $(POTFILES-pl) $(POTFILES-ml) > - rm -f $@-t $@-pl $@-ml > - $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \ > - --files-from=$(abs_srcdir)/POTFILES > - $(XGETTEXT) -o $@-pl $(XGETTEXT_ARGS) --language=Perl \ > - --files-from=$(abs_srcdir)/POTFILES-pl > -# Don't trust msgcat since it will definitely screw up. Instead, chop > -# the head from the second file and append it to the first. > - echo >> $@-t > - awk '/^#:/{i++}i{print}' < $@-pl >> $@-t > - rm $@-pl > + rm -f $@-t > if HAVE_OCAML_GETTEXT > - $(OCAML_GETTEXT) --acti...
2019 Nov 27
5
[v2v PATCH v2 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga -- now with working test suite. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am
2019 Nov 27
6
[v2v PATCH 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am | 2 - bootstrap
2002 Jul 14
6
20020710 & winetest
Last 3 wines are failed to compile on various reasons. (If I remember correctly: 20020411 compiles; 20020509, 20020605, 20020710 does not.) wine 20020710 make[2]: Entering directory `/home/hurtta/game/wine-20020710/programs/winetest' gcc -c -I. -I. -I../../include -I../../include `perl -MExtUtils::Embed -e perl_inc` -g -O2 -Wall -fno-strength-reduce -mpreferred-stack-boundary=2 -fPIC
2007 Oct 15
0
iwidgets not found in r on windows
...tcl list the names of packages, Iwidgets seems available. I use R 2.6.0; in addition addTclPath("C:/Tcl/lib") has been used (in which iwidets is present) > try(tcl("package", "names")) <Tcl> http opt tcltest ::Utility::expand Widget ::Utility::number BWidget msgcat Tktable Hierarchy ::Utility Iwidgets registry ::Utility::dump ::Utility::tk ::Utility::string Tcl dde Tk > tclRequire("BWidget") <Tcl> 1.8 > tclRequire("Tktable") <Tcl> 2.9 > tclRequire("Iwidgets") [1] FALSE Warning message: In tclRequire("...
2005 May 21
1
Internationalizing the Rcmdr package?
Dear R-devel list members, I'm considering adding support for other languages than English to the Rcmdr package. I understand that the use of Tcl/Tk by the Rcmdr package means I won't be able to make full use of the internationalization facilities in R 2.1.0. I'm interested, therefore, in whether the following, more limited, strategy (which bears some similarity to the
1998 May 30
9
"Flavors of Security Through Obscurity"
This was posted not too long ago on sci.crypt... Enjoy... I think the most relevant information is near the top, but it''s all quite good... :-) -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- There is no intrinsic difference between algorithm and data, the same information can be viewed as data in one context and as algorithm in another. Why then do so many people claim that encryption algorithms
2014 Nov 04
0
[PATCH 3/9] build: check for libintl, and use it
...ML files for the website. diff --git a/configure.ac b/configure.ac index dd7a70b..5f3828d 100644 --- a/configure.ac +++ b/configure.ac @@ -383,6 +383,9 @@ AC_MSG_RESULT([$msgfmt_is_gnu]) AM_CONDITIONAL([HAVE_GNU_GETTEXT], [test "x$XGETTEXT" != "xno" && test "x$MSGCAT" != "xno" && test "x$MSGFMT" != "xno" && test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"]) +dnl Check for gettext. +AM_GNU_GETTEXT([external]) + dnl Default backend. AC_MSG_CHECKING(...
2014 Nov 04
2
Re: [PATCH 3/9] build: check for libintl, and use it
...--git a/configure.ac b/configure.ac > index dd7a70b..5f3828d 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -383,6 +383,9 @@ AC_MSG_RESULT([$msgfmt_is_gnu]) > AM_CONDITIONAL([HAVE_GNU_GETTEXT], > [test "x$XGETTEXT" != "xno" && test "x$MSGCAT" != "xno" && test "x$MSGFMT" != "xno" && test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"]) > > +dnl Check for gettext. > +AM_GNU_GETTEXT([external]) > + > dnl Default b...
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi, continuing what started a couple of weeks ago [1], the attached patch series continues the work in making it easier to build and run libguestfs (in fixed appliance mode) on OSes different than Linux. The provided changes should cause no functional changes on Linux. [1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html Thanks, -- Pino Pino Toscano (9): build: check
2012 Apr 30
5
[PATCH 0/4 v1] Remove gettextify, implement OCaml gettext.
Version 1 of the patch, for discussion, but not to be applied. It does work, but needs a lot more testing. This removes all the psychopathic gettextify cruft, and replaces it with a 99 line Makefile.am. A large win, I think. The third patch implements gettext support in the OCaml tools. The fourth patch is just for illustration. It shows the consequent changes to libguestfs.pot and the po
2006 Jun 24
8
How to install programs in wine?
I am a rank newbie to Linux and wine. I am running Ubuntu Dapper on an AMD 1800 mhz machine, wine 0.9.15 Everything I have read says use the installer to load windows programs. Where is the installer? Thanks, -- Ron Thompson On the Beautiful Florida Space Coast, right beside the Kennedy Space Center, USA http://www.plansandprojects.com My hobby pages are here:
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a
2014 May 29
3
Re: libguestfs error
...for setitimer... yes checking for setxattr... yes checking for sigaction... (cached) yes checking for statvfs... yes checking for sync... yes checking for tgetent in -lncurses... yes checking for tputs in -lncurses... yes checking for UP in -lncurses... yes checking for xgettext... no checking for msgcat... no checking for msgfmt... no checking for msgmerge... no checking msgfmt is GNU tool... no checking if we should build the daemon... yes checking if we should install the daemon... no checking if we should run the daemon under valgrind... no checking which of /sbin /usr/sbin /bin /usr/bin is a r...
2014 May 29
2
Re: libguestfs error
Hi Rich Yes Rich I have tried libguesftfs on powerpc and it was working fine.For some reason i had to format my hard disk and now when I'm again compiling it,I'm getting following error.... Below is the status of configure .. This is how we have configured the optional components for you today: Daemon .............................. yes Appliance ........................... yes QEMU
2017 Jul 07
2
[PATCH v2] v2v: docs: VDSM location of virt-v2v log file.
See this bug for background information: https://bugzilla.redhat.com/show_bug.cgi?id=1350465 Thanks: Tomáš Golembiovský --- v2v/virt-v2v.pod | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod index e68d75cf8..0943bf305 100644 --- a/v2v/virt-v2v.pod +++ b/v2v/virt-v2v.pod @@ -1909,18 +1909,32 @@ that