]> git.saurik.com Git - wxWidgets.git/blame - wx-config.in
clarified that Raise() and Lower() only work for wxTopLevelWindows (closes #4717)
[wxWidgets.git] / wx-config.in
CommitLineData
9a98a854 1#!/bin/sh
ceec2216
RL
2#
3# Name: wx-config{.in,}
4# Purpose: wx configuration search and query tool {template,}
5# Author: Ron <ron@debian.org>
6# Modified by:
7# Created: 8/9/2004
8# RCS-ID: $Id$
9# Copyright: (c) 2004 Ron <ron@debian.org>
10# Essentially a fresh start this time around, but for maximum
11# compatibility basic code was taken from, and heavy reference
12# made to, the previously unattributed wx-config from cvs.
13# All the usual suspects contributed to the dicussion that led
14# to this new work and likewise to the ideas and content in the
15# original (which was probably influenced by gtk), among them:
16# Robert Roebling, Vadim Zeitlin, Vaclav Slavik, Robin Dunn
17# Licence: wxWindows licence
18############################################################################
19
6758d3d3 20# Extra^2 debug mode, for if things ever get really weird.
8ec45325
RL
21[ -z "$WXDEBUG_X" ] || set -x
22
68ca6f52
RL
23
24# On with some basic stuff, like the ability to die gracefully,
ceec2216
RL
25# and to tell people what we are about.
26# ------------------------------------------------------------------
27
28# decho _message
29# Output a message to stderr.
30decho() { echo "$*" 1>&2; }
31
32# usage _exitcode
33# Outputs a usage message to stderr and exits with _exitcode.
63f018eb
RL
34# Try to keep this to a single page (ie. < 25 lines). We can add
35# alternate or interactive help targets if people want more detail.
36#
37# Exit codes are now subject to a more strict interpretation.
38# wx-config should return 0 upon successful operation, 1 if the
39# reqested operation could not be completed successfully, and 2
40# if the requested operation is not supported by this version of
41# wx-config.
ceec2216
RL
42usage()
43{
44 cat 1>&2 <<EOF
45
46 wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--release] [--version-full]
16837dc3 47 [--list] [--selected-config] [--host=HOST] [--toolkit=TOOLKIT]
bd630206 48 [--universal[=yes|no]] [--unicode[=yes|no]] [--debug[=yes|no]]
6bddfdbf
VZ
49 [--static[=yes|no]] [--version[=VERSION]] [--basename]
50 [--cc] [--cxx] [--cppflags [base]] [--cxxflags [base]] [--cflags]
51 [--rescomp] [--linkdeps] [--ld] [--utility=UTIL]
bd630206 52 [--libs [LIBS...]] [--optional-libs [LIBS...]]
16837dc3
VZ
53
54 wx-config returns information about the wxWidgets libraries available on
55 your system. It may be used to retrieve the information required to build
6bddfdbf 56 applications using these libraries using --cppflags, --cxxflags, --cflags,
16837dc3
VZ
57 and --libs options.
58
59 If multiple builds of wxWidgets are available, you can use the options
60 --prefix, --host, --toolkit, --unicode, --debug, --static, --universal and
61 --version to select from them. The --selected-config option shows the name
62 of the current configuration and --list shows available alternatives which
63 match specified criteria. The --utility option returns the correct version
64 of UTIL to use with the selected build. The --linkdeps option returns only
65 static libraries for your makefile link rule dependencies.
ceec2216 66
bd630206
VZ
67 The LIBS arguments (comma or space separated) may be used to specify the
68 wxWidgets libraries that you wish to use. The "std" label may be used to
69 import all libraries that would be used by default if none were specified
70 explicitly, e.g. wx-config --libs core,base. The "all" label may be used
71 to import all libraries that have been compiled which are shown in the
72 list below. The --optional-libs parameter should be followed by a list
73 of libs that should be linked to, but only if they are available.
74
75 Available libraries in this build are : @BUILT_WX_LIBS@
9a98a854 76
ceec2216 77EOF
33380099 78
ceec2216
RL
79 exit $1
80}
33380099 81
ceec2216
RL
82# Unfussy people are the easiest to deal with, get them out of the way now.
83[ $# -gt 0 ] || usage 1
33380099 84
33380099 85
8ec45325
RL
86# Contentious tools determined by configure.
87EGREP="@EGREP@"
88
cf615ebb 89
ceec2216
RL
90# For the people who know what they want, or think they do:
91# Divide the valid arguments into functional groups for later examination,
92# then parse all command line arguments completely, deferring action on
93# output options until all significant input has been processed and any
94# decision about delegation has been taken.
cf615ebb 95
ceec2216
RL
96# Note early, that '-' is a complete no-no for use in option names below.
97# It totally falls apart as soon as it becomes part of a variable name.
98# Use '_' instead, and by the magic of it all just being bits, you'll
99# be able to use --my-option or --my_option from the command line at
100# your discretion. They are synonymous as user input, but _ALWAYS_ use
101# underscores for compound names in the code here, never a dash.
102
103
104# The list of all options we recognise. If it is not in here, then
105# it is not something we want to handle.
106# ------------------------------------------------------------------
107
108# Options that specify a distinct library build.
109#
110# Note also that order in this list is significant later on, as this sets
111# the precedence with which we will try to gauge the similarity of other
112# configs to this one. Options earlier in the list should be more crucial
113# to match well than those that follow. Options specified by the user will
114# always take precedence and are not subject to any partial ordering here.
115wxconfig_schema="host toolkit widgetset chartype debugtype flavour version linkage"
116
117# Options that are expected to generate some output.
92ea30ce
RL
118wxconfig_output_options="prefix exec_prefix
119 list
120 release version version_full
121 basename
122 cppflags cflags cxxflags
370d2fd7 123 rescomp
891ace05 124 rezflags
92ea30ce 125 libs
bd630206 126 optional_libs
92ea30ce
RL
127 linkdeps
128 cc cxx ld
ceec2216
RL
129 gl_libs"
130
131# Options that permit the user to supply hints that may affect the output.
132# These options all accept arbitrary values, to interpret as they please.
63f018eb 133wxconfig_input_options="prefix exec_prefix utility $wxconfig_schema"
cf615ebb 134
ceec2216
RL
135# Input options that accept only a yes or no argument.
136wxconfig_yesno_options="universal unicode debug static"
cf615ebb 137
ceec2216 138# Boolean options that do something or not.
6758d3d3 139wxconfig_flag_options="$wxconfig_yesno_options selected_config no_rpath inplace"
33380099 140
33380099 141
33380099 142
ceec2216
RL
143# Some simple sugar coating to keep things more readable below.
144# --------------------------------------------------------------
145
146# option_name _string
147# Returns NAME if _string is of the form: --NAME[=...]
148option_name()
149{
b2f55c8b 150 echo "$1" | sed 's/^--//;s/=.*//' | tr '-' '_'
ceec2216
RL
151}
152
153# option_value _string
154# Returns FOO if _string is of the form: --option=FOO
155option_value()
156{
b2f55c8b 157 echo "$1" | sed 's/^[^=]*=//'
ceec2216
RL
158}
159
160# match_field _value _list
161# Returns true if _value is a field in _list
162match_field()
163{
164 _match_field_match="$1"
165 shift
b2f55c8b 166 for _match_field_i do
ceec2216
RL
167 [ "x$_match_field_i" != "x$_match_field_match" ] || return 0
168 done
169 false
170}
171
172# remove_field _value _list
173# Returns _list minus any field(s) that match _value.
174remove_field()
cf615ebb 175{
ceec2216
RL
176 _remf_value="$1"
177 _remf_list=''
cf615ebb 178 shift
3950ea80 179 if [ -n "$_remf_value" ]; then
b2f55c8b 180 for _remf_item do
92ea30ce 181 [ "x$_remf_item" = "x$_remf_value" ] ||
3950ea80
RL
182 _remf_list="${_remf_list:+$_remf_list }$_remf_item"
183 done
184 echo "$_remf_list"
185 else
186 echo $*
187 fi
cf615ebb
VS
188}
189
ceec2216 190# validate_arg _domain _set _name _value
cf63f3d3 191# Boilerplate to validate an argument and initialise a pseudo-hash.
ceec2216
RL
192# This one is almost reduction into absurdity, and perhaps makes the
193# precise action of the argument parser below just a little more
194# obscure, but oh so neat and compact to use for multiple option
195# groups. It expands to replace repetitive clauses of the form:
196#
197# i="$(option_name $arg)"
198# if match_field "$i" $wxconfig_input_options; then
199# input_options="${input_options:+$input_options }$i"
200# eval "input_option_$i=$(option_value $arg)"
201# continue
202# fi
203#
204# with the one liners you see on the page below.
205validate_arg()
cf615ebb 206{
b2f55c8b 207 if match_field "$3" `eval echo \"\\\$$1_$2_options\"`; then
ceec2216
RL
208 eval "$2_options=\"\${$2_options:+\$$2_options }$3\""
209 eval "$2_option_$3=\"$4\""
210 return
67c13b6c 211 fi
ceec2216
RL
212 false
213}
214
215# check_yesno_option _ynoption _option _yesval _noval
216# This one might be made more generic and/or incorporated into
217# validate_arg above at some later stage, but right now we just
218# condition any specialist options into a generic one for later
219# handling. Once they are sanity checked there is no difference
220# in any case.
221check_yesno_option()
222{
92ea30ce
RL
223 eval "case \${yesno_option_$1-\${flag_option_$1-unset}} in
224 unset) ;;
225 y*|Y*) input_option_$2=\"$3\" ;;
226 n*|N*) input_option_$2=\"$4\" ;;
227 *)
228 decho
229 decho \" *** Error: Invalid request '--$1=\$yesno_option_$1'\"
230 decho \" Valid arguments for --$1 are: [ yes, no ]\"
231 decho
232 exit 1
233 ;;
ceec2216
RL
234 esac"
235}
67c13b6c 236
67c13b6c 237
ceec2216
RL
238
239# Now we are ready to find out what the user wants from us.
240# --------------------------------------------------------------
241
242# With just a little more complexity here we could have shortest
243# unique string matching for options, but that is probably overkill
244# today, so lets just get the job done.
245#
246# The important thing now then is that we simply read all input from
247# the user and don't try to act prematurely on partial information.
248# --help or an illegal argument are the only shortcuts out of here
249# at this point, otherwise, it's time to just shut up and listen for
250# a moment.
251
b2f55c8b 252for arg do
ceec2216
RL
253 case "$arg" in
254 --help|-h)
255 usage
256 ;;
257
258 --*=*)
b2f55c8b
MW
259 _name=`option_name $arg`
260 _value=`option_value $arg`
92ea30ce
RL
261 if validate_arg wxconfig input "$_name" "$_value" ||
262 validate_arg wxconfig yesno "$_name" "$_value"
ceec2216
RL
263 then
264 continue
cf615ebb 265 fi
ceec2216
RL
266 ;;
267
268 --*)
b2f55c8b 269 _name=`option_name $arg`
92ea30ce
RL
270 if validate_arg wxconfig flag "$_name" yes ||
271 validate_arg wxconfig output "$_name" yes
ceec2216
RL
272 then
273 continue
fef23dd4 274 fi
ceec2216 275 ;;
cf615ebb 276
ceec2216 277 *)
bd630206 278 # We validate the parameters later ...
6bddfdbf 279
ccde7008 280 if [ "$_name" = "cxxflags" ] || [ "$_name" = "cppflags" ] || [ "$_name" = "cflags" ]; then
6bddfdbf
VZ
281 cxx_parameters="${cxx_parameters:+$cxx_parameters }$arg"
282 elif [ "$_name" = "libs" ]; then
bd630206 283 libs_parameters="${libs_parameters:+$libs_parameters }$arg"
6bddfdbf 284 elif [ "$_name" = "optional_libs" ]; then
bd630206
VZ
285 optional_libs_parameters="${optional_libs_parameters:+$optional_libs_parameters }$arg"
286 else
1342e47c
VZ
287 # normally anything here are unattached arguments and signify an
288 # error but for compatibility with the 2.8 wx-config and,
289 # especially, configure scripts generated using 2.8 wxwin.m4 and
290 # hence doing `wx-config --version base,std`, we ignore anything
291 # following this option, just as 2.8 version used to do
292 if [ "$_name" != "version" ]; then
293 input_parameters="${input_parameters:+$input_parameters }$arg"
294 fi
bd630206 295 fi
ceec2216
RL
296 continue
297 ;;
298 esac
299 decho " *** Error: Unrecognised option: '$arg'"
300 decho "Use wx-config --help for information on command line options."
63f018eb 301 exit 2
ceec2216
RL
302done
303
304# validate_arg only checks and decomposes form. Sanity check the yes/no
305# options now too and push their respective mask values into place.
306
307check_yesno_option universal widgetset univ
308check_yesno_option unicode chartype unicode ansi
309check_yesno_option debug debugtype debug release
310check_yesno_option static linkage '-static'
311
ceec2216
RL
312# Dump everything we just read in debug mode.
313if [ -n "$WXDEBUG" ]; then
314
315 decho
bd630206
VZ
316 decho " input parameters = $input_parameters"
317 decho " libs parameters = $libs_parameters"
318 decho " optional-libs parameters = $optional_libs_parameters"
ceec2216
RL
319 decho " input options = $input_options"
320 for i in $input_options; do
b2f55c8b 321 decho " $i = `eval echo \"\\\$input_option_$i\"`"
ceec2216
RL
322 done
323 decho " yes/no options = $yesno_options"
324 for y in $yesno_options; do
b2f55c8b 325 decho " $y = `eval echo \"\\\$yesno_option_$y\"`"
ceec2216
RL
326 done
327 decho " flag options = $flag_options"
328 for f in $flag_options; do
b2f55c8b 329 decho " $f = `eval echo \"\\\$flag_option_$f\"`"
cf615ebb 330 done
ceec2216
RL
331 decho " output options = $output_options"
332 for o in $output_options; do
b2f55c8b 333 decho " $o = `eval echo \"\\\$output_option_$o\"`"
ceec2216
RL
334 done
335
336fi
337
cf615ebb 338
ceec2216
RL
339
340# Everything came in as a legal argument then, lets put some of
341# the pieces together with a little self knowledge to see what
342# we should do next.
343# --------------------------------------------------------------
344
345# get_mask [ _hash ]
346# Construct a config filename mask from a psuedo-hash of component variables.
347# The optional argument is the prefix of the hash to use. If not specified
348# this will return a mask derived from the command line options that were used.
349get_mask()
350{
351 [ $# -gt 0 ] || set m
352 eval echo "\${$1_host}\${$1_toolkit}\${$1_widgetset}-\${$1_chartype}-\${$1_debugtype}\${$1_linkage}-\${$1_version}\${$1_flavour}"
cf615ebb 353}
9a98a854 354
d9809627
RL
355# Returns true if this script is for a cross compiled config.
356is_cross() { [ "x@cross_compiling@" = "xyes" ]; }
357
ceec2216
RL
358
359# Determine the base directories we require.
360prefix=${input_option_prefix-${this_prefix:-@prefix@}}
0506bbbf 361exec_prefix=${input_option_exec_prefix-${input_option_prefix-${this_exec_prefix:-@exec_prefix@}}}
ceec2216
RL
362wxconfdir="@libdir@/wx/config"
363
b2f55c8b 364installed_configs=`cd "$wxconfdir" 2> /dev/null && ls | grep -v "^inplace-"`
ceec2216 365
d9809627 366is_cross && target="@host_alias@"
ceec2216
RL
367
368# Define a pseudo-hash to contain the specification of this wx-config
369# instance and its associated library.
370this_host="${target:+${target}-}"
371this_toolkit="@TOOLKIT_DIR@@TOOLKIT_VERSION@"
372this_widgetset="@WIDGET_SET@"
373this_chartype="@WX_CHARTYPE@"
374this_debugtype="@WX_DEBUGTYPE@"
375this_flavour="@WX_FLAVOUR@"
376this_version="@WX_RELEASE@"
b2f55c8b 377this_linkage=`[ "x@SHARED@" = "x1" ] || echo '-static'`
ceec2216 378
b2f55c8b 379this_config=`get_mask this`
ceec2216
RL
380
381# Extract the user specification from the options parsed.
b2f55c8b 382m_host=${input_option_host:+"${input_option_host}-?"}
ceec2216 383m_host=${m_host:-${input_option_host-$this_host}}
b2f55c8b
MW
384m_toolkit=${input_option_toolkit:-'[^-]+'}
385m_widgetset=${input_option_widgetset-'(univ)?'}
386m_chartype=${input_option_chartype:-'(unicode|ansi)'}
387m_debugtype=${input_option_debugtype:-'(debug|release)'}
ceec2216 388m_flavour=${input_option_flavour:+-$input_option_flavour}
b2f55c8b
MW
389m_flavour=${m_flavour:-${input_option_flavour-'(-[^-]+)?'}}
390m_version=${input_option_version:-'[0-9]+\.[0-9]+'}
391m_linkage=${input_option_linkage-'(-static)?'}
ceec2216 392
b2f55c8b 393configmask="^`get_mask`$"
ceec2216
RL
394
395
396# Dump the user specification in debug mode.
397if [ -n "$WXDEBUG" ]; then
398
399 decho
400 decho " prefix = '$prefix'"
401 decho " exec_prefix = '$exec_prefix'"
402 decho " wxconfdir = '$wxconfdir'"
403
404 decho " m_host = '$m_host'"
405 decho " m_toolkit = '$m_toolkit'"
406 decho " m_widgetset = '$m_widgetset'"
407 decho " m_chartype = '$m_chartype'"
408 decho " m_debugtype = '$m_debugtype'"
409 decho " m_flavour = '$m_flavour'"
410 decho " m_version = '$m_version'"
411 decho " m_linkage = '$m_linkage'"
412
413 decho " configmask = '$configmask'"
414 decho " this config = '$this_config'"
415 decho
416
417fi
418
419
420
9a09819a
RL
421# From here on, we'll need to be able to figure out a delegation target.
422# -----------------------------------------------------------------------
ceec2216
RL
423
424# The rules for delegation are:
425#
426# 1. If the specification is so general that it matches the default config
427# (ie. this one on a first pass), then the default config will be used
428# even if other installed libs would also match the spec.
429#
430# 2. If the default config does not match, find a list of all installed
431# libraries that do match.
432# a. If that list is empty, the specification is incompatible
433# with any installed lib. Warn and abort.
434# b. If that list contains exactly one candidate. Delegate to
435# that candidate.
436# c. If the list contains multiple candidates, pass on to step 3.
437#
438# 3. Attempt to discriminate among rival candidates by their similarity
439# to the default configuration (ie. this one). If we can find a unique
440# candidate in this way, delegate to it. If not, present a list of
441# options to the user and request that they disambiguate it with one or
442# more additional fields.
443#
444# To refine the specified pattern, we specialise each unbound field
445# using the default value from this config file. If that results in
446# no matches, we unbind it again and try the next field. If it still
447# results in multiple matches we try binding the next field as well
448# until a unique or null result again occurs.
449#
450# A more general way to look at this, is the feature specifiers are all
451# modifiers of the wx-config you are calling. If you supply none, the
452# default for that build configuration will be used. If you supply one
453# or more that the default build cannot satisfy, it will try to find the
454# config most like itself with the desired feature(s) enabled.
455# The features configured into the first wx-config called will be taken
456# as implicitly specified if it is necessary to disambiguate likely
457# candidates from the information that was explicitly provided.
458
459
460# But first, more sugar to keep what follows clear and legible.
461# --------------------------------------------------------------
462
9a09819a
RL
463# find_eligible_delegates _mask
464# Outputs all the config files installed which match the
465# (extended regex) _mask passed as an argument.
8ec45325 466find_eligible_delegates() { echo "$installed_configs" | $EGREP "$1" 2> /dev/null; }
9a09819a
RL
467
468# user_mask_fits _config
469# Returns true if the string _config satisfies the user specified mask.
8ec45325 470user_mask_fits() { echo "$1" | $EGREP "$configmask" > /dev/null 2>&1; }
9a09819a 471
ceec2216
RL
472# count_fields _word
473# Returns the number of IFS split fields in _word
474count_fields() { return $#; }
475
476# count_delegates _mask
477# Return the number of eligible config files that match _mask
b2f55c8b 478count_delegates() { count_fields `find_eligible_delegates $1`; }
ceec2216
RL
479
480# is_set _variablename
481# Returns true if $_variablename is initialised.
b2f55c8b
MW
482is_set() { [ "x`eval echo \"\\\${$1-unset}\"`" != "xunset" ]; }
483
484# not _cmd _args...
485# true iff _cmd is false
ac2e7107 486not() { if "$@"; then false; else true; fi; }
ceec2216
RL
487
488# do_find_best_delegate _unbound-options
489# The real worker part of find_best_delegate below. Recurses though all
490# unbound options binding them one at a time to the default derived from
491# this file until a unique match is made or no alternatives remain that
492# may be sensibly guessed at. It will preferentially bind the unspecified
493# options in the order they are listed in wxconfig_schema. Using this
494# partial ordering it should find the first match with the most significant
495# similarity to this file that unambiguously meets the user specification.
496# If such a match exists it will be output to stdout.
497#
498# Be careful if you modify this function. If the pruning logic is rendered
499# inoperative it will simply recurse over every permutation in the search
500# space, which may still appear to work, but add a couple more options (or
501# explicitly specify a few less) and you may not live long enough to learn
502# the result. WXDEBUG=findprogress is your friend here, it will show you
503# how many nodes get searched before a result. If you start seeing
504# increases in that number for the same input, check your work.
505# Raising the number of discriminating options from 6 to 8 raised the worst
506# case time for this to run (without pruning) from 3 to nearly 15 seconds
507# and its downhill fast from here if we have to ride that boat.
508# Early pruning still gets that down to under half a second (up from about
509# .25), so we have some breathing space yet before a different search method
510# will be called for, but lets not squander it.
511do_find_best_delegate()
ffef10f6 512{
ceec2216
RL
513 (
514 if [ "x$WXDEBUG" = "xverbose" ]; then
515 _fbd_indent="${_fbd_indent}. "
516 decho " $_fbd_indent---> unbound options: $*"
517 fi
518
b2f55c8b 519 for i do
ceec2216
RL
520
521 if [ "x$WXDEBUG" = "xverbose" ]; then
b2f55c8b 522 decho " ${_fbd_indent}binding '$i' with '`remove_field $i $*`' still free"
ceec2216
RL
523 [ -z "$_pruned" ] || decho " ${_fbd_indent} --- pruned: $_pruned ---"
524 fi
525
526 if (
527 eval m_$i=\$this_$i
b2f55c8b 528 _mask="^`get_mask`$"
ceec2216
RL
529
530 if [ "x$WXDEBUG" = "xverbose" ]; then
531 decho " ${_fbd_indent} checking: $_mask"
532 count_delegates "$_mask"
533 decho " $_fbd_indent $? eligible delegates"
b2f55c8b 534 for d in `find_eligible_delegates "$_mask"`; do
ceec2216
RL
535 decho " ${_fbd_indent} $d"
536 done
bd630206 537 fi
ceec2216
RL
538
539 count_delegates "$_mask"
540 _still_eligible=$?
541
542 if [ $_still_eligible -eq 1 ]; then
b2f55c8b 543 echo `find_eligible_delegates "$_mask"`
ceec2216
RL
544 return
545 fi
546
547 [ "x$WXDEBUG" != "xfindprogress" ] || printf "." 1>&2
548
92ea30ce 549 [ $_still_eligible -gt 1 ] && [ $# -gt 1 ] &&
b2f55c8b 550 do_find_best_delegate `remove_field $i $*`
92ea30ce 551 )
ceec2216
RL
552 then
553
554 return
555
556 elif [ $# -gt 1 ]; then
557
558 if [ "x$WXDEBUG" = "xverbose" ]; then
559 decho " ${_fbd_indent}pruning: $i"
560 _pruned="${_pruned:+$_pruned }$i"
561 fi
b2f55c8b 562 set `remove_field $i $*`
ceec2216 563
ffef10f6 564 fi
ceec2216 565
ffef10f6 566 done
ceec2216
RL
567 false
568 )
ffef10f6
VS
569}
570
ceec2216
RL
571# find_best_delegate
572# A simple wrapper around do_find_best_delegate that first determines
573# the unbound options (ie. the ones that the user did not explicitly
574# declare a preference for on the command line)
575find_best_delegate()
75f4be8a 576{
ceec2216 577 for _fbdi in $wxconfig_schema; do
92ea30ce 578 is_set input_option_$_fbdi ||
ceec2216
RL
579 _unbound_options="${_unbound_options:+$_unbound_options }$_fbdi"
580 done
581 do_find_best_delegate $_unbound_options
582}
8708fa76 583
75f4be8a 584
a13a7f89
RL
585# Legacy wx-config helpers.
586# -------------------------
587
588# get_legacy_mask
589# Returns a mask in the format used by wx2.4.
590get_legacy_mask()
591{
592 [ $# -gt 0 ] || set m
593 eval [ "x\${$1_chartype}" != "xunicode" ] || _unicode_flag=u
594 eval [ "x\${$1_debugtype}" != "xdebug" ] || _debug_flag=d
595 eval echo "wx\${$1_toolkit}${_unicode_flag}${_debug_flag}-\${$1_version}\${$1_host}-config"
596}
597
598# find_legacy_configs
599# Returns a list of configs installed by wx2.4 releases.
600find_legacy_configs()
601{
92ea30ce
RL
602 (
603 cd "$prefix/bin" &&
604 {
605 ls wx*-2.4-config | grep -v ^wxbase
606 ls wx*-2.4-config | grep ^wxbase
607 }
608 ) 2> /dev/null
a13a7f89
RL
609}
610
611# find_best_legacy_config
612# Returns the best legacy config for a given specification.
613# This assumes no matching new style config has been found.
614find_best_legacy_config()
615{
b2f55c8b 616 _legacy_configs=`find_legacy_configs`
a13a7f89 617 if [ -n "$_legacy_configs" ]; then
b2f55c8b 618 _legacy_mask=`get_legacy_mask`
a13a7f89 619 for d in $_legacy_configs; do
8ec45325 620 if echo $d | $EGREP $_legacy_mask > /dev/null 2>&1 ; then
a13a7f89
RL
621 echo "$d"
622 return
623 fi
624 done
625 fi
626 false
627}
628
629
630
9a09819a
RL
631# The only action we can perform authoritatively prior to delegation
632# is to list all the possible delegates.
633# --------------------------------------------------------------
634
635config_spec="$0 $*"
636[ -z "$WXDEBUG" ] || config_spec=$configmask
637
638# Next chance for another satisfied customer then
639#
640# If we want to get really polished here we can do plural checking,
641# but we should probably leave that until the day we gettextise it.
642if [ -n "$output_option_list" ]; then
643
644 _remains_in_prefix=$installed_configs
b2f55c8b
MW
645 _delegates=`find_eligible_delegates $configmask`
646 _best_delegate=`find_best_delegate`
9a09819a
RL
647
648 if [ "x$WXDEBUG" = "xverbose" ]; then
a13a7f89
RL
649 decho
650 decho " all = $_remains_in_prefix"
651 decho " matching = $_delegates"
652 decho " best = $_best_delegate"
653 decho " this = $this_config"
9a09819a
RL
654 fi
655
656 for d in $_delegates; do
b2f55c8b 657 _remains_in_prefix=`remove_field $d $_remains_in_prefix`
9a09819a
RL
658 done
659
660 echo
661 echo " Default config is $this_config"
662 echo
663
664 if user_mask_fits "$this_config" ; then
665
666 echo " Default config ${this_exec_prefix+in $this_exec_prefix }will be used for output"
667
668 if match_field "$this_config" $_delegates ; then
b2f55c8b 669 _delegates=`remove_field $this_config $_delegates`
9a09819a
RL
670 else
671 echo " though it is not installed in: $prefix"
672 if [ -n "$_best_delegate" ] && [ "x$_best_delegate" != "x$this_config" ]; then
673 echo
674 echo " Best alternate in $prefix:"
675 echo " $_best_delegate"
676 fi
677 fi
678
679 elif [ -n "$_best_delegate" ]; then
680
681 echo " Specification best match: $_best_delegate"
682
1320281c 683 elif [ -z "$_delegates" ]; then
9a09819a 684
b2f55c8b 685 _last_chance=`find_best_legacy_config`
a13a7f89
RL
686 if [ -n "$_last_chance" ]; then
687
688 echo " Specification matches legacy config: $_last_chance"
689
690 else
bd630206 691
a13a7f89 692 cat <<-EOF
bd630206
VZ
693 No config found to match: $config_spec
694 in $wxconfdir
9a09819a 695
bd630206
VZ
696 Please install the desired library build, or specify a different
697 prefix where it may be found. If the library is not installed
698 you may call its wx-config directly by specifying its full path.
9a09819a 699
bd630206 700EOF
9a09819a 701
a13a7f89
RL
702 fi
703
1320281c
RL
704 else
705 echo " Specification was ambiguous. Use additional feature options"
706 echo " to choose between alternate matches."
9a09819a
RL
707 fi
708
b2f55c8b 709 _delegates=`remove_field "$_best_delegate" $_delegates`
9a09819a
RL
710
711 if [ -n "$_delegates" ]; then
712 echo
713 echo " Alternate matches:"
714 for d in $_delegates; do
715 echo " $d"
716 done
717 fi
718 if [ -n "$_remains_in_prefix" ]; then
719 echo
720 echo " Also available in $prefix:"
721 for d in $_remains_in_prefix; do
722 echo " $d"
723 done
724 fi
725
b2f55c8b 726 _legacy_configs=`find_legacy_configs`
a13a7f89
RL
727 if [ -n "$_legacy_configs" ]; then
728 echo
729 echo " Legacy configs available in $prefix:"
730 for d in $_legacy_configs; do
b2f55c8b 731 echo " $d" | sed 's/-config$//'
a13a7f89
RL
732 done
733 fi
734
9a09819a
RL
735 echo
736 exit
737fi
738
739
75f4be8a 740
9a09819a
RL
741# ... so if that wasn't what they wanted, then we need to know for
742# certain, can this config satisfy the user specification?
ceec2216 743# --------------------------------------------------------------
00c81359 744
b2f55c8b 745if not user_mask_fits "$this_config" ; then
ceec2216
RL
746
747 # No? Then lets see if it knows anybody who can.
748 # But first, just be sure someone hasn't typo'd us into a loop.
749 # In present day wx, correct delegation should never need more
750 # than one hop so this is trivial to detect.
751
752 if [ -n "$WXCONFIG_DELEGATED" ]; then
753 decho
754 decho " *** Error: Bad config delegation"
755 decho
756 decho " to: $0"
757 decho " ($this_config) cannot satisfy:"
9a09819a 758 decho " $config_spec"
ceec2216
RL
759 decho " Someone has been terribly careless."
760 decho
761 exit 1
127e9080
VZ
762 fi
763
ceec2216
RL
764 count_delegates "$configmask"
765 _numdelegates=$?
766
767 if [ -n "$WXDEBUG" ]; then
768 decho " must delegate to an alternate config"
769 decho " potential delegates ($_numdelegates):"
b2f55c8b 770 for i in `find_eligible_delegates "$configmask"`; do
ceec2216
RL
771 decho " $i"
772 done
00c81359 773 fi
a43ed08a 774
ceec2216 775 if [ $_numdelegates -eq 0 ]; then
a13a7f89 776
b2f55c8b 777 _last_chance=`find_best_legacy_config`
a13a7f89
RL
778 if [ -n "$_last_chance" ]; then
779
b2f55c8b 780 for arg do
22642fb2
RL
781 case "$arg" in
782 --prefix*|--exec-prefix*| \
783 --version|--release|--basename| \
784 --static|--libs|--gl_libs| \
785 --cppflags|--cflags|--cxxflags| \
786 --cc|--cxx|--ld| \
787 --rezflags|--inplace)
788 _legacy_args="$_legacy_args $arg"
789 ;;
bd630206 790
22642fb2
RL
791 --static|--static=y*|--static=Y*)
792 _legacy_args="$_legacy_args --static"
793 ;;
794 esac
795 done
796
a13a7f89
RL
797 if [ -n "$WXDEBUG" ]; then
798 decho " found a suitable legacy delegate: $_last_chance"
22642fb2 799 decho "--> $prefix/bin/$_last_chance $_legacy_args"
a13a7f89
RL
800 fi
801
6ab7f778
SN
802 WXCONFIG_DELEGATED=yes
803 export WXCONFIG_DELEGATED
22642fb2 804 $prefix/bin/$_last_chance $_legacy_args
a13a7f89
RL
805 exit
806
807 else
d9809627
RL
808
809 cat 1>&2 <<-EOF
810
bd630206
VZ
811 Warning: No config found to match: $config_spec
812 in $wxconfdir
813 If you require this configuration, please install the desired
814 library build. If this is part of an automated configuration
815 test and no other errors occur, you may safely ignore it.
816 You may use wx-config --list to see all configs available in
817 the default prefix.
d9809627 818
bd630206 819EOF
d9809627
RL
820
821 # PIPEDREAM: from here we are actually just a teensy step
822 # from simply building the missing config for the user
823 # on the fly if this is an in tree wx-config.
824
a13a7f89
RL
825 exit 1
826 fi
a43ed08a
VZ
827 fi
828
ceec2216
RL
829 if [ $_numdelegates -gt 1 ]; then
830
831 [ -z "$WXDEBUG" ] || decho " must prune the list of eligible delegates"
832
b2f55c8b 833 best_delegate=`find_best_delegate`
ceec2216
RL
834
835 if [ -n "$best_delegate" ]; then
bd630206 836
ceec2216
RL
837 if [ -n "$WXDEBUG" ]; then
838 decho " found a suitable delegate: $best_delegate"
839 decho "--> $wxconfdir/$best_delegate $*"
840 fi
841
6ab7f778
SN
842 WXCONFIG_DELEGATED=yes
843 export WXCONFIG_DELEGATED
ceec2216
RL
844 $wxconfdir/$best_delegate $*
845 exit
846 fi
847
848 decho
3950ea80
RL
849 decho " *** Error: Specification is ambiguous"
850 decho " as $config_spec"
ceec2216 851 decho " Use additional feature options to choose between:"
b2f55c8b 852 for i in `find_eligible_delegates "$configmask"`; do
ceec2216
RL
853 decho " $i"
854 done
855 decho
9a98a854 856
ceec2216
RL
857 exit 1
858 fi
859
860 if [ -n "$WXDEBUG" ]; then
861 decho " using the only suitable delegate"
b2f55c8b 862 decho "--> $wxconfdir/`find_eligible_delegates $configmask` $*"
ceec2216
RL
863 fi
864
6ab7f778
SN
865 WXCONFIG_DELEGATED=yes
866 export WXCONFIG_DELEGATED
b2f55c8b 867 $wxconfdir/`find_eligible_delegates $configmask` $*
ceec2216 868 exit
9a98a854
VZ
869fi
870
251f47d1 871
251f47d1 872
ceec2216
RL
873# If we are still here, then from now on we are responsible for
874# all the user's needs. Time to rustle up some output for them.
875# --------------------------------------------------------------
876
877[ -z "$WXDEBUG" ] || decho " using this config"
878
9103d280
RL
879# If the user supplied a prefix, and the in tree config did not
880# delegate out to anything in that prefix, then reset the build
881# tree prefix to provide the correct output for using this
882# uninstalled wx build. Or put more simply:
883prefix=${this_prefix-$prefix}
0506bbbf 884exec_prefix=${this_exec_prefix-$exec_prefix}
ceec2216
RL
885
886includedir="@includedir@"
887libdir="@libdir@"
ffa0583f 888bindir="@bindir@"
ceec2216
RL
889
890# Trivial queries we can answer now.
6758d3d3
RL
891[ -z "$output_option_prefix" ] || echo $prefix
892[ -z "$output_option_exec_prefix" ] || echo $exec_prefix
893[ -z "$output_option_release" ] || echo "@WX_RELEASE@"
894[ -z "$output_option_version" ] || echo "@WX_VERSION@"
895[ -z "$output_option_version_full" ] || echo "@WX_SUBVERSION@"
896[ -z "$output_option_basename" ] || echo "@WX_LIBRARY_BASENAME_GUI@"
6758d3d3
RL
897[ -z "$output_option_cc" ] || echo "@CC@"
898[ -z "$output_option_cxx" ] || echo "@CXX@"
99d4fdfd 899[ -z "$output_option_ld" ] || echo "@CXX@ -o"
6758d3d3 900[ -z "$flag_option_selected_config" ] || echo "$this_config"
ceec2216 901
a55d039a
RL
902
903# --rezflags is deprecated and disabled (2005/11/29)
904if [ -n "$output_option_rezflags" ]; then
905 echo "@true"
906 decho "Warning: --rezflags, along with Mac OS classic resource building" \
907 "is deprecated. You should remove this from your Makefile and" \
bd630206 908 "build .app bundles instead."
a55d039a 909fi
004ee6da 910
ceec2216
RL
911
912# The rest are going to need a little more work.
913# --------------------------------------------------------------
914
ffa0583f
RL
915is_monolithic() { [ "x@MONOLITHIC@" = "x1" ]; }
916is_static() { [ -n "$this_linkage" ]; }
917is_installed() { [ -z "$this_prefix" ]; }
ceec2216
RL
918
919
ffa0583f
RL
920# Is the user after a support utility?
921# If this is a cross build, we need to find and return a suitable
922# native utility for the job, so we search:
923#
924# 1. local build dir (for native uninstalled builds only).
925# 2. (optional) user supplied prefix.
926# 3. configured install prefix.
927# 4. environment $PATH.
928#
929# and if such a thing still cannot be found, exit signalling an error.
930if [ -n "$input_option_utility" ]; then
931
932 # This is dumb, in tree binaries should be in a standard location
933 # like the libs, but work with what we've got for now.
934 is_cross || _util="$exec_prefix/utils/$input_option_utility/$input_option_utility"
935
b2f55c8b 936 if not is_installed && [ -x "$_util" ]; then
ffa0583f
RL
937 is_static || _preload="eval LD_LIBRARY_PATH=$exec_prefix/lib"
938 echo $_preload $_util
939 exit
940 fi
941
942 IFS=':'
943 _user_prefix=${input_option_exec_prefix:-$input_option_prefix}
944
945 for _util in "${input_option_utility}-@WX_RELEASE@@WX_FLAVOUR@" \
946 "${input_option_utility}-@WX_RELEASE@" \
92ea30ce 947 "${input_option_utility}"
ffa0583f
RL
948 do
949 for p in ${_user_prefix:+$_user_prefix/bin} $bindir $PATH; do
950
951 [ -z "$WXDEBUG" ] || decho " checking for: '$p/$_util'"
952
953 if [ -x "$p/$_util" ]; then
954 echo "$p/$_util"
955 exit
956 fi
957
958 done
959 done
960 exit 1
961
962fi
963
964
965# Still here? Then get the options together for building an app.
966# ----------------------------------------------------------------
967
ceec2216
RL
968# Additional configuration for individual library components.
969ldflags_gl="@LDFLAGS_GL@"
970
5ff751d6 971ldlibs_base="@WXCONFIG_LIBS@"
ceec2216
RL
972ldlibs_core="@EXTRALIBS_GUI@"
973ldlibs_gl="@OPENGL_LIBS@"
974ldlibs_html="@EXTRALIBS_HTML@"
975ldlibs_xml="@EXTRALIBS_XML@"
ceec2216 976ldlibs_adv="@EXTRALIBS_SDL@"
cf63f3d3 977ldlibs_stc="@EXTRALIBS_STC@"
ceec2216 978
ffa0583f 979
ceec2216
RL
980# lib_flags_for _liblist
981# This function returns a list of flags suitable to return with the
982# output of --libs for all of the libraries in _liblist. You can
983# add support for a new library by adding an entry for it in the
984# psuedo-hashes above if it requires additional linker options.
985lib_flags_for()
986{
987 [ -z "$WXDEBUG" ] || decho " fetching lib flags for: '$*'"
988
989 _all_ldflags=''
990 _all_libs=''
991 _wxlibs=''
992
92ea30ce 993 is_cross && _target="-${target}"
ceec2216 994
b2f55c8b 995 for lib do
ceec2216
RL
996
997 # We evidently can't trust people not to duplicate things in
998 # configure, or to keep them in any sort of sane order overall,
999 # so only add unique new fields here even if it takes us a while.
1000 # In the case of libs, we bubble any duplicates to the end,
1001 # because if multiple libs require it, static linking at least
1002 # will require it to come after all of them. So long as local
1003 # order is ok in configure then we should always be able to
1004 # massage a correct result here like this.
1005 #
1006 # FIXME: ldlibs_core is totally bogus. Fix the duplication
1007 # there independently of this. This covers for it, but we
1008 # want to do this anyway because some libs may share common
1009 # deps without a common ancestor in wx. This is not a licence
1010 # for sloppy work elsewhere though and @GUI_TK_LIBRARY should
1011 # be fixed.
1012
b2f55c8b 1013 for f in `eval echo \"\\\$ldflags_$lib\"`; do
ceec2216
RL
1014 match_field "$f" $_all_ldflags || _all_ldflags="$_all_ldflags $f"
1015 done
1016
bd630206 1017 if match_field "$lib" @STD_BASE_LIBS@ ; then
ceec2216
RL
1018 _libname="@WX_LIBRARY_BASENAME_NOGUI@"
1019 else
1020 _libname="@WX_LIBRARY_BASENAME_GUI@"
1021 fi
1022 [ $lib = base ] || _libname="${_libname}_$lib"
1023 _libname="${_libname}-@WX_RELEASE@$_target"
1024
ffa0583f 1025 if is_static; then
ceec2216 1026 _wxlibs="$_wxlibs ${libdir}/lib${_libname}.a"
b2f55c8b 1027 for f in `eval echo \"\\\$ldlibs_$lib\"`; do
3838e2d3
RL
1028
1029 # Only propagate duplicate -libraries to their latest
1030 # possible position. Do not eliminate any other
1031 # duplicates that might occur. They should be fixed
1032 # in configure long before they get here.
1033 # This started as a workaround for Mac -framework,
1034 # but it seems like a better policy in general, which
1035 # will let the more heinous bugs in configure shake out.
1036 # We should maybe filter *.a here too, but not unless
1037 # we have to.
eb57b07a 1038 case "$f" in
b2f55c8b 1039 -l*) _all_libs="`remove_field $f $_all_libs` $f" ;;
eb57b07a
RL
1040 *) _all_libs="$_all_libs $f" ;;
1041 esac
3838e2d3 1042
ceec2216
RL
1043 done
1044 else
1045 _wxlibs="$_wxlibs -l${_libname}"
1046 fi
1047
1048 done
1049
1050 if [ -n "$WXDEBUG" ]; then
1051 decho " retrieved: ldflags = $_all_ldflags"
1052 decho " wxlibs = $_wxlibs"
1053 decho " alllibs = $_all_libs"
1054 fi
1055
1056 echo $_all_ldflags $_wxlibs $_all_libs
1057}
1058
fc2739d5
VZ
1059# this is the strict subset of the above function which returns only the
1060# (static) libraries themselves: this is used for linkdeps output which should
1061# output the list of libraries the main program should depend on
1062#
1063# of course, this duplication is bad but I'll leave to somebody else the care
3838e2d3
RL
1064# of refactoring this as I don't see any way to do it - VZ.
1065
1066# This (and the other cruft to support it) should be removed with
1067# reference to the FIXME above when configure stops piping us a slurry
1068# of options that need to be decomposed again for most practical uses - RL.
fc2739d5
VZ
1069link_deps_for()
1070{
1071 _wxlibs=''
1072
92ea30ce 1073 is_cross && _target="-${target}"
fc2739d5 1074
b2f55c8b 1075 for lib do
bd630206 1076 if match_field "$lib" @STD_BASE_LIBS@ ; then
fc2739d5
VZ
1077 _libname="@WX_LIBRARY_BASENAME_NOGUI@"
1078 else
1079 _libname="@WX_LIBRARY_BASENAME_GUI@"
1080 fi
1081 [ $lib = base ] || _libname="${_libname}_$lib"
1082 _libname="${_libname}-@WX_RELEASE@$_target"
1083
1084 _wxlibs="$_wxlibs ${libdir}/lib${_libname}.a"
1085 done
1086
1087 echo $_wxlibs
1088}
ceec2216
RL
1089
1090# Sanity check the list of libs the user provided us, if any.
1091# --------------------------------------------------------------
1092
bd630206
VZ
1093wx_libs=`echo "$libs_parameters" | tr ',' ' '`
1094wx_optional_libs=`echo "$optional_libs_parameters" | tr ',' ' '`
1095
1096# Add the --optional-libs, if they've been compiled and aren't already added
1097for i in $wx_optional_libs; do
1098 if match_field $i @BUILT_WX_LIBS@; then
1099 if not match_field $i $wx_libs; then
1100 wx_libs="${wx_libs:+$wx_libs }$i"
1101 fi
1102 fi
1103done
ceec2216
RL
1104
1105[ -z "$WXDEBUG" ] || decho " user supplied libs: '$wx_libs'"
1106
6bddfdbf
VZ
1107# Assume we are using the GUI, unless --libs was specified with no GUI libs
1108using_gui=yes
1109
ceec2216
RL
1110if is_monolithic; then
1111
bd630206
VZ
1112 # Only add additional info if --libs was specified and not just --optional-libs
1113 if [ -n "$output_option_libs" ]; then
1114 # Core libs are already built into the blob.
1115 for i in std @STD_GUI_LIBS@ @STD_BASE_LIBS@; do
1116 wx_libs=`remove_field $i $wx_libs`
1117 done
ceec2216 1118
bd630206 1119 wx_libs="@WXCONFIG_LDFLAGS_GUI@ `lib_flags_for $wx_libs`"
ceec2216 1120
bd630206
VZ
1121 # We still need the core lib deps for a static build though
1122 if is_static; then
1123 link_deps="${libdir}/libwx_@TOOLCHAIN_NAME@.a"
1124 wx_libs="$wx_libs $link_deps $ldlibs_core $ldlibs_base"
1125 else
1126 wx_libs="$wx_libs -lwx_@TOOLCHAIN_NAME@"
1127 fi
bd630206 1128 fi
ceec2216
RL
1129else # MONOLITHIC = 0
1130
bd630206
VZ
1131 # Import core libs by default, expand std if specified, or add base if omitted.
1132 if [ -n "$output_option_libs" ] && [ -z "$libs_parameters" ]; then
1133 wx_libs="@STD_GUI_LIBS@ @STD_BASE_LIBS@"
1134 elif match_field all $wx_libs; then
1135 wx_libs="@BUILT_WX_LIBS@"
6a9046db
RL
1136 elif match_field std $wx_libs; then
1137 # Bubble any libs that were already specified to the end
1138 # of the list and ensure static linking order is retained.
b2f55c8b 1139 wx_libs=`remove_field std $wx_libs`
bd630206 1140 for i in @STD_GUI_LIBS@ @STD_BASE_LIBS@; do
b2f55c8b 1141 wx_libs="`remove_field $i $wx_libs` $i"
ceec2216 1142 done
b2f55c8b 1143 elif not match_field base $wx_libs ; then
bd630206
VZ
1144 # Only add base if --libs was specified and not just --optional-libs
1145 if [ -n "$output_option_libs" ]; then
1146 wx_libs="$wx_libs base"
1147 fi
ceec2216
RL
1148 fi
1149
6bddfdbf
VZ
1150 if [ -n "$output_option_libs" ]; then
1151 using_gui=no
1152 for i in $wx_libs ; do
1153 if match_field "$i" @STD_GUI_LIBS@; then
1154 _guildflags="@WXCONFIG_LDFLAGS_GUI@"
1155 using_gui=yes
1156 break
1157 fi
1158 match_field "$i" @STD_BASE_LIBS@ || using_gui=yes
1159 done
1160 fi
ceec2216 1161
ffa0583f 1162 if is_static; then
b2f55c8b 1163 link_deps=`link_deps_for $wx_libs`
fc2739d5 1164 fi
b2f55c8b 1165 wx_libs="$_guildflags `lib_flags_for $wx_libs`"
251f47d1
VS
1166fi
1167
ceec2216 1168
6bddfdbf
VZ
1169# If they explicitly set "--cxx(pp)flags base" then they don't want the GUI
1170if [ "$cxx_parameters" = "base" ]; then
1171 using_gui=no
1172fi
1173
1174
ceec2216
RL
1175if [ -n "$WXDEBUG" ]; then
1176 decho
1177 decho " using libs: '$wx_libs'"
1178 decho " using_gui = $using_gui"
1179 decho
c39ee0ad 1180fi
251f47d1
VS
1181
1182
ceec2216
RL
1183# Endgame. Nothing left to discover now.
1184# --------------------------------------------------------------
251f47d1 1185
9103d280 1186[ "$using_gui" = "yes" ] || _gui_cppflags="-DwxUSE_GUI=0"
ceec2216 1187
ffa0583f 1188if is_installed; then
0506bbbf 1189 _include_cppflags="-I${includedir}/wx-@WX_RELEASE@@WX_FLAVOUR@"
ffa0583f 1190else
aa1c09fe 1191 _include_cppflags="-I${includedir}"
0506bbbf
RL
1192fi
1193
b2f55c8b 1194_cppflags=`echo "-I${libdir}/wx/include/@TOOLCHAIN_FULLNAME@" $_include_cppflags "@WXCONFIG_CPPFLAGS@" $_gui_cppflags`
ceec2216
RL
1195
1196# now without further ado, we can answer these too.
9103d280 1197[ -z "$output_option_cppflags" ] || echo $_cppflags
5ff751d6
VZ
1198[ -z "$output_option_cflags" ] || echo $_cppflags "@WXCONFIG_CFLAGS@"
1199[ -z "$output_option_cxxflags" ] || echo $_cppflags "@WXCONFIG_CXXFLAGS@"
b2f55c8b 1200[ -z "$output_option_gl_libs" ] || echo `lib_flags_for gl`
fc2739d5 1201[ -z "$output_option_linkdeps" ] || echo $link_deps
ceec2216
RL
1202
1203if [ -n "$output_option_libs" ]; then
bd630206 1204 # if --libs [--optional-libs] then output the full linker information
ceec2216 1205
92ea30ce
RL
1206 is_cross &&
1207 [ "x$libdir" = "x/usr/${target}/lib" ] ||
1208 [ "x$libdir" = "x/usr/lib" ] ||
1209 _ldflags="-L$libdir"
ceec2216 1210
ffa0583f
RL
1211 is_installed || [ -n "$flag_option_no_rpath" ] || _rpath="@WXCONFIG_RPATH@"
1212
1213 echo $_ldflags "@LDFLAGS@" $_rpath $wx_libs "@DMALLOC_LIBS@"
bd630206
VZ
1214
1215elif [ -n "$output_option_optional_libs" ]; then
1216 # if only --optional-libs then output just the libs
1217
1218 echo $wx_libs
ceec2216
RL
1219fi
1220
004ee6da 1221
a55d039a
RL
1222# xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
1223#
1224# Beyond here reside only machine or tool specific workarounds
1225# that require knowlege not obtainable prior to this comment.
1226#
1227# Please. Avoid addding things here, wx-config should avoid
1228# hard coding tool specific details. Do not use things here
1229# as an example of other things that should be here, These
1230# shouldn't be here either. This is a place of last resort
1231# for interim workarounds. I can but stress as strongly as
1232# the censor will allow, there are only bad examples of things
1233# that belong at this level of abstraction to follow. It is
1234# a limbo for glitches awaiting the Next Design Repair. Ok.
1235#
1236# With that firmly in mind, our debut dilemma is:
3f97aec5 1237
a55d039a 1238# Resource compilers. An elusive term that covers some pretty
004ee6da
RL
1239# dissimilar concepts on various platforms. The good news is,
1240# each platform has only one definition of 'resource', compiled
1241# or not, and so we can abstract that neatly to return a platform
1242# specific invocation of the appropriate tool. The bad news is,
1243# windres (at least) requires knowledge of the wx header files
1244# location(s) that cannot be predicted reliably before the call to
1245# wx-config is made. Currently for all known resource compilers,
1246# we can simply return a command and some salient configuration
1247# options in response to a request for --rescomp. So here we
1248# top up the options for any tools that may require information
1249# that was only just determined in the last few machine cycles,
1250# then output the necessary incantation for the platform.
1251#
1252# Most things should already be constant by the time configure
1253# has run. Do not add anything here that is already known there.
1254
1255if [ -n "$output_option_rescomp" ]; then
1256
1257 case "@RESCOMP@" in
1258 *windres|wrc)
1259 # Note that with late model windres, we could just insert
bd630206
VZ
1260 # _include_cppflags here, but use the old notation for now
1261 # as it is more universally accepted.
004ee6da
RL
1262 if is_installed; then
1263 echo "@RESCOMP@ --include-dir" \
1264 "${includedir}/wx-@WX_RELEASE@@WX_FLAVOUR@" \
1265 "@WXCONFIG_RESFLAGS@"
1266 else
1267 echo "@RESCOMP@ --include-dir ${includedir}" \
bd630206 1268 "@WXCONFIG_RESFLAGS@"
004ee6da
RL
1269 fi
1270 ;;
1271
1272 # neither rez not emxbind have any specific needs from
1273 # us, so just output what was determined by configure.
1274 *)
1275 echo @RESCOMP@ @WXCONFIG_RESFLAGS@
1276 ;;
1277 esac
1278
1279fi
1280
a55d039a
RL
1281#
1282# xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
004ee6da 1283
ceec2216
RL
1284# And so that's it, we're done. Have a nice build.
1285
1286exit 0
9a98a854 1287
9a98a854 1288