blob: a5394170d752a73ca2501b329f9da18049517eec [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301#! /bin/sh
micky3879b9f5e72025-07-08 18:04:53 -04002# $Id: adacurses-config.in,v 1.15 2022/07/16 21:16:43 tom Exp $
Steve Kondikae271bc2015-11-15 02:50:53 +01003##############################################################################
micky3879b9f5e72025-07-08 18:04:53 -04004# Copyright 2019-2020,2022 Thomas E. Dickey #
5# Copyright 2007-2014,2016 Free Software Foundation, Inc. #
Steve Kondikae271bc2015-11-15 02:50:53 +01006# #
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##############################################################################
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053031#
Steve Kondikae271bc2015-11-15 02:50:53 +010032# This script returns the options to add to `gnatmake' for using AdaCurses.
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053033
Steve Kondikae271bc2015-11-15 02:50:53 +010034DESTDIR=@DESTDIR@
35prefix=@prefix@
36exec_prefix=@exec_prefix@
37libdir=@libdir@
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053038
Steve Kondikae271bc2015-11-15 02:50:53 +010039ADA_INCLUDE=@ADA_INCLUDE@
40ADA_OBJECTS=@ADA_OBJECTS@
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053041
Steve Kondikae271bc2015-11-15 02:50:53 +010042VERSION=@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@
43
44CFLAGS="-aI$ADA_INCLUDE -aO$ADA_OBJECTS"
micky3879b9f5e72025-07-08 18:04:53 -040045LIBS="-L$ADA_OBJECTS -l@ADA_LIBNAME@"
Steve Kondikae271bc2015-11-15 02:50:53 +010046
micky3879b9f5e72025-07-08 18:04:53 -040047THIS="@ADA_LIBNAME@"
48THIS_CFG="${THIS}@DFT_ARG_SUFFIX@-config"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053049
50case "x$1" in
Steve Kondikae271bc2015-11-15 02:50:53 +010051 x--version)
micky3879b9f5e72025-07-08 18:04:53 -040052 echo @ADA_LIBNAME@ $VERSION
Steve Kondikae271bc2015-11-15 02:50:53 +010053 ;;
54 x--cflags)
micky3879b9f5e72025-07-08 18:04:53 -040055 echo "$CFLAGS"
Steve Kondikae271bc2015-11-15 02:50:53 +010056 ;;
57 x--libs)
micky3879b9f5e72025-07-08 18:04:53 -040058 echo "$LIBS"
Steve Kondikae271bc2015-11-15 02:50:53 +010059 ;;
60 x)
61 # if no parameter is given, give what gnatmake needs
62 echo "$CFLAGS -largs $LIBS"
63 ;;
64 x--help)
65 cat <<ENDHELP
micky3879b9f5e72025-07-08 18:04:53 -040066Usage: ${THIS_CFG} [options]
Steve Kondikae271bc2015-11-15 02:50:53 +010067
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 *)
micky3879b9f5e72025-07-08 18:04:53 -040080 echo "Usage: ${THIS_CFG} [--version | --cflags | --libs]" >&2
Steve Kondikae271bc2015-11-15 02:50:53 +010081 exit 1
82 ;;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053083esac