Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions gsi/proxy/proxy_core/source/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.60])

AC_INIT([globus_gsi_proxy_core],[9.8],[https://github.com/gridcf/gct/issues])
AC_INIT([globus_gsi_proxy_core],[9.9],[https://github.com/gridcf/gct/issues])
AC_CONFIG_MACRO_DIR([m4])
AC_SUBST([MAJOR_VERSION], [${PACKAGE_VERSION%%.*}])
AC_SUBST([MINOR_VERSION], [${PACKAGE_VERSION##*.}])
Expand Down Expand Up @@ -50,6 +50,7 @@ if test "$use_symbol_versions" = yes; then
AC_DEFINE(USE_SYMBOL_VERSIONS, 1, [Use backward-compatibility symbol versioning])
fi

AM_CONDITIONAL(USES_LTO, [echo $CFLAGS | grep -q -- -flto])

AC_PATH_PROGS([DOXYGEN], doxygen)
AM_CONDITIONAL([ENABLE_DOXYGEN], [test "$DOXYGEN" != ""])
Expand All @@ -58,8 +59,8 @@ AC_OUTPUT(
globus-gsi-proxy-core.pc
globus-gsi-proxy-core-uninstalled.pc
Makefile
library/Makefile
library/Makefile
library/Doxyfile
test/Makefile
version.h
version.h
)
5 changes: 4 additions & 1 deletion gsi/proxy/proxy_core/source/library/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ libglobus_gsi_proxy_core_la_CPPFLAGS = \
libglobus_gsi_proxy_core_la_LIBADD = $(PACKAGE_DEP_LIBS) $(OPENSSL_LIBS)
libglobus_gsi_proxy_core_la_LDFLAGS = \
-version-info $(MAJOR_VERSION):$(MINOR_VERSION):$(AGE_VERSION) \
-no-undefined
-no-undefined
if USE_SYMBOL_VERSIONS
libglobus_gsi_proxy_core_la_LDFLAGS += -Wl,--version-script,$(srcdir)/sym
if USES_LTO
libglobus_gsi_proxy_core_la_LDFLAGS += -flto-partition=none
endif
endif

libglobus_gsi_proxy_core_la_SOURCES = \
Expand Down
6 changes: 6 additions & 0 deletions packaging/debian/globus-gsi-proxy-core/debian/changelog.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
globus-gsi-proxy-core (9.9-1+gct.@distro@) @distro@; urgency=medium

* Fix linking error with gcc 16

-- Mattias Ellert <mattias.ellert@physics.uu.se> Thu, 08 Jan 2026 12:54:27 +0100

globus-gsi-proxy-core (9.8-1+gct.@distro@) @distro@; urgency=medium

* Fix some compiler warnings
Expand Down
5 changes: 4 additions & 1 deletion packaging/fedora/globus-gsi-proxy-core.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: globus-gsi-proxy-core
%global soname 0
%global _name %(echo %{name} | tr - _)
Version: 9.8
Version: 9.9
Release: 1%{?dist}
Summary: Grid Community Toolkit - Globus GSI Proxy Core Library

Expand Down Expand Up @@ -143,6 +143,9 @@ make %{?_smp_mflags} check VERBOSE=1
%doc %{_pkgdocdir}/GLOBUS_LICENSE

%changelog
* Thu Jan 08 2026 Mattias Ellert <mattias.ellert@physics.uu.se> - 9.9-1
- Fix linking error with gcc 16

* Thu Mar 10 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 9.8-1
- Fix some compiler warnings

Expand Down