comparison src/release-octave-1-gnulib.patch @ 5518:039563087c70 octave-rc-6.0.90

update version number for first 6.1 release candidate * src/stable-octave.mk: Update version to 6.0.90. * src/release-octave.mk: Update version to 6.0.90. Update URL and checksum for release candidate. * src/release-octave-1-setvbuf.patch: Delete. * src/release-octave-1-gnulib.patch: Update.
author John W. Eaton <jwe@octave.org>
date Wed, 26 Aug 2020 15:48:45 -0400
parents db215107402f
children
comparison
equal deleted inserted replaced
5517:972c082c295d 5518:039563087c70
8 -# if @UNISTD_H_HAVE_WINSOCK2_H@ 8 -# if @UNISTD_H_HAVE_WINSOCK2_H@
9 +# if !@HAVE_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@ 9 +# if !@HAVE_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@
10 # if !(defined __cplusplus && defined GNULIB_NAMESPACE) 10 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
11 # undef gethostname 11 # undef gethostname
12 # define gethostname rpl_gethostname 12 # define gethostname rpl_gethostname
13
14 diff -u a/libgnu/lseek.c b/libgnu/lseek.c
15 --- a/libgnu/lseek.c 2020-01-25 23:41:47.321133728 -0500
16 +++ b/libgnu/lseek.c 2020-01-25 23:43:05.587623161 -0500
17 @@ -63,7 +63,7 @@
18 return -1;
19 }
20 #endif
21 -#if _GL_WINDOWS_64_BIT_OFF_T
22 +#if _GL_WINDOWS_64_BIT_OFF_T || (defined __MINGW32__ && defined _FILE_OFFSET_BITS && (_FILE_OFFSET_BITS == 64))
23 return _lseeki64 (fd, offset, whence);
24 #else
25 return lseek (fd, offset, whence)