3 # $Id: lib-config.in,v 1.1 2000/08/15 21:37:06 mdw Exp $
5 # Provide configuration information for library clients
7 # (c) 1999 Straylight/Edgeware
10 #----- Licensing notice -----------------------------------------------------
12 # This file is part of the Common Files Distribution (`common').
14 # `Common' is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2 of the License, or
17 # (at your option) any later version.
19 # `Common' is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with `common'; if not, write to the Free Software Foundation,
26 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 #----- Revision history -----------------------------------------------------
30 # $Log: lib-config.in,v $
31 # Revision 1.1 2000/08/15 21:37:06 mdw
32 # New common library configuration skeleton, filled in by configure.in.
33 # Replaces mLib-config etc.
36 #----- Configuration --------------------------------------------------------
39 exec_prefix=@exec_prefix@
41 includedir=@includedir@
42 archincludedir=${libdir}/@LIBRARY@/include
46 #----- Command-line parsing and output --------------------------------------
48 ego=`echo "$0" | sed 's:.*/::'`
50 if [ -z "${1+x}" ]; then
51 echo >&2 "Usage: $ego OPTION"
52 echo >&2 "Run \`$ego --help' for more information."
59 @LIBNAME@, version $VERSION
63 Provides configuration parameters for @LIBNAME@ client programs. Options
66 --help Display this help text.
67 --version Display @LIBNAME@ version number.
68 --check VERSION Verifies that the given version number is supported.
69 --cflags Display appropriate compiler flags.
70 --libs Display appropriate linker flags and library names.
77 version=${2-1.0.0pre0}
78 set `echo $VERSION | sed 's/[^0-9][^0-9]*/ /g'`
79 MAJOR=${1-1} MINOR=${2-0} PATCH=${3-0} PRE=$4
80 set `echo $version | sed 's/[^0-9][^0-9]*/ /g'`
81 major=${1-1} minor=${2-0} patch=${3-0} pre=$4
82 [ $major -gt $MAJOR ] && exit 1
83 [ $major -lt $MAJOR ] && exit 0
84 [ $minor -gt $MINOR ] && exit 1
85 [ $minor -lt $MINOR ] && exit 0
86 [ $patch -gt $PATCH ] && exit 1
87 [ $patch -lt $PATCH ] && exit 0
89 [ -z "$pre" ] && exit 1
90 [ $pre -gt $PRE ] && exit 1
91 [ $pre -lt $PRE ] && exit 0
96 echo "-I${includedir} -I${archincludedir}"
99 echo "-L${libdir} -l@LIBRARY@"
102 echo >&2 "$ego: unrecognized option \`$1'"
106 #----- That's all, folks ----------------------------------------------------