Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Patrick Godwin
lalsuite
Commits
bd4c6133
Commit
bd4c6133
authored
May 24, 2020
by
Karl Wette
Browse files
lalframe/lib/LALFrameU.c: use correct Autoconf-defined symbol
- Symbols defined by AC_CHECK_LIB() are always HAVE_LIB<library>
parent
ba78224d
Changes
1
Hide whitespace changes
Inline
Side-by-side
lalframe/lib/LALFrameU.c
View file @
bd4c6133
...
...
@@ -31,7 +31,7 @@ enum {
};
/* enable FrameL support if available */
#if defined HAVE_FRAMEL_H && defined HAVE_FRAMEL
#if defined HAVE_FRAMEL_H && defined HAVE_
LIB
FRAMEL
# include "LALFrameUFrameL.h"
# define CASE_FRAMEL(errval, function, ...) case LAL_FRAMEU_FRAME_LIBRARY_FRAMEL: return function ## _FrameL_ (__VA_ARGS__)
# ifndef LAL_FRAMEU_FRAME_LIBRARY_DEFAULT
...
...
@@ -88,7 +88,7 @@ static int XLALFrameLibrary(void)
const
char
*
env
=
getenv
(
"LAL_FRAME_LIBRARY"
);
if
(
env
)
{
if
(
strcmp
(
env
,
"FrameL"
)
==
0
)
{
#if defined HAVE_FRAMEL_H && defined HAVE_FRAMEL
#if defined HAVE_FRAMEL_H && defined HAVE_
LIB
FRAMEL
lalFrameLibrary
=
LAL_FRAMEU_FRAME_LIBRARY_FRAMEL
;
#else
XLAL_ERROR_VAL
(
LAL_FRAMEU_FRAME_LIBRARY_UNAVAILABLE
,
XLAL_ESYS
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment