/usr/bin/ossim-config is in libossim-dev 1.7.21-3ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #!/bin/sh
OSSIM_LIBS="-L/usr/lib/ossim -lossim -L/usr/lib -lfreetype -L/usr/include/geotiff -L/usr -lgeotiff -ltiff -lOpenThreads -L/usr/lib/x86_64-linux-gnu -ljpeg -lpthread -lz -lm -ldl -lutil "
OSSIM_CFLAGS="-Wall -pipe -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES"
OSSIM_CPPFLAGS="-Wall -pipe -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES"
OSSIM_PREFIX="/usr"
OSSIM_VERSION="1.7.21"
OSSIM_INCLUDES="-I/usr/include/ossim -I/usr/include -I/usr/include/freetype2 -I/usr/include/freetype2/freetype -I/usr/include -I/usr/include -I/usr/include/geotiff -I/usr/include "
usage()
{
cat <<EOF
Usage1: ossim-config [OPTIONS]
Options:
[--prefix[=DIR]]
[--libs]
[--includes]
[--cflags]
[--cppflags]
[--version]
EOF
exit $1
}
if test $# -eq 0; then
usage 1 1>&2
fi
case $1 in
--includes)
echo $OSSIM_INCLUDES
;;
--libs)
echo $OSSIM_LIBS
;;
--cflags)
echo $OSSIM_CFLAGS
;;
--prefix)
echo $OSSIM_PREFIX
;;
--cppflags)
echo $OSSIM_CPPFLAGS
;;
--version)
echo $OSSIM_VERSION
;;
*)
usage 1 1>&2
;;
esac
|