/usr/bin/liblas-config is in liblas-dev 1.2.1-4.
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 52 53 | #!/bin/sh
usage()
{
cat <<EOF
Usage: liblas-config [OPTIONS]
Options:
[--libs]
[--cflags]
[--cxxflags]
[--defines]
[--includes]
[--version]
EOF
exit $1
}
if test $# -eq 0; then
usage 1 1>&2
fi
case $1 in
--libs)
echo -L/usr/lib -lgeotiff -L/usr/lib -lgdal1.7.0
;;
--defines)
echo -DPACKAGE_NAME=\"las\" -DPACKAGE_TARNAME=\"liblas-src\" -DPACKAGE_VERSION=\"1.2.1\" -DPACKAGE_STRING=\"las\ 1.2.1\" -DPACKAGE_BUGREPORT=\"hobu.inc@gmail.com\" -DPACKAGE_URL=\"\" -DPACKAGE=\"liblas-src\" -DVERSION=\"1.2.1\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_LONG_LONG=1 -DHAVE_GETTIMEOFDAY=1 -DHAVE_BZERO=1 -DHAVE_MEMSET=1 -DHAVE_MEMCPY=1 -DHAVE_BCOPY=1
;;
--includes)
echo -I/usr/include/geotiff -I/usr/include/gdal
;;
--cflags)
echo -Wall -Wno-long-long -pedantic -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -Wall -O3 -DNDEBUG
;;
--cxxflags)
echo -Wall -Wno-long-long -pedantic -std=c++98 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -Wall -O3 -DNDEBUG
;;
--version)
echo 1.2.1
;;
*)
usage 1 1>&2
;;
esac
|