-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle 64 bit time_t on 32 bit systems
- Loading branch information
Showing
14 changed files
with
38 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
globus-ftp-client (9.9-1+gct.@distro@) @distro@; urgency=medium | ||
|
||
* Fix format warnings on 32 bit systems | ||
* Handle 64 bit time_t on 32 bit systems | ||
|
||
-- Mattias Ellert <[email protected]> Fri, 01 Mar 2024 11:13:14 +0100 | ||
|
||
|
6 changes: 6 additions & 0 deletions
6
packaging/debian/globus-gridftp-server-control/debian/changelog.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
globus-gridftp-server-control (9.4-1+gct.@distro@) @distro@; urgency=medium | ||
|
||
* Handle 64 bit time_t on 32 bit systems | ||
|
||
-- Mattias Ellert <[email protected]> Sat, 16 Mar 2024 03:38:32 +0100 | ||
|
||
globus-gridftp-server-control (9.3-1+gct.@distro@) @distro@; urgency=medium | ||
|
||
* Fix some compiler warnings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
globus-gridftp-server (13.27-1+gct.@distro@) @distro@; urgency=medium | ||
|
||
* Handle 64 bit time_t on 32 bit systems | ||
|
||
-- Mattias Ellert <[email protected]> Sat, 16 Mar 2024 03:39:44 +0100 | ||
|
||
globus-gridftp-server (13.26-1+gct.@distro@) @distro@; urgency=medium | ||
|
||
* Correct spelling error found by lintian | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,6 +171,7 @@ GLOBUS_HOSTNAME=localhost make %{?_smp_mflags} check VERBOSE=1 | |
%changelog | ||
* Fri Mar 01 2024 Mattias Ellert <[email protected]> - 9.9-1 | ||
- Fix format warnings on 32 bit systems | ||
- Handle 64 bit time_t on 32 bit systems | ||
|
||
* Wed Mar 09 2022 Mattias Ellert <[email protected]> - 9.8-1 | ||
- Fix some compiler and doxygen warnings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
Name: globus-gridftp-server-control | ||
%global soname 0 | ||
%global _name %(echo %{name} | tr - _) | ||
Version: 9.3 | ||
Version: 9.4 | ||
Release: 1%{?dist} | ||
Summary: Grid Community Toolkit - Globus GridFTP Server Library | ||
|
||
|
@@ -112,6 +112,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/*.la | |
%{_libdir}/pkgconfig/%{name}.pc | ||
|
||
%changelog | ||
* Sat Mar 16 2024 Mattias Ellert <[email protected]> - 9.4-1 | ||
- Handle 64 bit time_t on 32 bit systems | ||
|
||
* Thu Mar 10 2022 Mattias Ellert <[email protected]> - 9.3-1 | ||
- Fix some compiler warnings | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
Name: globus-gridftp-server | ||
%global soname 6 | ||
%global _name %(echo %{name} | tr - _) | ||
Version: 13.26 | ||
Version: 13.27 | ||
Release: 1%{?dist} | ||
Summary: Grid Community Toolkit - Globus GridFTP Server | ||
|
||
|
@@ -223,6 +223,9 @@ fi | |
%{_libdir}/pkgconfig/%{name}.pc | ||
|
||
%changelog | ||
* Sat Mar 16 2024 Mattias Ellert <[email protected]> - 13.27-1 | ||
- Handle 64 bit time_t on 32 bit systems | ||
|
||
* Fri Mar 08 2024 Mattias Ellert <[email protected]> - 13.26-1 | ||
- Correct spelling error found by lintian | ||
|
||
|