mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
Added plugin directory to nc-config
This commit is contained in:
parent
7e62782daf
commit
3649364217
@ -246,25 +246,25 @@ if [ -f "$nfconf" ]; then
|
|||||||
echo " --has-f03 -> $has_f03"
|
echo " --has-f03 -> $has_f03"
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
echo " --has-dap -> $has_dap"
|
echo " --has-dap -> $has_dap"
|
||||||
echo " --has-dap2 -> $has_dap"
|
echo " --has-dap2 -> $has_dap"
|
||||||
echo " --has-dap4 -> $has_dap4"
|
echo " --has-dap4 -> $has_dap4"
|
||||||
echo " --has-nc2 -> $has_nc2"
|
echo " --has-nc2 -> $has_nc2"
|
||||||
echo " --has-nc4 -> $has_nc4"
|
echo " --has-nc4 -> $has_nc4"
|
||||||
echo " --has-hdf5 -> $has_hdf5"
|
echo " --has-hdf5 -> $has_hdf5"
|
||||||
echo " --has-hdf4 -> $has_hdf4"
|
echo " --has-hdf4 -> $has_hdf4"
|
||||||
echo " --has-logging -> $has_logging"
|
echo " --has-logging -> $has_logging"
|
||||||
echo " --has-pnetcdf -> $has_pnetcdf"
|
echo " --has-pnetcdf -> $has_pnetcdf"
|
||||||
echo " --has-szlib -> $has_szlib"
|
echo " --has-szlib -> $has_szlib"
|
||||||
echo " --has-cdf5 -> $has_cdf5"
|
echo " --has-cdf5 -> $has_cdf5"
|
||||||
echo " --has-parallel4 -> $has_parallel4"
|
echo " --has-parallel4 -> $has_parallel4"
|
||||||
echo " --has-parallel -> $has_parallel"
|
echo " --has-parallel -> $has_parallel"
|
||||||
echo " --has-nczarr -> $has_nczarr"
|
echo " --has-nczarr -> $has_nczarr"
|
||||||
echo " --has-zstd -> $has_zstd"
|
echo " --has-zstd -> $has_zstd"
|
||||||
echo " --has-benchmarks -> $has_benchmarks"
|
echo " --has-benchmarks -> $has_benchmarks"
|
||||||
echo " --has-multifilters -> $has_multifilters"
|
echo " --has-multifilters -> $has_multifilters"
|
||||||
echo " --has-stdfilters -> $has_multifilters"
|
echo " --has-stdfilters -> $has_multifilters"
|
||||||
echo " --has-quantize -> $has_quantize"
|
echo " --has-quantize -> $has_quantize"
|
||||||
echo
|
echo
|
||||||
echo " --prefix -> $prefix"
|
echo " --prefix -> $prefix"
|
||||||
echo " --includedir -> $includedir"
|
echo " --includedir -> $includedir"
|
||||||
|
11
nc-config.in
11
nc-config.in
@ -8,6 +8,11 @@ prefix=@prefix@
|
|||||||
exec_prefix=@exec_prefix@
|
exec_prefix=@exec_prefix@
|
||||||
libdir=@libdir@
|
libdir=@libdir@
|
||||||
includedir=@includedir@
|
includedir=@includedir@
|
||||||
|
plugindir=@PLUGIN_INSTALL_DIR@
|
||||||
|
|
||||||
|
if test "x@PLUGIN_INSTALL_DIR@" == "xno" ; then
|
||||||
|
plugindir=""
|
||||||
|
fi
|
||||||
|
|
||||||
cc="@CC@"
|
cc="@CC@"
|
||||||
cflags="-I${includedir} @CPPFLAGS@"
|
cflags="-I${includedir} @CPPFLAGS@"
|
||||||
@ -109,6 +114,7 @@ Available values for OPTION include:
|
|||||||
--prefix Install prefix
|
--prefix Install prefix
|
||||||
--includedir Include directory
|
--includedir Include directory
|
||||||
--libdir Library directory
|
--libdir Library directory
|
||||||
|
--plugindir Plugin directory
|
||||||
--version Library version
|
--version Library version
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
@ -195,6 +201,7 @@ fi
|
|||||||
echo " --prefix -> $prefix"
|
echo " --prefix -> $prefix"
|
||||||
echo " --includedir -> $includedir"
|
echo " --includedir -> $includedir"
|
||||||
echo " --libdir -> $libdir"
|
echo " --libdir -> $libdir"
|
||||||
|
echo " --plugindir -> $plugindir"
|
||||||
echo " --version -> $version"
|
echo " --version -> $version"
|
||||||
echo
|
echo
|
||||||
}
|
}
|
||||||
@ -241,6 +248,10 @@ while test $# -gt 0; do
|
|||||||
echo $cflags
|
echo $cflags
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
--plugindir)
|
||||||
|
echo $plugindir
|
||||||
|
;;
|
||||||
|
|
||||||
--has-dap)
|
--has-dap)
|
||||||
echo $has_dap
|
echo $has_dap
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user