search for: dgettext

Displaying 20 results from an estimated 25 matches for "dgettext".

Did you mean: gettext
2008 Sep 11
3
ZFS Crypto [Prelim] Codereview
...ot;Enter new hexadecmial key for"), 180 gettext("Enter hexadecmial key for"), zc->zc_name); DEA-8: Grammar: I suggest changing "Failed generate" to "Failed to generate" in this user-visible message: 194 dgettext(TEXT_DOMAIN, "Failed generate " 195 "key from passphrase.")); Also here: 217 dgettext(TEXT_DOMAIN, "Failed generate " 218 "key from passphrase.")) DEA-9: I prefer character constants to...
2012 Nov 14
1
Notes on compiling libguestfs 1.19.59 on Debian 7 (Wheezy) beta
In no particular order. Some of these need further investigation. ---------------------------------------------------------------------- I had to patch libguestfs not to use febootstrap-supermin-helper --copy-kernel option. See attachment #1. This could be avoided by providing a newer febootstrap in Wheezy. I had to patch libguestfs to make it not use the (not working) virtio-scsi in old
1999 May 17
1
0.64.1 w/Gnome compile error
I get this when I build --with-gnome: make[1]: Entering directory `/storage/build/R-0.64.1/src/include' make[1]: `FFDecl.h' is up to date. make[1]: Leaving directory `/storage/build/R-0.64.1/src/include' gcc -msupersparc -I../include -I../../src/include -I/usr/local/include -DNEED_GNOMESUPPORT_H -I/usr/local/lib/gnome-libs/include -I/usr/local/lib/glib/include -I/usr/openwin/include
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
2019 Dec 20
3
[common/libguestfs PATCH 0/2] Fix OCaml/Python linking
Make sure they can build also in no as-neede setups. Pino Toscano (1): utils: split string list functions in own file build: use split stringlist functions from common/utils utils/Makefile.am | 2 + utils/guestfs-stringlists-utils.h | 30 +++++ utils/guestfs-utils.h | 7 +- utils/stringlists-utils.c | 197 ++++++++++++++++++++++++++++++ utils/utils.c
2016 Dec 24
0
[PATCH] lib: Use a common function to validate strings.
...nd.h index bc57506..ebc1f1b 100644 --- a/src/guestfs-internal-frontend.h +++ b/src/guestfs-internal-frontend.h @@ -32,6 +32,8 @@ #ifndef GUESTFS_INTERNAL_FRONTEND_H_ #define GUESTFS_INTERNAL_FRONTEND_H_ +#include <stdbool.h> + #include "guestfs-internal-all.h" #define _(str) dgettext(PACKAGE, (str)) @@ -89,6 +91,7 @@ extern int guestfs_int_random_string (char *ret, size_t len); extern char *guestfs_int_drive_name (size_t index, char *ret); extern ssize_t guestfs_int_drive_index (const char *); extern int guestfs_int_is_true (const char *str); +extern bool guestfs_int_string_...
2008 May 18
2
problem of building stardict
...orking mmap... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... yes checking for dgettext in libc... yes checking for bind_textdomain_codeset... yes checking for msgfmt... /usr/bin/msgfmt checking for dcgettext... yes checking if msgfmt accepts -c... yes checking for gmsgfmt... /usr/bin/msgfmt checking for xgettext... /usr/bin/xgettext checking for pkg-config... /usr/bin/pkg-config chec...
2016 Dec 24
2
[PATCH] lib: Use a common function to validate strings.
As discussed in the thread on validating $TERM, it would be good to have a common function to do this. This is such a function. The main advantage is it includes unit tests which the previous functions did not. Rich.
2008 Dec 22
1
Error compiling R.2.8.1 with gcc 4.4 on Mac OS 10.5.6
.../include -DHAVE_CONFIG_H -fPIC -g -O2 -c zutil.c -o zutil.o rm -f libz.a ar cr libz.a adler32.o compress.o crc32.o deflate.o gzio.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o ranlib libz.a making bindtextdom.d from bindtextdom.c making dcgettext.d from dcgettext.c making dgettext.d from dgettext.c making gettext.d from gettext.c making finddomain.d from finddomain.c making loadmsgcat.d from loadmsgcat.c making textdomain.d from textdomain.c making l10nflist.d from l10nflist.c making explodename.d from explodename.c making dcigettext.d from dcigettext.c making dcngettext.d f...
2010 Nov 01
1
Samba 4 on osx
...: not found Checking for gethostent_r : not found Checking for gethostbyname_r : not found Checking for dgettext : not found Checking for gettext : not found Checking for iruserok : ok...
2010 Oct 07
1
OSX and samba4 git
...: not found Checking for gethostent_r : not found Checking for gethostbyname_r : not found Checking for dgettext : not found Checking for gettext : not found Checking for iruserok : ok...
2017 Jun 15
0
[PATCH v6 05/41] utils: Split out cleanups into common/cleanups.
...estfs-internal-frontend.h index e48f4eb49..dacc92e49 100644 --- a/common/utils/guestfs-internal-frontend.h +++ b/common/utils/guestfs-internal-frontend.h @@ -35,48 +35,16 @@ #include <stdbool.h> #include "guestfs-internal-all.h" +#include "cleanups.h" #define _(str) dgettext(PACKAGE, (str)) #define N_(str) dgettext(PACKAGE, (str)) #ifdef HAVE_ATTRIBUTE_CLEANUP -#define CLEANUP_FREE __attribute__((cleanup(guestfs_int_cleanup_free))) #define CLEANUP_FREE_STRING_LIST \ __attribute__((cleanup(guestfs_int_cleanup_free_string_list))) -#...
2018 Feb 09
1
R Compilation gets stuck on Windows 64
Please note that building R on Windows is documented in "R Installation and Administration", including links to external software. Particularly there is a link to texinfo which is part of Rtools. The documentation is maintained and it is a sufficient source of information for building R on Windows. https://cran.r-project.org/doc/manuals/r-release/R-admin.html
2018 Dec 06
3
Build error while upgrading samba 4.9.3
...es Checking for res_search : ok Checking for header libintl.h : yes Checking for library intl : not found Checking for declaration of dgettext : ok Checking for declaration of gettext : ok Checking for declaration of bindtextdomain : ok Checking for declaration of textdomain...
2008 Dec 29
0
Serial Correlation Test for Short Time Series
.../include -DHAVE_CONFIG_H -fPIC -g -O2 -c zutil.c -o zutil.o rm -f libz.a ar cr libz.a adler32.o compress.o crc32.o deflate.o gzio.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o ranlib libz.a making bindtextdom.d from bindtextdom.c making dcgettext.d from dcgettext.c making dgettext.d from dgettext.c making gettext.d from gettext.c making finddomain.d from finddomain.c making loadmsgcat.d from loadmsgcat.c making textdomain.d from textdomain.c making l10nflist.d from l10nflist.c making explodename.d from explodename.c making dcigettext.d from dcigettext.c making dcngettext.d f...
2010 Feb 04
3
3.3 and 3.4 compile failure on dbwrap
...ock... yes checking for mlockall... yes checking for munlockall... yes checking for memalign... yes checking for posix_memalign... no checking for hstrerror... no checking for sys/mman.h... (cached) yes checking for shmget... yes checking for shm_open... yes checking for gettext... yes checking for dgettext... yes checking for strupr... no checking execinfo.h usability... no checking execinfo.h presence... no checking for execinfo.h... no checking libexc.h usability... no checking libexc.h presence... no checking for libexc.h... no checking libunwind.h usability... no checking libunwind.h presence......
2010 May 11
1
Samba 3.5.2 compile on AIX
...ock... yes checking for mlockall... yes checking for munlockall... yes checking for memalign... no checking for posix_memalign... yes checking for hstrerror... yes checking for sys/mman.h... (cached) yes checking for shmget... yes checking for shm_open... yes checking for gettext... no checking for dgettext... no checking for bindtextdomain... no checking for textdomain... no checking for strupr... no checking execinfo.h usability... no checking execinfo.h presence... no checking for execinfo.h... no checking libexc.h usability... no checking libexc.h presence... no checking for libexc.h... no checkin...
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi, as it was already discussed on this list, here it is my attempt in splitting virt-p2v in an own repository. Sadly there are things that must be copied from libguestfs, as it cannot be avoided. The approach taken was to run a script (will send separately) to just get the "p2v" subdirectory with its history as own repository, and then add in few followup commits all the bits needed
2017 Jun 19
16
[PATCH v7 00/13] Refactor utilities
This is just the utilities part of the patch series from: https://www.redhat.com/archives/libguestfs/2017-June/msg00103.html I believe this addresses everything raised in comments on that patch series. Rich.
2013 Jan 07
4
3.6.10 file handle leak under ancient 32-bit kernel
...ck... yes checking for mlockall... yes checking for munlockall... yes checking for memalign... yes checking for posix_memalign... yes checking for hstrerror... yes checking for sys/mman.h... (cached) yes checking for shmget... yes checking for shm_open... no checking for gettext... yes checking for dgettext... yes checking for bindtextdomain... yes checking for textdomain... yes checking for strupr... no checking execinfo.h usability... yes checking execinfo.h presence... yes checking for execinfo.h... yes checking libexc.h usability... no checking libexc.h presence... no checking for libexc.h... no c...