Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
75c0f4a9
Commit
75c0f4a9
authored
Jul 04, 2011
by
Thomas Jahns
🤸
Browse files
Substitute C compiler flags for GRIB API in pkgconfig file.
parent
7df258b2
Changes
3
Hide whitespace changes
Inline
Side-by-side
configure
View file @
75c0f4a9
...
@@ -25623,6 +25623,7 @@ fi
...
@@ -25623,6 +25623,7 @@ fi
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# Compile application with GRIB_API library (for GRIB2 support)
# Compile application with GRIB_API library (for GRIB2 support)
GRIB_API_INCLUDE=''
# Check whether --with-grib_api was given.
# Check whether --with-grib_api was given.
if test "${with_grib_api+set}" = set; then :
if test "${with_grib_api+set}" = set; then :
...
@@ -25785,7 +25786,6 @@ fi
...
@@ -25785,7 +25786,6 @@ fi
GRIB_API_LDFLAGS=" -L$GRIB_API_ROOT/lib -lgrib_api"
GRIB_API_LDFLAGS=" -L$GRIB_API_ROOT/lib -lgrib_api"
GRIB_API_INCLUDE=" -I$GRIB_API_ROOT/include"
GRIB_API_INCLUDE=" -I$GRIB_API_ROOT/include"
else
else
as_fn_error $? "$GRIB_API_ROOT is not a directory! GRIB_API suppressed" "$LINENO" 5
as_fn_error $? "$GRIB_API_ROOT is not a directory! GRIB_API suppressed" "$LINENO" 5
fi ;; #(
fi ;; #(
...
@@ -25799,6 +25799,7 @@ $as_echo_n "checking for the GRIB_API library... " >&6; }
...
@@ -25799,6 +25799,7 @@ $as_echo_n "checking for the GRIB_API library... " >&6; }
$as_echo "suppressed" >&6; }
$as_echo "suppressed" >&6; }
fi
fi
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# Enable GRIB support
# Enable GRIB support
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GRIB support" >&5
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GRIB support" >&5
...
...
m4/acx_options.m4
View file @
75c0f4a9
...
@@ -219,6 +219,7 @@ AC_ARG_WITH([jasper],
...
@@ -219,6 +219,7 @@ AC_ARG_WITH([jasper],
AC_SUBST([JASPER_LIBS])
AC_SUBST([JASPER_LIBS])
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# Compile application with GRIB_API library (for GRIB2 support)
# Compile application with GRIB_API library (for GRIB2 support)
GRIB_API_INCLUDE=''
AC_ARG_WITH([grib_api],
AC_ARG_WITH([grib_api],
[AS_HELP_STRING([--with-grib_api=<yes|no|directory>],
[AS_HELP_STRING([--with-grib_api=<yes|no|directory>],
[library for grib2 compression; if a directory is given, it will be used as a value for --with-jasper-root])],
[library for grib2 compression; if a directory is given, it will be used as a value for --with-jasper-root])],
...
@@ -240,10 +241,11 @@ AC_ARG_WITH([grib_api],
...
@@ -240,10 +241,11 @@ AC_ARG_WITH([grib_api],
[AC_DEFINE([HAVE_LIBGRIB_API],[1],[GRIB_API library is present if defined to 1])],
[AC_DEFINE([HAVE_LIBGRIB_API],[1],[GRIB_API library is present if defined to 1])],
[AC_MSG_ERROR([Could not link to grib_api library])])
[AC_MSG_ERROR([Could not link to grib_api library])])
AC_SUBST([GRIB_API_LDFLAGS],[" -L$GRIB_API_ROOT/lib -lgrib_api"])
AC_SUBST([GRIB_API_LDFLAGS],[" -L$GRIB_API_ROOT/lib -lgrib_api"])
AC_SUBST([
GRIB_API_INCLUDE
],[
" -I$GRIB_API_ROOT/include"]
)]
,
GRIB_API_INCLUDE
=
" -I$GRIB_API_ROOT/include"],
[AC_MSG_ERROR([$GRIB_API_ROOT is not a directory! GRIB_API suppressed])])])],
[AC_MSG_ERROR([$GRIB_API_ROOT is not a directory! GRIB_API suppressed])])])],
[AC_MSG_CHECKING([for the GRIB_API library])
[AC_MSG_CHECKING([for the GRIB_API library])
AC_MSG_RESULT([suppressed])])
AC_MSG_RESULT([suppressed])])
AC_SUBST([GRIB_API_INCLUDE])
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# Enable GRIB support
# Enable GRIB support
AC_MSG_CHECKING([for GRIB support])
AC_MSG_CHECKING([for GRIB support])
...
...
src/pkgconfig/cdi.pc.in
View file @
75c0f4a9
...
@@ -19,6 +19,7 @@ netcdf_root=@NETCDF_ROOT@
...
@@ -19,6 +19,7 @@ netcdf_root=@NETCDF_ROOT@
netcdf_cflags=@NETCDF_INCLUDE@
netcdf_cflags=@NETCDF_INCLUDE@
netcdf_libs=@NETCDF_LIBS@
netcdf_libs=@NETCDF_LIBS@
jasper_libs=@JASPER_LIBS@
jasper_libs=@JASPER_LIBS@
grib_api_cflags=@GRIB_API_INCLUDE@
Name: @PACKAGE_NAME@
Name: @PACKAGE_NAME@
Description: CDI is an Interface to access Climate and NWP model Data.
Description: CDI is an Interface to access Climate and NWP model Data.
...
...
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