Supplemental Libraries for GrADS version 2.2

There are many supplemental libraries that are required to enable various features in the GrADS executable. Building all these libraries from source is not necessarily easy; this page provides some guidance and suggestions that have led to success on COLA's unix systems (64-bit linux running CentOS, and Mac OSX). COLA's objective in building GrADS is to make our binary releases portable, so we strive to build all the libraries from scratch, disabling features GrADS doesn't need, and then link statically when building GrADS. If you are building GrADS from source but not planning to distribute your build, then you may find that many of these libraries are already installed on your system and you can link with them dynamically. In this case, use the --enable-dyn-supplibs option with the GrADS configure script. Please post questions about building from source to the GrADS Users Forum. If you have the proper privileges, you may install these anywhere on your system instead of $HOME, just be sure to change the commands listed in the table below to accomodate your own installation.

To begin, make a directory top level directory for the supplibs under your $HOME, or some other suitable directory:
mkdir $HOME/grads/supplibs
setenv SUPPLIBS $HOME/grads/supplibs

Make a subdirectory where you will store the tar files containing the library source code:
mkdir -p $SUPPLIBS/tarfiles

Make a subdirectory where you will store the source code when unpacking the tar files:
mkdir -p $SUPPLIBS/src

Get the src from COLA's FTP server:
cd $SUPPLIBS/tarfiles
ftp cola.gmu.edu
<login as anonymous>
cd grads/Supplibs/2.2/src
mget *
quit

These are the directories where the compiled libaries, pkgconfig files, include files, and any executable utilities will be installed. This will be created automatically by the library software, there is no need to create them manually.
$HOME/supplibs/lib
$HOME/supplibs/include
$HOME/supplibs/bin

This seems to be necessary in order to link the libraries dynamically to create the shared object file (libgradspy.so) for the python interface:
setenv CFLAGS -fPIC

When you are done, unpack the GrADS source code tarball under $HOME. Change into the new GrADS directory you just created, and type ./configure. When the configuration is done, it will show a summary of which features have been enabled. Then type 'make install' and look for your executables in the ./bin directory.

Good Luck!!

 

Library Version Why GrADS needs it How to configure and install it for GrADS
readline 5.0

Enables command line editing.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/readline-5.0.tar.gz
cd readline-5.0
./configure --prefix=$SUPPLIBS
make install

ncurses 5.7

Required by readline.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/ncurses-5.7.tar.gz
cd ncurses-5.7
./configure --prefix=$SUPPLIBS --without-ada --with-shared
make install

zlib 1.2.8

General compression library.
Required by NetCDF et al.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure --prefix=$SUPPLIBS
make install

libpng 1.5.12 PNG reference library.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/libpng-1.5.12.tar.gz
cd libpng-1.5.12
./configure --prefix=$SUPPLIBS
make install

jpeg 6b Image compression library.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/jpegsrc.v6b.tar.gz
cd jpeg-6b
./configure --prefix=$SUPPLIBS
make
cp libjpeg.a ../../lib/
cp *.h ../../include/

gd 2.0.34 GD Graphics Library.
Requires: zlib, libpng, jpeg
home page
cd $SUPPLIBS/src
tar xvfz ../tarfiles/gd-2.0.34.tar.gz
cd gd-2.0.34
./configure --prefix=$SUPPLIBS --with-png=$SUPPLIBS --with-jpeg=$SUPPLIBS
make install
jasper 1.900.1
14ubuntu3.2.debian
For image coding and manipulation
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/jasper-1.900.1-14ubuntu3.2.debian.tar.gz
cd jasper-1.900.1
./configure --prefix=$SUPPLIBS --with-jpeg=$SUPPLIBS
make install

g2clib 1.6.0

Decodes data in GRIB2 format.
Requires: zlib, png, jasper
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/g2clib-1.6.0.tar.gz
cd g2clib-1.6.0

Note1: There is no configure script in this library, so you must edit the makefile manually. Change the "INC" variable as indicated below. Be sure to write out $SUPPLIBS explicitly:
   INC=-I$SUPPLUBS/include -I$SUPPLIBS/include/libpng15
You must also edit the "CFLAGS" variable to include the "-fPIC" option. On some unix servers it may also be necessary to remove the "-m64" and/or "-D__64BIT__" options.

Note2: Version 1.6.0 of the grib2 C library introduced a new output file naming convention that includes a version number. When manually installing in it the $SUPLLIBS/lib directory, rename it to the old (static) filename. It is also necessary to manually install the grib2.h file in the $SUPPLIBS/include directory.

make
/bin/cp -f libg2c_v1.6.0.a $SUPPLIBS/lib/libgrib2c.a
/bin/cp -f grib2.h $SUPPLIBS/include

udunits 1.11.7

Supports units of physical quantities.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/udunits-1.11.7.tar.gz
cd udunits-1.11.7/src/
./configure --prefix=$SUPPLIBS
make install

hdf 4.2r3 Hierarchical Data Format library, version 4. Requires: zlib, udunits, jpeg, szip
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/HDF4.2r3.tar.gz
cd HDF4.2r3
./configure --prefix=$SUPPLIBS --disable-netcdf --disable-fortran \
--with-zlib=$SUPPLIBS --with-jpeg=$SUPPLIBS
make install

hdf5 1.8.11 Hierarchical Data Format library, version 5. Requires: zlib
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/hdf5-1.8.11.tar.gz
cd hdf5-1.8.11
./configure --prefix=$SUPPLIBS --disable-fortran --with-zlib=$SUPPLIBS
make install

curl 7.35.0
(7.19.6 also ok)
For enabling OPeNDAP access.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/curl-7.35.0.tar.gz
cd curl-7.35.0

Note: When accessing secure (https) opendap servers it is necessary to have the SSL feature of the curl library enabled. Use "--without-ssl" if you do not have the openSSL library installed on your local system.

./configure --prefix=$SUPPLIBS --with-ssl --without-libidn \
--enable-static --disable-ldap
make install

netcdf 4.3.3 Network Common Data Form library.
Requires hdf5, zlib, szip, curl.

home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/netcdf-4.3.3.tar.gz
cd netcdf-4.3.3

Note: before running configure, set the following environment variables (remove the "-lssl" from $LIBS if you did not build curl with SSL enabled):
setenv LIBS "-lm -ldl -lcurl -lssl -lrt -lz"
setenv LDFLAGS -L$SUPPLIBS/lib
setenv CPPFLAGS -I$SUPPLIBS/include


./configure --prefix=$SUPPLIBS --enable-netcdf-4 --enable-dap
make install

Note: After the library is built, you can unset the environment variables:
unsetenv LIBS
unsetenv LDFLAGS
unsetenv CPPFLAGS

tiff 3.8.2 Enables handling of image data in the Tag Image File Format.
home page
cd $SUPPLIBS/src
tar xvfz ../tarfiles/tiff-3.8.2.tar.gz
cd tiff-3.8.2
./configure --prefix=$SUPPLIBS
make install
geotiff 1.2.5 Enables handling georeferenced raster imagery. Requires: tiff.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/libgeotiff-1.2.5.tar.gz
cd libgeotiff-1.2.5
./configure --prefix=$SUPPLIBS --enable-incode-epsg \
--enable-static --with-libtiff=$SUPPLIBS
make
make install

shapelib 1.2.10 Enables handling of shapefiles
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/shapelib-1.2.10.tar.gz
cd shapelib-1.2.10

Note: There is no configure script, just a Makefile. Edit the makefile to use the -fPIC option with gcc. Change "CFLAGS" as indicated below:
   CFLAGS = -g -fPIC
Also change "-g -O2" to "-g -fPIC -O2" when it occurs instead of $(CFLAGS)


make all lib

Installation to $SUPPLUBS is done manually. The utilities are copied to the $SUPPLIBS/bin directory in case they might be useful to the user -- GrADS doesn't explicitly need them.

/bin/cp -f ./.libs/libshp.a $SUPPLIBS/lib
/bin/cp -f shapefil.h $SUPPLIBS/include
/bin/cp -f shpcreate shpadd shpdump shprewind dbfcreate dbfadd dbfdump shptest $SUPPLIBS/bin

xml2 2.9.0

An XML parser and toolkit.
Enables OPeNDAP station data access, also used by Cairo library.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/libxml2-2.9.0.tar.gz
cd libxml2-2.9.0
./configure --prefix=$SUPPLIBS --with-zlib=$SUPPLIBS --without-threads \
--without-iconv --without-iso8859x --without-lzma
make install

Xrender 0.9.6 A helper tool used when compiling applications and libraries. Required for Cairo.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/libXrender-0.9.6.tar.gz
cd libXrender-0.9.6
./configure --prefix=$SUPPLIBS
make install

pkgconfig 0.23 A helper tool used when compiling applications and libraries. Required for Cairo.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/pkgconfig-0.23.tar.gz
cd pkg-config-0.23
./configure --prefix=$SUPPLIBS
make install

Note: These environment variables must be set AFTER pkg-config is built:
setenv PKG_CONFIG $SUPPLIBS/bin/pkg-config
setenv PKG_CONFIG_PATH $SUPPLIBS/lib/pkgconfig

dap 3.7.8 (use the modified version for newer flavors of unix) Open-source Project for a Network Data Access Protocol (OPeNDAP).
Requires: xml2, curl.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/libdap-3.7.8-modified.tar.gz
cd libdap-3.7.8-modified
setenv CPPFLAGS -I$SUPPLIBS/include
./configure --prefix=$SUPPLIBS
make install

gadap 2.0 or 2.1 (for newer flavors of unix) Enables OPeNDAP access of
in situ data.
Requires dap, curl, and xml2.

cd $SUPPLIBS/src
tar xvfz ../tarfiles/gadap-2.1.tar.gz
cd gadap-2.1

N.B. You will need to make sure $SUPPLIBS/bin is in your path so the configure script can find the utility dap-config, which is part of the dap library package

setenv PATH $SUPPLIBS/bin:$PATH
setenv CPPFLAGS -I$SUPPLIBS/include
./configure --prefix=$SUPPLIBS
make install

pixman 0.34.0

A pixel manipulation library for
X and Cairo.
home page

cd $SUPPLIBS/src
tar xvfz ../tarfiles/pixman-0.34.0.tar.gz
cd pixman-0.34.0
./configure --prefix=$SUPPLIBS
make install

freetype 2.4.10 A software font engine. Required by Cairo.
home page

cd $SUPPLIBS/src
tar xvfz tarfiles/freetype-2.4.10.tar.gz
cd freetype-2.4.10
./configure --prefix=$SUPPLIBS --with-zlib=$SUPPLIBS \
--without-fsspec --without-fsref --without-ats --without-bzip2 \
--without-quickdraw-toolbox --without-quickdraw-carbon
make install

fontconfig 2.9.0 A library for configuring and customizing font access. Required by Cairo.
home page

cd $SUPPLIBS/src
tar xvfz tarfiles/fontconfig-2.9.0.tar.gz
cd fontconfig-2.9.0
./configure --prefix=$SUPPLIBS --enable-libxml2 \
--with-freetype-config=$SUPPLIBS/bin/freetype-config \
--with-add-fonts=/Library/Fonts,/System/Library/Fonts (for mac)
--with-add-fonts=/usr/share/X11/fonts,/usr/share/fonts (for unix)

N.B. After configuration, edit config.h to set USE_ICONV = 0
I don't know of another way to tell it not to use libiconv.

make install

cairo 1.14.10 A 2D graphics library with support for multiple output devices. Requires pkgconfig, zlib, xml2, libpng, pixman, fontconfig, freetype, and Xrender.
home page

cd $HOME/supplibs/src
tar xvf tarfiles/cairo-1.14.10.tar.gz
mkdir cairo
cd cairo-1.14.10
./configure --prefix=$SUPPLIBS \
--enable-xlib=yes \
--enable-xml=yes \
--enable-fc=yes \
--enable-ft=yes \
--enable-xlib-xrender=yes \
--enable-pthread=yes \
--enable-xcb=no \
--enable-qt=no \
--enable-quartz=no \
--enable-win32=no \
--enable-skia=no \
--enable-os2=no \
--enable-beos=no \
--enable-drm=no \
--enable-gl=no
make install