bug-gnulib archive search

Search String: Display: Description: Sort:

Results:

References: [ VMS: 278 ]

Total 278 documents matching your query.

21. test-rwlock1 failing on latest Fedora Rawhide (score: 2)
Author: HIDDEN
Date: Wed, 23 Jan 2019 19:37:30 +0000
I cannot reproduce this locally, hence my bug report is rather devoid of details. However, it's 100% reproducible in Koji (the Fedora Rawhide build system) on *all* architectures except armv7: FAIL:
/archive/html/bug-gnulib/2019-01/msg00123.html (5,004 bytes)

22. Re: Silent test failures when no French, Japanese, Chinese locales installed (score: 2)
Author: HIDDEN
Date: Fri, 16 Nov 2018 13:18:22 +0000
So the above was the clue to fixing it. Because I'm using -C, ‘config.cache’ was caching the results of a previous locale command. In the upgrade from F28->29 the locales were uninstalled and the
/archive/html/bug-gnulib/2018-11/msg00038.html (6,435 bytes)

23. Silent test failures when no French, Japanese, Chinese locales installed (score: 2)
Author: HIDDEN
Date: Thu, 15 Nov 2018 11:03:59 +0000
I'm using gnulib 6ccfbb4ce5d4fa79f7afb48f3648f2e0401523c3 from a few days ago. After upgrading to Fedora 29, the glibc-langpack-fr locale is no longer installed by default. This causes many tests to
/archive/html/bug-gnulib/2018-11/msg00034.html (6,044 bytes)

24. Re: [PATCH] getloadavg: Allow building on Windows without Cygwin (score: 2)
Author: HIDDEN
Date: Sun, 17 Jun 2018 22:31:18 +0200
Hi Paul, OK. No, I was only commenting on your statement "An alternative would be to use ifdef WINDOWS32 ...". The patch was fine. Maybe in general in GNU. But not in gnulib. Because in gnulib it's e
/archive/html/bug-gnulib/2018-06/msg00018.html (6,800 bytes)

25. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 33)
Author: HIDDEN
Date: Wed, 16 May 2018 19:43:03 +0200
Yes, given that the uses of 'sed' in gnulib are nearly all of the form sed -e 's/@VAR1@/VALUE1/g' ... -e 's/@VARn@/VALUEn/g' FILE you could write a program 'atsubst' such that atsubst VAR1 VALUE1 ...
/archive/html/bug-gnulib/2018-05/msg00145.html (7,397 bytes)

26. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 34)
Author: HIDDEN
Date: Wed, 16 May 2018 20:34:25 +0300
Ah, thanks for clarifications. MS-DOS has glob and fnmatch in its library, so it probably doesn't need those from Gnulib. "MS-DOS" is a misnomer in this case: it really means the DJGPP tools (www.de
/archive/html/bug-gnulib/2018-05/msg00144.html (8,842 bytes)

27. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 33)
Author: HIDDEN
Date: Wed, 16 May 2018 19:14:52 +0200
This sounds like a good compromise between Paul's requirements and the wish to have little manual work. When you implement it, take a look at the gnulib-tool options: --avoid to avoid a module despit
/archive/html/bug-gnulib/2018-05/msg00143.html (6,810 bytes)

28. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 34)
Author: HIDDEN
Date: Wed, 16 May 2018 19:06:23 +0200
But we don't have two gnulibs: one with many features, and a separate one with as few HAVE_* symbols as possible. However, gnulib modules can add new HAVE_* symbols and configuration tests at any mom
/archive/html/bug-gnulib/2018-05/msg00142.html (7,491 bytes)

29. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 34)
Author: HIDDEN
Date: Wed, 16 May 2018 12:53:22 -0400
Sorry for not being clear: I meant 5 replacement header files that contain @-tokens, not 5 supported target systems. The systems we ostensibly support are POSIX/UNIX, Windows, VMS, MS-DOS (?), and Am
/archive/html/bug-gnulib/2018-05/msg00141.html (6,778 bytes)

30. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 34)
Author: HIDDEN
Date: Wed, 16 May 2018 19:33:26 +0300
For the record: what are those 5 systems? MS-Windows is one, but what are the others? Here's an (100% untested) idea: . We ignore all the Gnulib headers that work around problems in standard headers
/archive/html/bug-gnulib/2018-05/msg00140.html (9,637 bytes)

31. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 33)
Author: HIDDEN
Date: Wed, 16 May 2018 19:18:39 +0300
I'm not sure. Make is not like any other GNU package, because it is one of the basic tools required to build other tools. IOW, building Make could be part of bootstrapping a GNU environment on a pla
/archive/html/bug-gnulib/2018-05/msg00139.html (8,433 bytes)

32. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 33)
Author: HIDDEN
Date: Wed, 16 May 2018 18:13:05 +0200
Hi Paul, Using a script to compile the various .c files files in turn is easy. The problem is to maintain the config.h file, if you don't want to assume a configure-capable system. What are the reaso
/archive/html/bug-gnulib/2018-05/msg00138.html (6,858 bytes)

33. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 33)
Author: HIDDEN
Date: Wed, 16 May 2018 08:36:26 -0700
If you have a configure-capable system, use autotools to compile GNU make. If you don't have a configure-capable system, use the provided bootstrap script (or create your own) to build GNU make. Such
/archive/html/bug-gnulib/2018-05/msg00137.html (6,372 bytes)

34. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 33)
Author: HIDDEN
Date: Wed, 16 May 2018 08:43:10 -0400
Unfortunately (perhaps only for me) this isn't sufficient. GNU make is a foundational tool: you need it before you can build any other package. It is also widely used by itself in environments where
/archive/html/bug-gnulib/2018-05/msg00136.html (7,226 bytes)

35. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 36)
Author: HIDDEN
Date: Wed, 16 May 2018 13:41:06 +0200
The VMS people apparently actually achieved this task; the binaries of these tools are for download at https://sourceforge.net/projects/gnv/ . So, the same approach as for porting to native Windows s
/archive/html/bug-gnulib/2018-05/msg00135.html (5,184 bytes)

36. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 35)
Author: HIDDEN
Date: Wed, 16 May 2018 12:03:44 +0200
I think you are barking up the wrong tree. In the other mail I've explained how you can reduce the number of build systems you use from 3 (Autoconf+Automake, Windows nmake, VMS nms) to one (Autoconf+
/archive/html/bug-gnulib/2018-05/msg00134.html (8,040 bytes)

37. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 35)
Author: HIDDEN
Date: Wed, 16 May 2018 11:29:30 +0200
Paul Smith wrote in <https://lists.gnu.org/archive/html/bug-gnulib/2018-04/msg00038.html>: To cope for this case, I would suggest to generate a "build all at once" script from the generated Makefiles
/archive/html/bug-gnulib/2018-05/msg00133.html (14,249 bytes)

38. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 33)
Author: HIDDEN
Date: Tue, 15 May 2018 17:02:23 -0700
On 05/15/2018 03:31 PM, Paul Smith wrote: I understand that the goal is to have versions of these standard header files which can be used without config.h, but the GNU coding standards suggest that c
/archive/html/bug-gnulib/2018-05/msg00130.html (5,714 bytes)

39. Re: Gnulib on Windows (native / mingw32) / VMS / etc. (score: 34)
Author: HIDDEN
Date: Tue, 15 May 2018 18:31:05 -0400
As a starting position I've modified the GNU make repository to change the "src/glob" directory to be a top-level "lib" directory, and I've imported alloca and getloadavg modules from gnulib to repla
/archive/html/bug-gnulib/2018-05/msg00129.html (6,760 bytes)

40. Re: af_alg benchmarks and performance (score: 3)
Author: HIDDEN
Date: Wed, 9 May 2018 09:56:40 -0600
Hello Matteo and all, Let me emphasize that I'm not against this feature, but I just think it should be disabled by default, and enabled explicitly with a "configure" flag when downstream users want
/archive/html/bug-gnulib/2018-05/msg00063.html (11,827 bytes)


This search system is powered by Namazu