• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#! /bin/sh
2# $Id: adacurses-config.in,v 1.15 2022/07/16 21:16:43 tom Exp $
3##############################################################################
4# Copyright 2019-2020,2022 Thomas E. Dickey                                  #
5# Copyright 2007-2014,2016 Free Software Foundation, Inc.                    #
6#                                                                            #
7# Permission is hereby granted, free of charge, to any person obtaining a    #
8# copy of this software and associated documentation files (the "Software"), #
9# to deal in the Software without restriction, including without limitation  #
10# the rights to use, copy, modify, merge, publish, distribute, distribute    #
11# with modifications, sublicense, and/or sell copies of the Software, and to #
12# permit persons to whom the Software is furnished to do so, subject to the  #
13# following conditions:                                                      #
14#                                                                            #
15# The above copyright notice and this permission notice shall be included in #
16# all copies or substantial portions of the Software.                        #
17#                                                                            #
18# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
19# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
20# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
21# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
22# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
23# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
24# DEALINGS IN THE SOFTWARE.                                                  #
25#                                                                            #
26# Except as contained in this notice, the name(s) of the above copyright     #
27# holders shall not be used in advertising or otherwise to promote the sale, #
28# use or other dealings in this Software without prior written               #
29# authorization.                                                             #
30##############################################################################
31#
32# This script returns the options to add to `gnatmake' for using AdaCurses.
33
34DESTDIR=@DESTDIR@
35prefix=@prefix@
36exec_prefix=@exec_prefix@
37libdir=@libdir@
38
39ADA_INCLUDE=@ADA_INCLUDE@
40ADA_OBJECTS=@ADA_OBJECTS@
41
42VERSION=@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@
43
44CFLAGS="-aI$ADA_INCLUDE -aO$ADA_OBJECTS"
45LIBS="-L$ADA_OBJECTS -l@ADA_LIBNAME@"
46
47THIS="@ADA_LIBNAME@"
48THIS_CFG="${THIS}@DFT_ARG_SUFFIX@-config"
49
50case "x$1" in
51	x--version)
52		echo @ADA_LIBNAME@ $VERSION
53		;;
54	x--cflags)
55		echo "$CFLAGS"
56		;;
57	x--libs)
58		echo "$LIBS"
59		;;
60	x)
61		# if no parameter is given, give what gnatmake needs
62		echo "$CFLAGS -largs $LIBS"
63		;;
64	x--help)
65		cat <<ENDHELP
66Usage: ${THIS_CFG} [options]
67
68Options:
69  --cflags           echos the gnat (Ada compiler) flags needed to compile with ${THIS}
70  --libs             echos the gnat libraries needed to link with ${THIS}
71
72  --version          echos the release+patchdate version of ${THIS}
73
74  --help             prints this message
75
76If no options are given, echos the full set of flags needed by gnatmake.
77ENDHELP
78		;;
79	*)
80		echo "Usage: ${THIS_CFG} [--version | --cflags | --libs]" >&2
81		exit 1
82		;;
83esac
84