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