summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-09-19 00:28:47 -0400
committerMike Frysinger <vapier@gmail.com>2016-10-06 13:44:48 -0400
commitd62f608c7c4a814c70d4ba777725e3e62d9e2cde (patch)
tree947f712968a21da47bba50dcfd1feb45c8553ac6 /config
parent4ebdb483e4340bf7bdf7c74a5e62c0403c26af9d (diff)
downloadlibgd-d62f608c7c4a814c70d4ba777725e3e62d9e2cde.tar.gz
gdlib-config: punt!
We've been shipping the pkg-config file for a while now and want people to use that only, so drop this old script. This also drop the FEATURES variable as it was only available via `gdlib-config --features` (and no one has complained).
Diffstat (limited to 'config')
-rw-r--r--config/Makefile.am4
-rw-r--r--config/gdlib-config.in99
2 files changed, 1 insertions, 102 deletions
diff --git a/config/Makefile.am b/config/Makefile.am
index 5c2db70..ced3c37 100644
--- a/config/Makefile.am
+++ b/config/Makefile.am
@@ -1,7 +1,5 @@
## Process this file with automake to produce Makefile.in -*-Makefile-*-
-EXTRA_DIST = gdlib-config.in gdlib.pc.in getver.pl
-
-bin_SCRIPTS = gdlib-config
+EXTRA_DIST = gdlib.pc.in getver.pl
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = gdlib.pc
diff --git a/config/gdlib-config.in b/config/gdlib-config.in
deleted file mode 100644
index 6e4e494..0000000
--- a/config/gdlib-config.in
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/bin/sh
-#
-# Return information about the local GD library installation
-#
-# Modeled after pdflib-config
-
-echo "gdlib-config: warning: this script is deprecated;" \
- "please use the pkg-config file instead." >&2
-
-# installation directories
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-bindir=@bindir@
-
-usage()
-{
- cat <<EOF
-Print information on GD library's version, configuration, and use.
-Usage: gdlib-config [options]
-Options:
- --libdir # directory where GD library is installed
- --includedir # directory where GD library headers are installed
- --version # complete GD library version string
- --majorversion # GD library major version number
- --minorversion # GD library minor version number
- --revision # GD library revision version number
- --ldflags # options required for linking against GD library
- --libs # libs required for linking against GD library
- --cflags # options required for compiling GD library apps
- --includes # same as --cflags
- --features # lists features compiled into gd, separated by spaces.
- # Currently (as of @VERSION@) the optional features
- # are GD_PNG, GD_JPEG, GD_XPM, GD_FREETYPE, and
- # GD_FONTCONFIG. When these features are reported by
- # --features, it is safe to include calls to the
- # related functions in your code.
- --all # print a summary of all GD library configure options
-EOF
- exit $1
-}
-
-if test $# -eq 0; then
- usage 1 1>&2
-fi
-
-while test $# -gt 0; do
- case "$1" in
- -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) optarg= ;;
- esac
-
- case $1 in
- --libdir)
- echo $libdir
- ;;
- --includedir)
- echo $includedir
- ;;
- --version)
- echo @VERSION@
- ;;
- --majorversion)
- echo @GDLIB_MAJOR@
- ;;
- --minorversion)
- echo @GDLIB_MINOR@
- ;;
- --revision)
- echo @GDLIB_REVISION@
- ;;
- --ldflags)
- echo @LDFLAGS@
- ;;
- --libs)
- echo -lgd @LIBS@ @LIBICONV@
- ;;
- --cflags|--includes)
- echo -I@includedir@
- ;;
- --features)
- echo @FEATURES@
- ;;
- --all)
- echo "GD library @VERSION@"
- echo "includedir: $includedir"
- echo "cflags: -I@includedir@"
- echo "ldflags: @LDFLAGS@"
- echo "libs: @LIBS@ @LIBICONV@"
- echo "libdir: $libdir"
- echo "features: @FEATURES@"
- ;;
- *)
- usage 1 1>&2
- ;;
- esac
- shift
-done