bug-gnulib archive search

Search String: Display: Description: Sort:

Results:

References: [ VMS: 278 ]

Total 278 documents matching your query.

181. [patch]gnu tar 1.19, rtapelib.c (score: 5)
Author: HIDDEN
Date: Mon, 31 Mar 2008 22:51:35 -0500
This is what VMS needs to be able to issue the rsh command. VMS does not really fork(), what happens is that the fork() calls a routine named vfork() via a macro which sets a longjump to appear to re
/archive/html/bug-gnulib/2008-03/msg00299.html (5,304 bytes)

182. [patch]gnu tar 1.19 canonicalize-lgpl_c.gdiff (score: 6)
Author: HIDDEN
Date: Mon, 31 Mar 2008 22:20:03 -0500
Update VMS special code to work with gnulib headers. -John address@hidden Personal Opinion Only -- /src_root/tar-1.19/lib/canonicalize-lgpl.c Fri Sep 28 08:11:36 2007 +++ /stage_vms_src/tar-1.19/lib/
/archive/html/bug-gnulib/2008-03/msg00298.html (4,821 bytes)

183. Re: tar 1.19 - vms time_t is unsigned long. [partial patch[ (score: 35)
Author: HIDDEN
Date: Sat, 08 Mar 2008 17:30:44 -0600
According to John E. Malmberg on 3/8/2008 1:32 PM: TYPE_MAXIMUM already handles unsigned types. It seems like you have a buggy compiler, instead. I should have re-read the comments in the module. By
/archive/html/bug-gnulib/2008-03/msg00127.html (10,388 bytes)

184. Re: tar 1.19 - vms time_t is unsigned long. [partial patch[ (score: 33)
Author: HIDDEN
Date: Sat, 08 Mar 2008 16:51:19 -0600
According to John E. Malmberg on 3/8/2008 1:32 PM: TYPE_MAXIMUM already handles unsigned types. It seems like you have a buggy compiler, instead. I should have re-read the comments in the module. Huh
/archive/html/bug-gnulib/2008-03/msg00126.html (7,176 bytes)

185. Re: tar 1.19 - vms time_t is unsigned long. [partial patch[ (score: 33)
Author: HIDDEN
Date: Sat, 08 Mar 2008 14:01:41 -0800
The C standard requires (unsigned int) -1 to have the same type and value as UINT_MAX. A C compiler that evaluates ((unsigned int) -1) < 0 as true is buggy. -- Ben Pfaff http://benpfaff.org
/archive/html/bug-gnulib/2008-03/msg00125.html (5,257 bytes)

186. Re: tar 1.19 - vms time_t is unsigned long. [partial patch[ (score: 33)
Author: HIDDEN
Date: Sat, 08 Mar 2008 14:59:07 -0700
According to John E. Malmberg on 3/8/2008 1:32 PM: TYPE_MAXIMUM already handles unsigned types. It seems like you have a buggy compiler, instead. Huh? C99 6.3.1.8 states: "Otherwise, if the operand t
/archive/html/bug-gnulib/2008-03/msg00124.html (6,705 bytes)

187. tar 1.19 - vms time_t is unsigned long. [partial patch[ (score: 34)
Author: HIDDEN
Date: Sat, 08 Mar 2008 14:32:08 -0600
I believe that this attached patch gets intprops.h TYPE_MAXIMUM to handle unsigned types. A mask is needed because of an extension that most C compilers have that allow ((unsigned int) -1) to be test
/archive/html/bug-gnulib/2008-03/msg00123.html (6,320 bytes)

188. vms uid handlng for tar 1.19 (score: 34)
Author: HIDDEN
Date: Fri, 07 Mar 2008 00:11:33 -0600
The next test for me to get working is options.at. The issue is that the VMS UID is 32 bits with the GID encoded in it, unless special mapping is in place. So to encode the UID in uid_to_chars(), the
/archive/html/bug-gnulib/2008-03/msg00117.html (5,308 bytes)

189. Re: [patch] tar.1.19 changes needed for VMS so far. (score: 33)
Author: HIDDEN
Date: Tue, 4 Mar 2008 10:59:49 +0000
A VPATH build is one where the sources and object files live in different directories. For example: mkdir compile tar zxf /tmp/blah.-1.0.tar.gz cd compile ../blah-1.0/configure make install See also
/archive/html/bug-gnulib/2008-03/msg00051.html (6,106 bytes)

190. Re: pwd.h on VMS (score: 36)
Author: HIDDEN
Date: Mon, 03 Mar 2008 21:30:55 -0600
For situations like this, gnulib usually "overloads" the system provided function, so that it has the POSIX specified prototype and behaves like POSIX says. This allows programmers to write code for
/archive/html/bug-gnulib/2008-03/msg00049.html (8,439 bytes)

191. Re: sys/stat.h on VMS (score: 33)
Author: HIDDEN
Date: Tue, 4 Mar 2008 03:50:50 +0100
This is all as it should be. Bruno
/archive/html/bug-gnulib/2008-03/msg00046.html (6,883 bytes)

192. Re: sys/stat.h on VMS (score: 34)
Author: HIDDEN
Date: Mon, 03 Mar 2008 20:24:50 -0600
In lib/sys_stat.in : The VMS DECC compiler needs to test the undefined macros with !defined. What do you mean by this? There is a bug where in some cases it does not work, particularly if more than
/archive/html/bug-gnulib/2008-03/msg00044.html (8,256 bytes)

193. Re: alloca on VMS (score: 34)
Author: HIDDEN
Date: Mon, 03 Mar 2008 20:23:44 -0600
All versions of the above C compilers define the __DECC and __VMS macros. ... The __ALLOCA is a compiler built in, so it is specific to the compiler and not to the version of the operating system. .
/archive/html/bug-gnulib/2008-03/msg00043.html (7,068 bytes)

194. Re: [patch] tar.1.19 changes needed for VMS so far. (score: 43)
Author: HIDDEN
Date: Mon, 03 Mar 2008 19:56:46 -0600
* John E. Malmberg wrote on Mon, Mar 03, 2008 at 07:01:46AM CET: In tests/testsuite : VMS can not deal with having a file/directory named testname and testname.dir in the same directory. This is beca
/archive/html/bug-gnulib/2008-03/msg00041.html (8,477 bytes)

195. Re: pwd.h on VMS (score: 36)
Author: HIDDEN
Date: Tue, 4 Mar 2008 01:13:53 +0100
The header files on other systems behave similarly. Therefore gnulib does not turn on flags like _POSIX_SOURCE globally. We have had bad experience with this approach. For situations like this, gnuli
/archive/html/bug-gnulib/2008-03/msg00040.html (7,991 bytes)

196. Re: alloca on VMS (score: 34)
Author: HIDDEN
Date: Tue, 4 Mar 2008 01:00:05 +0100
Thanks for these infos. I'm updating the ChangeLog entry, for reference: 2008-03-03 John E. Malmberg <address@hidden> (tiny change) Bruno Haible <address@hidden> Add support for HP C 7.1 on OpenVMS 8
/archive/html/bug-gnulib/2008-03/msg00039.html (6,588 bytes)

197. Re: pwd.h on VMS (score: 38)
Author: HIDDEN
Date: Mon, 03 Mar 2008 08:58:13 -0600
In src/names.c The declarations for getgrnam and getpwnam interfere with the ones in the system supplied headers. -- /src_root/tar-1.19/src/names.c Sun Aug 12 02:46:25 2007 +++ src/names.c Mon Dec 1
/archive/html/bug-gnulib/2008-03/msg00032.html (10,020 bytes)

198. Re: alloca on VMS (score: 46)
Author: HIDDEN
Date: Mon, 03 Mar 2008 08:36:53 -0600
In lib/alloca.in.h : VMS needs a definition for the built-in __ALLOCA when using the DECC compiler. I committed your change with modifications: - This definition was at the wrong place. You put it i
/archive/html/bug-gnulib/2008-03/msg00031.html (9,258 bytes)

199. Re: sys/stat.h on VMS (score: 34)
Author: HIDDEN
Date: Mon, 3 Mar 2008 13:09:21 +0100
What do you mean by this? 1) What is the result of preprocessing (cc -E) code like this? == foo.c == int dummy1; int dummy2; == 2) What is the definition of S_ISUID, S_ISGID, S_IREAD, S_IRUSR, S_IRGR
/archive/html/bug-gnulib/2008-03/msg00028.html (6,001 bytes)

200. Re: pwd.h on VMS (score: 34)
Author: HIDDEN
Date: Mon, 3 Mar 2008 13:00:42 +0100
Can you please show the relevant part of the system-supplied headers (i.e. the declarations of these functions and of their argument and return types? Bruno
/archive/html/bug-gnulib/2008-03/msg00027.html (6,822 bytes)


This search system is powered by Namazu