Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make library linking survive -Wl,--as-needed #217

Merged
merged 1 commit into from
Sep 5, 2023
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
2 changes: 1 addition & 1 deletion gram/rsl/source/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.60])

AC_INIT([globus_rsl],[11.3],[https://github.com/gridcf/gct/issues])
AC_INIT([globus_rsl],[11.4],[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
5 changes: 4 additions & 1 deletion gram/rsl/source/dummy.c
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
int globus_i_rsl_assist_dummy_int=0;
#include "globus_rsl.h"
int globus_i_rsl_assist_dummy_int(void) {
return globus_rsl_is_relation(NULL);
}
2 changes: 1 addition & 1 deletion gram/rsl/source/globus_rsl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2491,7 +2491,7 @@ globus_rsl_param_get(globus_rsl_t * ast_node,
return(0);
}

int lvl = 0;
static int lvl = 0;

/* for printing RSL tree */
#define INDENT(LVL) { \
Expand Down
6 changes: 6 additions & 0 deletions packaging/debian/globus-rsl/debian/changelog.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
globus-rsl (11.4-1+gct.@distro@) @distro@; urgency=medium

* Make library linking survive -Wl,--as-needed

-- Mattias Ellert <[email protected]> Tue, 29 Aug 2023 15:21:15 +0200

globus-rsl (11.3-1+gct.@distro@) @distro@; urgency=medium

* Typo fixes
Expand Down
5 changes: 4 additions & 1 deletion packaging/fedora/globus-rsl.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: globus-rsl
%global soname 2
%global _name %(echo %{name} | tr - _)
Version: 11.3
Version: 11.4
Release: 1%{?dist}
Summary: Grid Community Toolkit - Resource Specification Language Library

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

%changelog
* Tue Aug 29 2023 Mattias Ellert <[email protected]> - 11.4-1
- Make library linking survive -Wl,--as-needed

* Fri Aug 20 2021 Mattias Ellert <[email protected]> - 11.3-1
- Typo fixes

Expand Down