search for: enable_nl

Displaying 8 results from an estimated 8 matches for "enable_nl".

Did you mean: enable_nls
2009 Apr 07
1
typo in R-ints.texi's description of P_ macro
...manual/R-ints.texi =================================================================== --- doc/manual/R-ints.texi (revision 48294) +++ doc/manual/R-ints.texi (working copy) @@ -2149,17 +2149,18 @@ @noindent from @file{src/main/errors.c}. -A macro +The @code{P_} macro @example #ifdef ENABLE_NLS #define P_(StringS, StringP, N) ngettext (StringS, StringP, N) #else -#define P_(String, StringP, N) (N > 1 ? StringP: String) +#define P_(StringS, StringP, N) (N > 1 ? StringP: StringS) #endif @end example @noindent +may be used as a wrapper for @code{ngettext}: however in some cases...
2007 Jul 11
1
make error R-5.1 on sun solaris
I hope this is enough information to determine the problem. Thanks in advance for any help. Configure goes ok (I think) ./configure --prefix=$HOME --without-iconv R is now configured for sparc-sun-solaris2.9 Source directory: . Installation directory: /home/dpowers C compiler: gcc -g -O2 Fortran 77 compiler: f95 -g C++ compiler: g++
2001 Dec 03
0
Socket address problems with 2.5.1pre1
...NU C lib 2.2.4. To be precise, the libc comes with Debian unstable distribution and its exact version is 2.2.4-6. The Debian's changelog says for 2.2.4-5: * Pulled from CVS as of Oct 27, 2001: - Includes fnmatch fix upstream. - strxfrm fix. - dlfcn fix for C++ program usage. - ENABLE_NLS fixes for various functions (doesn't affect us, sinceit is mainly meant for non-nls builds). - IPv6 reverse lookup fixes. ... However, I think the problem may not be specific to this C lib version. I applied this patch to socket.c:client_addr() to experiment a bit: --- socket....
2005 Jul 20
1
(PR#8017) build of REventLoop package crashes with 2.1 due
...d(SUPPORT_UTF8) > < #define STRCOLL Rstrcoll > < #else > < > < #ifdef HAVE_STRCOLL > < #define STRCOLL strcoll > < #else > < #define STRCOLL strcmp > < #endif > < > < #endif > < > < /* Localization */ > < > < #ifdef ENABLE_NLS > < #include <libintl.h> > < #ifdef Win32 > < #define _(String) libintl_gettext (String) > < #undef gettext /* needed for graphapp */ > < #else > < #define _(String) gettext (String) > < #endif > < #define gettext_noop(String) String > <...
2005 Jul 19
0
build of REventLoop package crashes with 2.1 due tosyntax error in Defn.h (PR#8017)
...sed in relop.c and sort.c */ < #if defined(Win32) && defined(SUPPORT_UTF8) < #define STRCOLL Rstrcoll < #else < < #ifdef HAVE_STRCOLL < #define STRCOLL strcoll < #else < #define STRCOLL strcmp < #endif < < #endif < < /* Localization */ < < #ifdef ENABLE_NLS < #include <libintl.h> < #ifdef Win32 < #define _(String) libintl_gettext (String) < #undef gettext /* needed for graphapp */ < #else < #define _(String) gettext (String) < #endif < #define gettext_noop(String) String < #define N_(String) gettext_noop (String) <...
2001 Jun 04
2
creating /etc/tinc directories in make install
Hi, I am curious why don't you guys create /etc/tinc directory, set permissions, add /etc/rc.d scripts etc. from the Makefile(s) in the source distribution ? Doing a make install and not finding an example config in /etc/tinc is kind of frustrating. Am I missing something? Maybe there is a good reason for that? Also, why is it not finding evp.h when I try to do configure? Is creating
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
2016 Aug 18
5
[PATCH v2 0/4] New getprogname module
Hi, as discussed in [1], this series adds a new getprogname module. All it does is providing a getprogname function, much like what is found on e.g. *BSD systems, and using it in gnulib instead of progname. Also, using it explicitly by modules avoids gnulib users the need of either use the progname module (GPL), or to provide program_name (and call set_program_name manually, which is not always