1#! /bin/sh
2# Generated by configure.
3# Run this file to recreate the current configuration.
4# Compiler output produced by configure, useful for debugging
5# configure, is in config.log if it exists.
6
7debug=false
8ac_cs_recheck=false
9ac_cs_silent=false
10
11SHELL=${CONFIG_SHELL-/bin/sh}
12export SHELL
13## -------------------- ##
14## M4sh Initialization. ##
15## -------------------- ##
16
17# Be more Bourne compatible
18DUALCASE=1; export DUALCASE # for MKS sh
19if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20  emulate sh
21  NULLCMD=:
22  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23  # is contrary to our usage.  Disable this feature.
24  alias -g '${1+"$@"}'='"$@"'
25  setopt NO_GLOB_SUBST
26else
27  case `(set -o) 2>/dev/null` in #(
28  *posix*) :
29    set -o posix ;; #(
30  *) :
31     ;;
32esac
33fi
34
35
36as_nl='
37'
38export as_nl
39# Printing a long string crashes Solaris 7 /usr/bin/printf.
40as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43# Prefer a ksh shell builtin over an external printf program on Solaris,
44# but without wasting forks for bash or zsh.
45if test -z "$BASH_VERSION$ZSH_VERSION" \
46    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47  as_echo='print -r --'
48  as_echo_n='print -rn --'
49elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50  as_echo='printf %s\n'
51  as_echo_n='printf %s'
52else
53  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55    as_echo_n='/usr/ucb/echo -n'
56  else
57    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58    as_echo_n_body='eval
59      arg=$1;
60      case $arg in #(
61      *"$as_nl"*)
62	expr "X$arg" : "X\\(.*\\)$as_nl";
63	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64      esac;
65      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66    '
67    export as_echo_n_body
68    as_echo_n='sh -c $as_echo_n_body as_echo'
69  fi
70  export as_echo_body
71  as_echo='sh -c $as_echo_body as_echo'
72fi
73
74# The user is always right.
75if test "${PATH_SEPARATOR+set}" != set; then
76  PATH_SEPARATOR=:
77  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79      PATH_SEPARATOR=';'
80  }
81fi
82
83
84# IFS
85# We need space, tab and new line, in precisely that order.  Quoting is
86# there to prevent editors from complaining about space-tab.
87# (If _AS_PATH_WALK were called with IFS unset, it would disable word
88# splitting by setting IFS to empty value.)
89IFS=" ""	$as_nl"
90
91# Find who we are.  Look in the path if we contain no directory separator.
92case $0 in #((
93  *[\\/]* ) as_myself=$0 ;;
94  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
95for as_dir in $PATH
96do
97  IFS=$as_save_IFS
98  test -z "$as_dir" && as_dir=.
99    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
100  done
101IFS=$as_save_IFS
102
103     ;;
104esac
105# We did not find ourselves, most probably we were run as `sh COMMAND'
106# in which case we are not to be found in the path.
107if test "x$as_myself" = x; then
108  as_myself=$0
109fi
110if test ! -f "$as_myself"; then
111  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
112  exit 1
113fi
114
115# Unset variables that we do not need and which cause bugs (e.g. in
116# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
117# suppresses any "Segmentation fault" message there.  '((' could
118# trigger a bug in pdksh 5.2.14.
119for as_var in BASH_ENV ENV MAIL MAILPATH
120do eval test x\${$as_var+set} = xset \
121  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
122done
123PS1='$ '
124PS2='> '
125PS4='+ '
126
127# NLS nuisances.
128LC_ALL=C
129export LC_ALL
130LANGUAGE=C
131export LANGUAGE
132
133# CDPATH.
134(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
135
136
137# as_fn_error ERROR [LINENO LOG_FD]
138# ---------------------------------
139# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
140# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
141# script with status $?, using 1 if that was 0.
142as_fn_error ()
143{
144  as_status=$?; test $as_status -eq 0 && as_status=1
145  if test "$3"; then
146    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
147    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
148  fi
149  $as_echo "$as_me: error: $1" >&2
150  as_fn_exit $as_status
151} # as_fn_error
152
153
154# as_fn_set_status STATUS
155# -----------------------
156# Set $? to STATUS, without forking.
157as_fn_set_status ()
158{
159  return $1
160} # as_fn_set_status
161
162# as_fn_exit STATUS
163# -----------------
164# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
165as_fn_exit ()
166{
167  set +e
168  as_fn_set_status $1
169  exit $1
170} # as_fn_exit
171
172# as_fn_unset VAR
173# ---------------
174# Portably unset VAR.
175as_fn_unset ()
176{
177  { eval $1=; unset $1;}
178}
179as_unset=as_fn_unset
180# as_fn_append VAR VALUE
181# ----------------------
182# Append the text in VALUE to the end of the definition contained in VAR. Take
183# advantage of any shell optimizations that allow amortized linear growth over
184# repeated appends, instead of the typical quadratic growth present in naive
185# implementations.
186if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
187  eval 'as_fn_append ()
188  {
189    eval $1+=\$2
190  }'
191else
192  as_fn_append ()
193  {
194    eval $1=\$$1\$2
195  }
196fi # as_fn_append
197
198# as_fn_arith ARG...
199# ------------------
200# Perform arithmetic evaluation on the ARGs, and store the result in the
201# global $as_val. Take advantage of shells that can avoid forks. The arguments
202# must be portable across $(()) and expr.
203if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
204  eval 'as_fn_arith ()
205  {
206    as_val=$(( $* ))
207  }'
208else
209  as_fn_arith ()
210  {
211    as_val=`expr "$@" || test $? -eq 1`
212  }
213fi # as_fn_arith
214
215
216if expr a : '\(a\)' >/dev/null 2>&1 &&
217   test "X`expr 00001 : '.*\(...\)'`" = X001; then
218  as_expr=expr
219else
220  as_expr=false
221fi
222
223if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
224  as_basename=basename
225else
226  as_basename=false
227fi
228
229if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
230  as_dirname=dirname
231else
232  as_dirname=false
233fi
234
235as_me=`$as_basename -- "$0" ||
236$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
237	 X"$0" : 'X\(//\)$' \| \
238	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
239$as_echo X/"$0" |
240    sed '/^.*\/\([^/][^/]*\)\/*$/{
241	    s//\1/
242	    q
243	  }
244	  /^X\/\(\/\/\)$/{
245	    s//\1/
246	    q
247	  }
248	  /^X\/\(\/\).*/{
249	    s//\1/
250	    q
251	  }
252	  s/.*/./; q'`
253
254# Avoid depending upon Character Ranges.
255as_cr_letters='abcdefghijklmnopqrstuvwxyz'
256as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
257as_cr_Letters=$as_cr_letters$as_cr_LETTERS
258as_cr_digits='0123456789'
259as_cr_alnum=$as_cr_Letters$as_cr_digits
260
261ECHO_C= ECHO_N= ECHO_T=
262case `echo -n x` in #(((((
263-n*)
264  case `echo 'xy\c'` in
265  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
266  xy)  ECHO_C='\c';;
267  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
268       ECHO_T='	';;
269  esac;;
270*)
271  ECHO_N='-n';;
272esac
273
274rm -f conf$$ conf$$.exe conf$$.file
275if test -d conf$$.dir; then
276  rm -f conf$$.dir/conf$$.file
277else
278  rm -f conf$$.dir
279  mkdir conf$$.dir 2>/dev/null
280fi
281if (echo >conf$$.file) 2>/dev/null; then
282  if ln -s conf$$.file conf$$ 2>/dev/null; then
283    as_ln_s='ln -s'
284    # ... but there are two gotchas:
285    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
286    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
287    # In both cases, we have to default to `cp -p'.
288    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
289      as_ln_s='cp -p'
290  elif ln conf$$.file conf$$ 2>/dev/null; then
291    as_ln_s=ln
292  else
293    as_ln_s='cp -p'
294  fi
295else
296  as_ln_s='cp -p'
297fi
298rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
299rmdir conf$$.dir 2>/dev/null
300
301
302# as_fn_mkdir_p
303# -------------
304# Create "$as_dir" as a directory, including parents if necessary.
305as_fn_mkdir_p ()
306{
307
308  case $as_dir in #(
309  -*) as_dir=./$as_dir;;
310  esac
311  test -d "$as_dir" || eval $as_mkdir_p || {
312    as_dirs=
313    while :; do
314      case $as_dir in #(
315      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
316      *) as_qdir=$as_dir;;
317      esac
318      as_dirs="'$as_qdir' $as_dirs"
319      as_dir=`$as_dirname -- "$as_dir" ||
320$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
321	 X"$as_dir" : 'X\(//\)[^/]' \| \
322	 X"$as_dir" : 'X\(//\)$' \| \
323	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
324$as_echo X"$as_dir" |
325    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
326	    s//\1/
327	    q
328	  }
329	  /^X\(\/\/\)[^/].*/{
330	    s//\1/
331	    q
332	  }
333	  /^X\(\/\/\)$/{
334	    s//\1/
335	    q
336	  }
337	  /^X\(\/\).*/{
338	    s//\1/
339	    q
340	  }
341	  s/.*/./; q'`
342      test -d "$as_dir" && break
343    done
344    test -z "$as_dirs" || eval "mkdir $as_dirs"
345  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
346
347
348} # as_fn_mkdir_p
349if mkdir -p . 2>/dev/null; then
350  as_mkdir_p='mkdir -p "$as_dir"'
351else
352  test -d ./-p && rmdir ./-p
353  as_mkdir_p=false
354fi
355
356if test -x / >/dev/null 2>&1; then
357  as_test_x='test -x'
358else
359  if ls -dL / >/dev/null 2>&1; then
360    as_ls_L_option=L
361  else
362    as_ls_L_option=
363  fi
364  as_test_x='
365    eval sh -c '\''
366      if test -d "$1"; then
367	test -d "$1/.";
368      else
369	case $1 in #(
370	-*)set "./$1";;
371	esac;
372	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
373	???[sx]*):;;*)false;;esac;fi
374    '\'' sh
375  '
376fi
377as_executable_p=$as_test_x
378
379# Sed expression to map a string onto a valid CPP name.
380as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
381
382# Sed expression to map a string onto a valid variable name.
383as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
384
385
386exec 6>&1
387## ----------------------------------- ##
388## Main body of $CONFIG_STATUS script. ##
389## ----------------------------------- ##
390# Save the log message, to keep $0 and so on meaningful, and to
391# report actual input values of CONFIG_FILES etc. instead of their
392# values after options handling.
393ac_log="
394This file was extended by ibus-kmfl $as_me 1.0.2, which was
395generated by GNU Autoconf 2.65.  Invocation command line was
396
397  CONFIG_FILES    = $CONFIG_FILES
398  CONFIG_HEADERS  = $CONFIG_HEADERS
399  CONFIG_LINKS    = $CONFIG_LINKS
400  CONFIG_COMMANDS = $CONFIG_COMMANDS
401  $ $0 $@
402
403on `(hostname || uname -n) 2>/dev/null | sed 1q`
404"
405
406# Files that config.status was made for.
407config_files=" po/Makefile.in Makefile ibus-kmfl.spec src/Makefile src/kmfl.xml.in icons/Makefile m4/Makefile"
408config_headers=" config.h"
409config_commands=" depfiles libtool po-directories"
410
411ac_cs_usage="\
412\`$as_me' instantiates files and other configuration actions
413from templates according to the current configuration.  Unless the files
414and actions are specified as TAGs, all are instantiated by default.
415
416Usage: $0 [OPTION]... [TAG]...
417
418  -h, --help       print this help, then exit
419  -V, --version    print version number and configuration settings, then exit
420      --config     print configuration, then exit
421  -q, --quiet, --silent
422                   do not print progress messages
423  -d, --debug      don't remove temporary files
424      --recheck    update $as_me by reconfiguring in the same conditions
425      --file=FILE[:TEMPLATE]
426                   instantiate the configuration file FILE
427      --header=FILE[:TEMPLATE]
428                   instantiate the configuration header FILE
429
430Configuration files:
431$config_files
432
433Configuration headers:
434$config_headers
435
436Configuration commands:
437$config_commands
438
439Report bugs to <http://code.google.com/p/ibus/issues/entry>."
440
441ac_cs_config="'--build=i686-pc-linux-gnu' '--host=i686-pc-linux-gnu' '--program-prefix=' '--disable-dependency-tracking' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-static' 'build_alias=i686-pc-linux-gnu' 'host_alias=i686-pc-linux-gnu' 'CFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables' 'CXXFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables'"
442ac_cs_version="\
443ibus-kmfl config.status 1.0.2
444configured by ./configure, generated by GNU Autoconf 2.65,
445  with options \"$ac_cs_config\"
446
447Copyright (C) 2009 Free Software Foundation, Inc.
448This config.status script is free software; the Free Software Foundation
449gives unlimited permission to copy, distribute and modify it."
450
451ac_pwd='/home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2'
452srcdir='.'
453INSTALL='/usr/bin/install -c'
454MKDIR_P='/bin/mkdir -p'
455AWK='gawk'
456test -n "$AWK" || AWK=awk
457# The default lists apply if the user does not specify any file.
458ac_need_defaults=:
459while test $# != 0
460do
461  case $1 in
462  --*=*)
463    ac_option=`expr "X$1" : 'X\([^=]*\)='`
464    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
465    ac_shift=:
466    ;;
467  *)
468    ac_option=$1
469    ac_optarg=$2
470    ac_shift=shift
471    ;;
472  esac
473
474  case $ac_option in
475  # Handling of the options.
476  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
477    ac_cs_recheck=: ;;
478  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
479    $as_echo "$ac_cs_version"; exit ;;
480  --config | --confi | --conf | --con | --co | --c )
481    $as_echo "$ac_cs_config"; exit ;;
482  --debug | --debu | --deb | --de | --d | -d )
483    debug=: ;;
484  --file | --fil | --fi | --f )
485    $ac_shift
486    case $ac_optarg in
487    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
488    esac
489    as_fn_append CONFIG_FILES " '$ac_optarg'"
490    ac_need_defaults=false;;
491  --header | --heade | --head | --hea )
492    $ac_shift
493    case $ac_optarg in
494    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
495    esac
496    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
497    ac_need_defaults=false;;
498  --he | --h)
499    # Conflict between --help and --header
500    as_fn_error "ambiguous option: \`$1'
501Try \`$0 --help' for more information.";;
502  --help | --hel | -h )
503    $as_echo "$ac_cs_usage"; exit ;;
504  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
505  | -silent | --silent | --silen | --sile | --sil | --si | --s)
506    ac_cs_silent=: ;;
507
508  # This is an error.
509  -*) as_fn_error "unrecognized option: \`$1'
510Try \`$0 --help' for more information." ;;
511
512  *) as_fn_append ac_config_targets " $1"
513     ac_need_defaults=false ;;
514
515  esac
516  shift
517done
518
519ac_configure_extra_args=
520
521if $ac_cs_silent; then
522  exec 6>/dev/null
523  ac_configure_extra_args="$ac_configure_extra_args --silent"
524fi
525
526if $ac_cs_recheck; then
527  set X '/bin/sh' './configure'  '--build=i686-pc-linux-gnu' '--host=i686-pc-linux-gnu' '--program-prefix=' '--disable-dependency-tracking' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-static' 'build_alias=i686-pc-linux-gnu' 'host_alias=i686-pc-linux-gnu' 'CFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables' 'CXXFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables' $ac_configure_extra_args --no-create --no-recursion
528  shift
529  $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
530  CONFIG_SHELL='/bin/sh'
531  export CONFIG_SHELL
532  exec "$@"
533fi
534
535exec 5>>config.log
536{
537  echo
538  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
539## Running $as_me. ##
540_ASBOX
541  $as_echo "$ac_log"
542} >&5
543
544#
545# INIT-COMMANDS
546#
547AMDEP_TRUE="#" ac_aux_dir="."
548
549
550# The HP-UX ksh and POSIX shell print the target directory to stdout
551# if CDPATH is set.
552(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
553
554sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
555double_quote_subst='s/\(["`\\]\)/\\\1/g'
556delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
557enable_static='no'
558macro_version='2.2.6b'
559macro_revision='1.3017'
560enable_shared='yes'
561pic_mode='default'
562enable_fast_install='yes'
563host_alias='i686-pc-linux-gnu'
564host='i686-pc-linux-gnu'
565host_os='linux-gnu'
566build_alias='i686-pc-linux-gnu'
567build='i686-pc-linux-gnu'
568build_os='linux-gnu'
569SED='/bin/sed'
570Xsed='/bin/sed -e 1s/^X//'
571GREP='/bin/grep'
572EGREP='/bin/grep -E'
573FGREP='/bin/grep -F'
574LD='/usr/bin/ld'
575NM='/usr/bin/nm -B'
576LN_S='ln -s'
577max_cmd_len='1966080'
578ac_objext='o'
579exeext=''
580lt_unset='unset'
581lt_SP2NL='tr \040 \012'
582lt_NL2SP='tr \015\012 \040\040'
583reload_flag=' -r'
584reload_cmds='$LD$reload_flag -o $output$reload_objs'
585deplibs_check_method='pass_all'
586file_magic_cmd='$MAGIC_CMD'
587AR='ar'
588AR_FLAGS='cru'
589STRIP='strip'
590RANLIB='ranlib'
591old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $oldlib'
592old_postuninstall_cmds=''
593old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $oldlib'
594CC='gcc'
595CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables'
596compiler='g++'
597GCC='yes'
598lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
599lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
600lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\2", (void *) \&\2},/p'\'''
601lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/  {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"lib\2", (void *) \&\2},/p'\'''
602objdir='.libs'
603SHELL='/bin/sh'
604ECHO='echo'
605MAGIC_CMD='file'
606lt_prog_compiler_no_builtin_flag=' -fno-builtin'
607lt_prog_compiler_wl='-Wl,'
608lt_prog_compiler_pic=' -fPIC -DPIC'
609lt_prog_compiler_static=''
610lt_cv_prog_compiler_c_o='yes'
611need_locks='no'
612DSYMUTIL=''
613NMEDIT=''
614LIPO=''
615OTOOL=''
616OTOOL64=''
617libext='a'
618shrext_cmds='.so'
619extract_expsyms_cmds=''
620archive_cmds_need_lc='no'
621enable_shared_with_static_runtimes='no'
622export_dynamic_flag_spec='${wl}--export-dynamic'
623whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
624compiler_needs_object='no'
625old_archive_from_new_cmds=''
626old_archive_from_expsyms_cmds=''
627archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
628archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
629	    cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
630	    echo "local: *; };" >> $output_objdir/$libname.ver~
631	    $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
632module_cmds=''
633module_expsym_cmds=''
634with_gnu_ld='yes'
635allow_undefined_flag=''
636no_undefined_flag=''
637hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
638hardcode_libdir_flag_spec_ld=''
639hardcode_libdir_separator=''
640hardcode_direct='no'
641hardcode_direct_absolute='no'
642hardcode_minus_L='no'
643hardcode_shlibpath_var='unsupported'
644hardcode_automatic='no'
645inherit_rpath='no'
646link_all_deplibs='unknown'
647fix_srcfile_path=''
648always_export_symbols='no'
649export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
650exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
651include_expsyms=''
652prelink_cmds=''
653file_list_spec=''
654variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
655need_lib_prefix='no'
656need_version='no'
657version_type='linux'
658runpath_var='LD_RUN_PATH'
659shlibpath_var='LD_LIBRARY_PATH'
660shlibpath_overrides_runpath='no'
661libname_spec='lib$name'
662library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
663soname_spec='${libname}${release}${shared_ext}$major'
664postinstall_cmds=''
665postuninstall_cmds=''
666finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
667finish_eval=''
668hardcode_into_libs='yes'
669sys_lib_search_path_spec='/usr/lib/gcc/i686-redhat-linux/4.4.4 /usr/lib /lib'
670sys_lib_dlsearch_path_spec='/lib /usr/lib /usr/lib/mysql /usr/lib/qt-3.3/lib /usr/lib/xulrunner-1.9.2 '
671hardcode_action='immediate'
672enable_dlopen='unknown'
673enable_dlopen_self='unknown'
674enable_dlopen_self_static='unknown'
675old_striplib='strip --strip-debug'
676striplib='strip --strip-unneeded'
677compiler_lib_search_dirs=''
678predep_objects=''
679postdep_objects=''
680predeps=''
681postdeps=''
682compiler_lib_search_path=''
683LD_CXX='/usr/bin/ld'
684old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $oldlib'
685compiler_CXX='g++'
686GCC_CXX='yes'
687lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
688lt_prog_compiler_wl_CXX='-Wl,'
689lt_prog_compiler_pic_CXX=' -fPIC -DPIC'
690lt_prog_compiler_static_CXX=''
691lt_cv_prog_compiler_c_o_CXX='yes'
692archive_cmds_need_lc_CXX='no'
693enable_shared_with_static_runtimes_CXX='no'
694export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
695whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
696compiler_needs_object_CXX='no'
697old_archive_from_new_cmds_CXX=''
698old_archive_from_expsyms_cmds_CXX=''
699archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
700archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
701module_cmds_CXX=''
702module_expsym_cmds_CXX=''
703with_gnu_ld_CXX='yes'
704allow_undefined_flag_CXX=''
705no_undefined_flag_CXX=''
706hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
707hardcode_libdir_flag_spec_ld_CXX=''
708hardcode_libdir_separator_CXX=''
709hardcode_direct_CXX='no'
710hardcode_direct_absolute_CXX='no'
711hardcode_minus_L_CXX='no'
712hardcode_shlibpath_var_CXX='unsupported'
713hardcode_automatic_CXX='no'
714inherit_rpath_CXX='no'
715link_all_deplibs_CXX='unknown'
716fix_srcfile_path_CXX=''
717always_export_symbols_CXX='no'
718export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
719exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
720include_expsyms_CXX=''
721prelink_cmds_CXX=''
722file_list_spec_CXX=''
723hardcode_action_CXX='immediate'
724compiler_lib_search_dirs_CXX='/usr/lib/gcc/i686-redhat-linux/4.4.4 /usr/lib/gcc/i686-redhat-linux/4.4.4 /usr/lib/gcc/i686-redhat-linux/4.4.4/../../..'
725predep_objects_CXX='/usr/lib/gcc/i686-redhat-linux/4.4.4/../../../crti.o /usr/lib/gcc/i686-redhat-linux/4.4.4/crtbeginS.o'
726postdep_objects_CXX='/usr/lib/gcc/i686-redhat-linux/4.4.4/crtendS.o /usr/lib/gcc/i686-redhat-linux/4.4.4/../../../crtn.o'
727predeps_CXX=''
728postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s'
729compiler_lib_search_path_CXX='-L/usr/lib/gcc/i686-redhat-linux/4.4.4 -L/usr/lib/gcc/i686-redhat-linux/4.4.4 -L/usr/lib/gcc/i686-redhat-linux/4.4.4/../../..'
730
731LTCC='gcc'
732LTCFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables'
733compiler='gcc'
734
735# Quote evaled strings.
736for var in SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag deplibs_check_method file_magic_cmd AR AR_FLAGS STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix SHELL ECHO lt_prog_compiler_no_builtin_flag lt_prog_compiler_wl lt_prog_compiler_pic lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_flag_spec_ld hardcode_libdir_separator fix_srcfile_path exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX compiler_CXX lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_wl_CXX lt_prog_compiler_pic_CXX lt_prog_compiler_static_CXX lt_cv_prog_compiler_c_o_CXX export_dynamic_flag_spec_CXX whole_archive_flag_spec_CXX compiler_needs_object_CXX with_gnu_ld_CXX allow_undefined_flag_CXX no_undefined_flag_CXX hardcode_libdir_flag_spec_CXX hardcode_libdir_flag_spec_ld_CXX hardcode_libdir_separator_CXX fix_srcfile_path_CXX exclude_expsyms_CXX include_expsyms_CXX file_list_spec_CXX compiler_lib_search_dirs_CXX predep_objects_CXX postdep_objects_CXX predeps_CXX postdeps_CXX compiler_lib_search_path_CXX; do
737    case `eval \\$ECHO "X\\$$var"` in
738    *[\\\`\"\$]*)
739      eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
740      ;;
741    *)
742      eval "lt_$var=\\\"\$$var\\\""
743      ;;
744    esac
745done
746
747# Double-quote double-evaled strings.
748for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec old_archive_cmds_CXX old_archive_from_new_cmds_CXX old_archive_from_expsyms_cmds_CXX archive_cmds_CXX archive_expsym_cmds_CXX module_cmds_CXX module_expsym_cmds_CXX export_symbols_cmds_CXX prelink_cmds_CXX; do
749    case `eval \\$ECHO "X\\$$var"` in
750    *[\\\`\"\$]*)
751      eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
752      ;;
753    *)
754      eval "lt_$var=\\\"\$$var\\\""
755      ;;
756    esac
757done
758
759# Fix-up fallback echo if it was mangled by the above quoting rules.
760case $lt_ECHO in
761*'\$0 --fallback-echo"')  lt_ECHO=`$ECHO "X$lt_ECHO" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
762  ;;
763esac
764
765ac_aux_dir='.'
766xsi_shell='yes'
767lt_shell_append='yes'
768
769# See if we are running on zsh, and set the options which allow our
770# commands through without removal of \ escapes INIT.
771if test -n "${ZSH_VERSION+set}" ; then
772   setopt NO_GLOB_SUBST
773fi
774
775
776    PACKAGE='ibus-kmfl'
777    VERSION='1.0.2'
778    TIMESTAMP=''
779    RM='rm -f'
780    ofile='libtool'
781
782
783
784
785
786# Capture the value of obsolete ALL_LINGUAS because we need it to compute
787    # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it
788    # from automake < 1.5.
789    eval 'OBSOLETE_ALL_LINGUAS''=""'
790    # Capture the value of LINGUAS because we need it to compute CATALOGS.
791    LINGUAS="%UNSET%"
792
793
794
795# Handling of arguments.
796for ac_config_target in $ac_config_targets
797do
798  case $ac_config_target in
799    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
800    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
801    "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
802    "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;;
803    "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
804    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
805    "ibus-kmfl.spec") CONFIG_FILES="$CONFIG_FILES ibus-kmfl.spec" ;;
806    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
807    "src/kmfl.xml.in") CONFIG_FILES="$CONFIG_FILES src/kmfl.xml.in" ;;
808    "icons/Makefile") CONFIG_FILES="$CONFIG_FILES icons/Makefile" ;;
809    "m4/Makefile") CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;;
810
811  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
812  esac
813done
814
815
816# If the user did not use the arguments to specify the items to instantiate,
817# then the envvar interface is used.  Set only those that are not.
818# We use the long form for the default assignment because of an extremely
819# bizarre bug on SunOS 4.1.3.
820if $ac_need_defaults; then
821  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
822  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
823  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
824fi
825
826# Have a temporary directory for convenience.  Make it in the build tree
827# simply because there is no reason against having it here, and in addition,
828# creating and moving files from /tmp can sometimes cause problems.
829# Hook for its removal unless debugging.
830# Note that there is a small window in which the directory will not be cleaned:
831# after its creation but before its name has been assigned to `$tmp'.
832$debug ||
833{
834  tmp=
835  trap 'exit_status=$?
836  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
837' 0
838  trap 'as_fn_exit 1' 1 2 13 15
839}
840# Create a (secure) tmp directory for tmp files.
841
842{
843  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
844  test -n "$tmp" && test -d "$tmp"
845}  ||
846{
847  tmp=./conf$$-$RANDOM
848  (umask 077 && mkdir "$tmp")
849} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
850
851# Set up the scripts for CONFIG_FILES section.
852# No need to generate them if there are no CONFIG_FILES.
853# This happens for instance with `./config.status config.h'.
854if test -n "$CONFIG_FILES"; then
855
856
857ac_cr=`echo X | tr X '\015'`
858# On cygwin, bash can eat \r inside `` if the user requested igncr.
859# But we know of no other shell where ac_cr would be empty at this
860# point, so we can use a bashism as a fallback.
861if test "x$ac_cr" = x; then
862  eval ac_cr=\$\'\\r\'
863fi
864ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
865if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
866  ac_cs_awk_cr='\r'
867else
868  ac_cs_awk_cr=$ac_cr
869fi
870
871echo 'BEGIN {' >"$tmp/subs1.awk" &&
872cat >>"$tmp/subs1.awk" <<\_ACAWK &&
873S["am__EXEEXT_FALSE"]=""
874S["am__EXEEXT_TRUE"]="#"
875S["LTLIBOBJS"]=""
876S["LIBOBJS"]=""
877S["POSUB"]="po"
878S["LTLIBINTL"]=""
879S["LIBINTL"]=""
880S["INTLLIBS"]=""
881S["LTLIBICONV"]="-liconv"
882S["LIBICONV"]="-liconv"
883S["INTL_MACOSX_LIBS"]=""
884S["MSGMERGE"]="/usr/bin/msgmerge"
885S["XGETTEXT_015"]="/usr/bin/xgettext"
886S["XGETTEXT"]="/usr/bin/xgettext"
887S["GMSGFMT_015"]="/usr/bin/msgfmt"
888S["MSGFMT_015"]="/usr/bin/msgfmt"
889S["GMSGFMT"]="/usr/bin/msgfmt"
890S["MSGFMT"]="/usr/bin/msgfmt"
891S["USE_NLS"]="yes"
892S["GETTEXT_PACKAGE"]="ibus-kmfl"
893S["ENV"]="/usr/bin/env"
894S["IBUS_LIBS"]="-pthread -libus -lgobject-2.0 -lgthread-2.0 -lrt -lglib-2.0  "
895S["IBUS_CFLAGS"]="-pthread -I/usr/include/ibus-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  "
896S["PKG_CONFIG"]="/usr/bin/pkg-config"
897S["CXXCPP"]="g++ -E"
898S["OTOOL64"]=""
899S["OTOOL"]=""
900S["LIPO"]=""
901S["NMEDIT"]=""
902S["DSYMUTIL"]=""
903S["lt_ECHO"]="echo"
904S["RANLIB"]="ranlib"
905S["AR"]="ar"
906S["LN_S"]="ln -s"
907S["NM"]="/usr/bin/nm -B"
908S["ac_ct_DUMPBIN"]=""
909S["DUMPBIN"]=""
910S["LD"]="/usr/bin/ld"
911S["FGREP"]="/bin/grep -F"
912S["SED"]="/bin/sed"
913S["host_os"]="linux-gnu"
914S["host_vendor"]="pc"
915S["host_cpu"]="i686"
916S["host"]="i686-pc-linux-gnu"
917S["build_os"]="linux-gnu"
918S["build_vendor"]="pc"
919S["build_cpu"]="i686"
920S["build"]="i686-pc-linux-gnu"
921S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
922S["am__fastdepCXX_FALSE"]=""
923S["am__fastdepCXX_TRUE"]="#"
924S["CXXDEPMODE"]="depmode=none"
925S["ac_ct_CXX"]="g++"
926S["CXXFLAGS"]="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwi"\
927"nd-tables"
928S["CXX"]="g++"
929S["MAINT"]="#"
930S["MAINTAINER_MODE_FALSE"]=""
931S["MAINTAINER_MODE_TRUE"]="#"
932S["PACKAGE_VERSION_RELEASE"]="1"
933S["PACKAGE_VERSION_NANO"]="0"
934S["PACKAGE_VERSION_MICRO"]="2"
935S["PACKAGE_VERSION_MINOR"]="0"
936S["PACKAGE_VERSION_MAJOR"]="1"
937S["EGREP"]="/bin/grep -E"
938S["GREP"]="/bin/grep"
939S["CPP"]="gcc -E"
940S["am__fastdepCC_FALSE"]=""
941S["am__fastdepCC_TRUE"]="#"
942S["CCDEPMODE"]="depmode=none"
943S["AMDEPBACKSLASH"]=""
944S["AMDEP_FALSE"]=""
945S["AMDEP_TRUE"]="#"
946S["am__quote"]=""
947S["am__include"]="include"
948S["DEPDIR"]=".deps"
949S["OBJEXT"]="o"
950S["EXEEXT"]=""
951S["ac_ct_CC"]="gcc"
952S["CPPFLAGS"]=""
953S["LDFLAGS"]=""
954S["CFLAGS"]="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwi"\
955"nd-tables"
956S["CC"]="gcc"
957S["am__untar"]="${AMTAR} xf -"
958S["am__tar"]="${AMTAR} chof - \"$$tardir\""
959S["AMTAR"]="${SHELL} /home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2/missing --run tar"
960S["am__leading_dot"]="."
961S["SET_MAKE"]=""
962S["AWK"]="gawk"
963S["mkdir_p"]="/bin/mkdir -p"
964S["MKDIR_P"]="/bin/mkdir -p"
965S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
966S["STRIP"]="strip"
967S["install_sh"]="${SHELL} /home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2/install-sh"
968S["MAKEINFO"]="${SHELL} /home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2/missing --run makeinfo"
969S["AUTOHEADER"]="${SHELL} /home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2/missing --run autoheader"
970S["AUTOMAKE"]="${SHELL} /home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2/missing --run automake-1.11"
971S["AUTOCONF"]="${SHELL} /home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2/missing --run autoconf"
972S["ACLOCAL"]="${SHELL} /home/doug/rpmbuild/BUILD/ibus-kmfl-1.0.2/missing --run aclocal-1.11"
973S["VERSION"]="1.0.2"
974S["PACKAGE"]="ibus-kmfl"
975S["CYGPATH_W"]="echo"
976S["am__isrc"]=""
977S["INSTALL_DATA"]="${INSTALL} -m 644"
978S["INSTALL_SCRIPT"]="${INSTALL}"
979S["INSTALL_PROGRAM"]="${INSTALL}"
980S["target_alias"]=""
981S["host_alias"]="i686-pc-linux-gnu"
982S["build_alias"]="i686-pc-linux-gnu"
983S["LIBS"]=""
984S["ECHO_T"]=""
985S["ECHO_N"]="-n"
986S["ECHO_C"]=""
987S["DEFS"]="-DHAVE_CONFIG_H"
988S["mandir"]="/usr/share/man"
989S["localedir"]="${datarootdir}/locale"
990S["libdir"]="/usr/lib"
991S["psdir"]="${docdir}"
992S["pdfdir"]="${docdir}"
993S["dvidir"]="${docdir}"
994S["htmldir"]="${docdir}"
995S["infodir"]="/usr/share/info"
996S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
997S["oldincludedir"]="/usr/include"
998S["includedir"]="/usr/include"
999S["localstatedir"]="/var"
1000S["sharedstatedir"]="/var/lib"
1001S["sysconfdir"]="/etc"
1002S["datadir"]="/usr/share"
1003S["datarootdir"]="${prefix}/share"
1004S["libexecdir"]="/usr/libexec"
1005S["sbindir"]="/usr/sbin"
1006S["bindir"]="/usr/bin"
1007S["program_transform_name"]="s&^&&"
1008S["prefix"]="/usr"
1009S["exec_prefix"]="/usr"
1010S["PACKAGE_URL"]=""
1011S["PACKAGE_BUGREPORT"]="http://code.google.com/p/ibus/issues/entry"
1012S["PACKAGE_STRING"]="ibus-kmfl 1.0.2"
1013S["PACKAGE_VERSION"]="1.0.2"
1014S["PACKAGE_TARNAME"]="ibus-kmfl"
1015S["PACKAGE_NAME"]="ibus-kmfl"
1016S["PATH_SEPARATOR"]=":"
1017S["SHELL"]="/bin/sh"
1018_ACAWK
1019cat >>"$tmp/subs1.awk" <<_ACAWK &&
1020  for (key in S) S_is_set[key] = 1
1021  FS = ""
1022
1023}
1024{
1025  line = $ 0
1026  nfields = split(line, field, "@")
1027  substed = 0
1028  len = length(field[1])
1029  for (i = 2; i < nfields; i++) {
1030    key = field[i]
1031    keylen = length(key)
1032    if (S_is_set[key]) {
1033      value = S[key]
1034      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
1035      len += length(value) + length(field[++i])
1036      substed = 1
1037    } else
1038      len += 1 + keylen
1039  }
1040
1041  print line
1042}
1043
1044_ACAWK
1045if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
1046  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
1047else
1048  cat
1049fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
1050  || as_fn_error "could not setup config files machinery" "$LINENO" 5
1051fi # test -n "$CONFIG_FILES"
1052
1053# Set up the scripts for CONFIG_HEADERS section.
1054# No need to generate them if there are no CONFIG_HEADERS.
1055# This happens for instance with `./config.status Makefile'.
1056if test -n "$CONFIG_HEADERS"; then
1057cat >"$tmp/defines.awk" <<\_ACAWK ||
1058BEGIN {
1059D["PACKAGE_NAME"]=" \"ibus-kmfl\""
1060D["PACKAGE_TARNAME"]=" \"ibus-kmfl\""
1061D["PACKAGE_VERSION"]=" \"1.0.2\""
1062D["PACKAGE_STRING"]=" \"ibus-kmfl 1.0.2\""
1063D["PACKAGE_BUGREPORT"]=" \"http://code.google.com/p/ibus/issues/entry\""
1064D["PACKAGE_URL"]=" \"\""
1065D["PACKAGE"]=" \"ibus-kmfl\""
1066D["VERSION"]=" \"1.0.2\""
1067D["STDC_HEADERS"]=" 1"
1068D["HAVE_SYS_TYPES_H"]=" 1"
1069D["HAVE_SYS_STAT_H"]=" 1"
1070D["HAVE_STDLIB_H"]=" 1"
1071D["HAVE_STRING_H"]=" 1"
1072D["HAVE_MEMORY_H"]=" 1"
1073D["HAVE_STRINGS_H"]=" 1"
1074D["HAVE_INTTYPES_H"]=" 1"
1075D["HAVE_STDINT_H"]=" 1"
1076D["HAVE_UNISTD_H"]=" 1"
1077D["__EXTENSIONS__"]=" 1"
1078D["_ALL_SOURCE"]=" 1"
1079D["_GNU_SOURCE"]=" 1"
1080D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
1081D["_TANDEM_SOURCE"]=" 1"
1082D["STDC_HEADERS"]=" 1"
1083D["HAVE_DLFCN_H"]=" 1"
1084D["LT_OBJDIR"]=" \".libs/\""
1085D["GETTEXT_PACKAGE"]=" \"ibus-kmfl\""
1086D["ENABLE_NLS"]=" 1"
1087D["HAVE_GETTEXT"]=" 1"
1088D["HAVE_DCGETTEXT"]=" 1"
1089  for (key in D) D_is_set[key] = 1
1090  FS = ""
1091}
1092/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
1093  line = $ 0
1094  split(line, arg, " ")
1095  if (arg[1] == "#") {
1096    defundef = arg[2]
1097    mac1 = arg[3]
1098  } else {
1099    defundef = substr(arg[1], 2)
1100    mac1 = arg[2]
1101  }
1102  split(mac1, mac2, "(") #)
1103  macro = mac2[1]
1104  prefix = substr(line, 1, index(line, defundef) - 1)
1105  if (D_is_set[macro]) {
1106    # Preserve the white space surrounding the "#".
1107    print prefix "define", macro P[macro] D[macro]
1108    next
1109  } else {
1110    # Replace #undef with comments.  This is necessary, for example,
1111    # in the case of _POSIX_SOURCE, which is predefined and required
1112    # on some systems where configure will not decide to define it.
1113    if (defundef == "undef") {
1114      print "/*", prefix defundef, macro, "*/"
1115      next
1116    }
1117  }
1118}
1119{ print }
1120_ACAWK
1121  as_fn_error "could not setup config headers machinery" "$LINENO" 5
1122fi # test -n "$CONFIG_HEADERS"
1123
1124
1125eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
1126shift
1127for ac_tag
1128do
1129  case $ac_tag in
1130  :[FHLC]) ac_mode=$ac_tag; continue;;
1131  esac
1132  case $ac_mode$ac_tag in
1133  :[FHL]*:*);;
1134  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
1135  :[FH]-) ac_tag=-:-;;
1136  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1137  esac
1138  ac_save_IFS=$IFS
1139  IFS=:
1140  set x $ac_tag
1141  IFS=$ac_save_IFS
1142  shift
1143  ac_file=$1
1144  shift
1145
1146  case $ac_mode in
1147  :L) ac_source=$1;;
1148  :[FH])
1149    ac_file_inputs=
1150    for ac_f
1151    do
1152      case $ac_f in
1153      -) ac_f="$tmp/stdin";;
1154      *) # Look for the file first in the build tree, then in the source tree
1155	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
1156	 # because $ac_f cannot contain `:'.
1157	 test -f "$ac_f" ||
1158	   case $ac_f in
1159	   [\\/$]*) false;;
1160	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1161	   esac ||
1162	   as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1163      esac
1164      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1165      as_fn_append ac_file_inputs " '$ac_f'"
1166    done
1167
1168    # Let's still pretend it is `configure' which instantiates (i.e., don't
1169    # use $as_me), people would be surprised to read:
1170    #    /* config.h.  Generated by config.status.  */
1171    configure_input='Generated from '`
1172	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1173	`' by configure.'
1174    if test x"$ac_file" != x-; then
1175      configure_input="$ac_file.  $configure_input"
1176      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1177$as_echo "$as_me: creating $ac_file" >&6;}
1178    fi
1179    # Neutralize special characters interpreted by sed in replacement strings.
1180    case $configure_input in #(
1181    *\&* | *\|* | *\\* )
1182       ac_sed_conf_input=`$as_echo "$configure_input" |
1183       sed 's/[\\\\&|]/\\\\&/g'`;; #(
1184    *) ac_sed_conf_input=$configure_input;;
1185    esac
1186
1187    case $ac_tag in
1188    *:-:* | *:-) cat >"$tmp/stdin" \
1189      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
1190    esac
1191    ;;
1192  esac
1193
1194  ac_dir=`$as_dirname -- "$ac_file" ||
1195$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1196	 X"$ac_file" : 'X\(//\)[^/]' \| \
1197	 X"$ac_file" : 'X\(//\)$' \| \
1198	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1199$as_echo X"$ac_file" |
1200    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1201	    s//\1/
1202	    q
1203	  }
1204	  /^X\(\/\/\)[^/].*/{
1205	    s//\1/
1206	    q
1207	  }
1208	  /^X\(\/\/\)$/{
1209	    s//\1/
1210	    q
1211	  }
1212	  /^X\(\/\).*/{
1213	    s//\1/
1214	    q
1215	  }
1216	  s/.*/./; q'`
1217  as_dir="$ac_dir"; as_fn_mkdir_p
1218  ac_builddir=.
1219
1220case "$ac_dir" in
1221.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1222*)
1223  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1224  # A ".." for each directory in $ac_dir_suffix.
1225  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1226  case $ac_top_builddir_sub in
1227  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1228  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1229  esac ;;
1230esac
1231ac_abs_top_builddir=$ac_pwd
1232ac_abs_builddir=$ac_pwd$ac_dir_suffix
1233# for backward compatibility:
1234ac_top_builddir=$ac_top_build_prefix
1235
1236case $srcdir in
1237  .)  # We are building in place.
1238    ac_srcdir=.
1239    ac_top_srcdir=$ac_top_builddir_sub
1240    ac_abs_top_srcdir=$ac_pwd ;;
1241  [\\/]* | ?:[\\/]* )  # Absolute name.
1242    ac_srcdir=$srcdir$ac_dir_suffix;
1243    ac_top_srcdir=$srcdir
1244    ac_abs_top_srcdir=$srcdir ;;
1245  *) # Relative name.
1246    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1247    ac_top_srcdir=$ac_top_build_prefix$srcdir
1248    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1249esac
1250ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1251
1252
1253  case $ac_mode in
1254  :F)
1255  #
1256  # CONFIG_FILE
1257  #
1258
1259  case $INSTALL in
1260  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1261  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1262  esac
1263  ac_MKDIR_P=$MKDIR_P
1264  case $MKDIR_P in
1265  [\\/$]* | ?:[\\/]* ) ;;
1266  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
1267  esac
1268# If the template does not know about datarootdir, expand it.
1269# FIXME: This hack should be removed a few years after 2.60.
1270ac_datarootdir_hack=; ac_datarootdir_seen=
1271ac_sed_dataroot='
1272/datarootdir/ {
1273  p
1274  q
1275}
1276/@datadir@/p
1277/@docdir@/p
1278/@infodir@/p
1279/@localedir@/p
1280/@mandir@/p'
1281case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1282*datarootdir*) ac_datarootdir_seen=yes;;
1283*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1284  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1285$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1286  ac_datarootdir_hack='
1287  s&@datadir@&/usr/share&g
1288  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1289  s&@infodir@&/usr/share/info&g
1290  s&@localedir@&${datarootdir}/locale&g
1291  s&@mandir@&/usr/share/man&g
1292  s&\${datarootdir}&${prefix}/share&g' ;;
1293esac
1294ac_sed_extra="/^[	 ]*VPATH[	 ]*=/{
1295s/:*\$(srcdir):*/:/
1296s/:*\${srcdir}:*/:/
1297s/:*@srcdir@:*/:/
1298s/^\([^=]*=[	 ]*\):*/\1/
1299s/:*$//
1300s/^[^=]*=[	 ]*$//
1301}
1302
1303:t
1304/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1305s|@configure_input@|$ac_sed_conf_input|;t t
1306s&@top_builddir@&$ac_top_builddir_sub&;t t
1307s&@top_build_prefix@&$ac_top_build_prefix&;t t
1308s&@srcdir@&$ac_srcdir&;t t
1309s&@abs_srcdir@&$ac_abs_srcdir&;t t
1310s&@top_srcdir@&$ac_top_srcdir&;t t
1311s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1312s&@builddir@&$ac_builddir&;t t
1313s&@abs_builddir@&$ac_abs_builddir&;t t
1314s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1315s&@INSTALL@&$ac_INSTALL&;t t
1316s&@MKDIR_P@&$ac_MKDIR_P&;t t
1317$ac_datarootdir_hack
1318"
1319eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
1320  || as_fn_error "could not create $ac_file" "$LINENO" 5
1321
1322test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1323  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
1324  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
1325  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1326which seems to be undefined.  Please make sure it is defined." >&5
1327$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1328which seems to be undefined.  Please make sure it is defined." >&2;}
1329
1330  rm -f "$tmp/stdin"
1331  case $ac_file in
1332  -) cat "$tmp/out" && rm -f "$tmp/out";;
1333  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
1334  esac \
1335  || as_fn_error "could not create $ac_file" "$LINENO" 5
1336 ;;
1337  :H)
1338  #
1339  # CONFIG_HEADER
1340  #
1341  if test x"$ac_file" != x-; then
1342    {
1343      $as_echo "/* $configure_input  */" \
1344      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
1345    } >"$tmp/config.h" \
1346      || as_fn_error "could not create $ac_file" "$LINENO" 5
1347    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
1348      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1349$as_echo "$as_me: $ac_file is unchanged" >&6;}
1350    else
1351      rm -f "$ac_file"
1352      mv "$tmp/config.h" "$ac_file" \
1353	|| as_fn_error "could not create $ac_file" "$LINENO" 5
1354    fi
1355  else
1356    $as_echo "/* $configure_input  */" \
1357      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
1358      || as_fn_error "could not create -" "$LINENO" 5
1359  fi
1360# Compute "$ac_file"'s index in $config_headers.
1361_am_arg="$ac_file"
1362_am_stamp_count=1
1363for _am_header in $config_headers :; do
1364  case $_am_header in
1365    $_am_arg | $_am_arg:* )
1366      break ;;
1367    * )
1368      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1369  esac
1370done
1371echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
1372$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1373	 X"$_am_arg" : 'X\(//\)[^/]' \| \
1374	 X"$_am_arg" : 'X\(//\)$' \| \
1375	 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1376$as_echo X"$_am_arg" |
1377    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1378	    s//\1/
1379	    q
1380	  }
1381	  /^X\(\/\/\)[^/].*/{
1382	    s//\1/
1383	    q
1384	  }
1385	  /^X\(\/\/\)$/{
1386	    s//\1/
1387	    q
1388	  }
1389	  /^X\(\/\).*/{
1390	    s//\1/
1391	    q
1392	  }
1393	  s/.*/./; q'`/stamp-h$_am_stamp_count
1394 ;;
1395
1396  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1397$as_echo "$as_me: executing $ac_file commands" >&6;}
1398 ;;
1399  esac
1400
1401
1402  case $ac_file$ac_mode in
1403    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
1404  # Autoconf 2.62 quotes --file arguments for eval, but not when files
1405  # are listed without --file.  Let's play safe and only enable the eval
1406  # if we detect the quoting.
1407  case $CONFIG_FILES in
1408  *\'*) eval set x "$CONFIG_FILES" ;;
1409  *)   set x $CONFIG_FILES ;;
1410  esac
1411  shift
1412  for mf
1413  do
1414    # Strip MF so we end up with the name of the file.
1415    mf=`echo "$mf" | sed -e 's/:.*$//'`
1416    # Check whether this is an Automake generated Makefile or not.
1417    # We used to match only the files named `Makefile.in', but
1418    # some people rename them; so instead we look at the file content.
1419    # Grep'ing the first line is not enough: some people post-process
1420    # each Makefile.in and add a new line on top of each file to say so.
1421    # Grep'ing the whole file is not good either: AIX grep has a line
1422    # limit of 2048, but all sed's we know have understand at least 4000.
1423    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1424      dirpart=`$as_dirname -- "$mf" ||
1425$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1426	 X"$mf" : 'X\(//\)[^/]' \| \
1427	 X"$mf" : 'X\(//\)$' \| \
1428	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1429$as_echo X"$mf" |
1430    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1431	    s//\1/
1432	    q
1433	  }
1434	  /^X\(\/\/\)[^/].*/{
1435	    s//\1/
1436	    q
1437	  }
1438	  /^X\(\/\/\)$/{
1439	    s//\1/
1440	    q
1441	  }
1442	  /^X\(\/\).*/{
1443	    s//\1/
1444	    q
1445	  }
1446	  s/.*/./; q'`
1447    else
1448      continue
1449    fi
1450    # Extract the definition of DEPDIR, am__include, and am__quote
1451    # from the Makefile without running `make'.
1452    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1453    test -z "$DEPDIR" && continue
1454    am__include=`sed -n 's/^am__include = //p' < "$mf"`
1455    test -z "am__include" && continue
1456    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1457    # When using ansi2knr, U may be empty or an underscore; expand it
1458    U=`sed -n 's/^U = //p' < "$mf"`
1459    # Find all dependency output files, they are included files with
1460    # $(DEPDIR) in their names.  We invoke sed twice because it is the
1461    # simplest approach to changing $(DEPDIR) to its actual value in the
1462    # expansion.
1463    for file in `sed -n "
1464      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1465	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
1466      # Make sure the directory exists.
1467      test -f "$dirpart/$file" && continue
1468      fdir=`$as_dirname -- "$file" ||
1469$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1470	 X"$file" : 'X\(//\)[^/]' \| \
1471	 X"$file" : 'X\(//\)$' \| \
1472	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1473$as_echo X"$file" |
1474    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1475	    s//\1/
1476	    q
1477	  }
1478	  /^X\(\/\/\)[^/].*/{
1479	    s//\1/
1480	    q
1481	  }
1482	  /^X\(\/\/\)$/{
1483	    s//\1/
1484	    q
1485	  }
1486	  /^X\(\/\).*/{
1487	    s//\1/
1488	    q
1489	  }
1490	  s/.*/./; q'`
1491      as_dir=$dirpart/$fdir; as_fn_mkdir_p
1492      # echo "creating $dirpart/$file"
1493      echo '# dummy' > "$dirpart/$file"
1494    done
1495  done
1496}
1497 ;;
1498    "libtool":C)
1499
1500    # See if we are running on zsh, and set the options which allow our
1501    # commands through without removal of \ escapes.
1502    if test -n "${ZSH_VERSION+set}" ; then
1503      setopt NO_GLOB_SUBST
1504    fi
1505
1506    cfgfile="${ofile}T"
1507    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
1508    $RM "$cfgfile"
1509
1510    cat <<_LT_EOF >> "$cfgfile"
1511#! $SHELL
1512
1513# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
1514# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
1515# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1516# NOTE: Changes made to this file will be lost: look at ltmain.sh.
1517#
1518#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
1519#                 2006, 2007, 2008 Free Software Foundation, Inc.
1520#   Written by Gordon Matzigkeit, 1996
1521#
1522#   This file is part of GNU Libtool.
1523#
1524# GNU Libtool is free software; you can redistribute it and/or
1525# modify it under the terms of the GNU General Public License as
1526# published by the Free Software Foundation; either version 2 of
1527# the License, or (at your option) any later version.
1528#
1529# As a special exception to the GNU General Public License,
1530# if you distribute this file as part of a program or library that
1531# is built using GNU Libtool, you may include this file under the
1532# same distribution terms that you use for the rest of that program.
1533#
1534# GNU Libtool is distributed in the hope that it will be useful,
1535# but WITHOUT ANY WARRANTY; without even the implied warranty of
1536# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1537# GNU General Public License for more details.
1538#
1539# You should have received a copy of the GNU General Public License
1540# along with GNU Libtool; see the file COPYING.  If not, a copy
1541# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
1542# obtained by writing to the Free Software Foundation, Inc.,
1543# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1544
1545
1546# The names of the tagged configurations supported by this script.
1547available_tags="CXX "
1548
1549# ### BEGIN LIBTOOL CONFIG
1550
1551# Whether or not to build static libraries.
1552build_old_libs=$enable_static
1553
1554# Which release of libtool.m4 was used?
1555macro_version=$macro_version
1556macro_revision=$macro_revision
1557
1558# Whether or not to build shared libraries.
1559build_libtool_libs=$enable_shared
1560
1561# What type of objects to build.
1562pic_mode=$pic_mode
1563
1564# Whether or not to optimize for fast installation.
1565fast_install=$enable_fast_install
1566
1567# The host system.
1568host_alias=$host_alias
1569host=$host
1570host_os=$host_os
1571
1572# The build system.
1573build_alias=$build_alias
1574build=$build
1575build_os=$build_os
1576
1577# A sed program that does not truncate output.
1578SED=$lt_SED
1579
1580# Sed that helps us avoid accidentally triggering echo(1) options like -n.
1581Xsed="\$SED -e 1s/^X//"
1582
1583# A grep program that handles long lines.
1584GREP=$lt_GREP
1585
1586# An ERE matcher.
1587EGREP=$lt_EGREP
1588
1589# A literal string matcher.
1590FGREP=$lt_FGREP
1591
1592# A BSD- or MS-compatible name lister.
1593NM=$lt_NM
1594
1595# Whether we need soft or hard links.
1596LN_S=$lt_LN_S
1597
1598# What is the maximum length of a command?
1599max_cmd_len=$max_cmd_len
1600
1601# Object file suffix (normally "o").
1602objext=$ac_objext
1603
1604# Executable file suffix (normally "").
1605exeext=$exeext
1606
1607# whether the shell understands "unset".
1608lt_unset=$lt_unset
1609
1610# turn spaces into newlines.
1611SP2NL=$lt_lt_SP2NL
1612
1613# turn newlines into spaces.
1614NL2SP=$lt_lt_NL2SP
1615
1616# How to create reloadable object files.
1617reload_flag=$lt_reload_flag
1618reload_cmds=$lt_reload_cmds
1619
1620# Method to check whether dependent libraries are shared objects.
1621deplibs_check_method=$lt_deplibs_check_method
1622
1623# Command to use when deplibs_check_method == "file_magic".
1624file_magic_cmd=$lt_file_magic_cmd
1625
1626# The archiver.
1627AR=$lt_AR
1628AR_FLAGS=$lt_AR_FLAGS
1629
1630# A symbol stripping program.
1631STRIP=$lt_STRIP
1632
1633# Commands used to install an old-style archive.
1634RANLIB=$lt_RANLIB
1635old_postinstall_cmds=$lt_old_postinstall_cmds
1636old_postuninstall_cmds=$lt_old_postuninstall_cmds
1637
1638# A C compiler.
1639LTCC=$lt_CC
1640
1641# LTCC compiler flags.
1642LTCFLAGS=$lt_CFLAGS
1643
1644# Take the output of nm and produce a listing of raw symbols and C names.
1645global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
1646
1647# Transform the output of nm in a proper C declaration.
1648global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
1649
1650# Transform the output of nm in a C name address pair.
1651global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
1652
1653# Transform the output of nm in a C name address pair when lib prefix is needed.
1654global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
1655
1656# The name of the directory that contains temporary libtool files.
1657objdir=$objdir
1658
1659# Shell to use when invoking shell scripts.
1660SHELL=$lt_SHELL
1661
1662# An echo program that does not interpret backslashes.
1663ECHO=$lt_ECHO
1664
1665# Used to examine libraries when file_magic_cmd begins with "file".
1666MAGIC_CMD=$MAGIC_CMD
1667
1668# Must we lock files when doing compilation?
1669need_locks=$lt_need_locks
1670
1671# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
1672DSYMUTIL=$lt_DSYMUTIL
1673
1674# Tool to change global to local symbols on Mac OS X.
1675NMEDIT=$lt_NMEDIT
1676
1677# Tool to manipulate fat objects and archives on Mac OS X.
1678LIPO=$lt_LIPO
1679
1680# ldd/readelf like tool for Mach-O binaries on Mac OS X.
1681OTOOL=$lt_OTOOL
1682
1683# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
1684OTOOL64=$lt_OTOOL64
1685
1686# Old archive suffix (normally "a").
1687libext=$libext
1688
1689# Shared library suffix (normally ".so").
1690shrext_cmds=$lt_shrext_cmds
1691
1692# The commands to extract the exported symbol list from a shared archive.
1693extract_expsyms_cmds=$lt_extract_expsyms_cmds
1694
1695# Variables whose values should be saved in libtool wrapper scripts and
1696# restored at link time.
1697variables_saved_for_relink=$lt_variables_saved_for_relink
1698
1699# Do we need the "lib" prefix for modules?
1700need_lib_prefix=$need_lib_prefix
1701
1702# Do we need a version for libraries?
1703need_version=$need_version
1704
1705# Library versioning type.
1706version_type=$version_type
1707
1708# Shared library runtime path variable.
1709runpath_var=$runpath_var
1710
1711# Shared library path variable.
1712shlibpath_var=$shlibpath_var
1713
1714# Is shlibpath searched before the hard-coded library search path?
1715shlibpath_overrides_runpath=$shlibpath_overrides_runpath
1716
1717# Format of library name prefix.
1718libname_spec=$lt_libname_spec
1719
1720# List of archive names.  First name is the real one, the rest are links.
1721# The last name is the one that the linker finds with -lNAME
1722library_names_spec=$lt_library_names_spec
1723
1724# The coded name of the library, if different from the real name.
1725soname_spec=$lt_soname_spec
1726
1727# Command to use after installation of a shared archive.
1728postinstall_cmds=$lt_postinstall_cmds
1729
1730# Command to use after uninstallation of a shared archive.
1731postuninstall_cmds=$lt_postuninstall_cmds
1732
1733# Commands used to finish a libtool library installation in a directory.
1734finish_cmds=$lt_finish_cmds
1735
1736# As "finish_cmds", except a single script fragment to be evaled but
1737# not shown.
1738finish_eval=$lt_finish_eval
1739
1740# Whether we should hardcode library paths into libraries.
1741hardcode_into_libs=$hardcode_into_libs
1742
1743# Compile-time system search path for libraries.
1744sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
1745
1746# Run-time system search path for libraries.
1747sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
1748
1749# Whether dlopen is supported.
1750dlopen_support=$enable_dlopen
1751
1752# Whether dlopen of programs is supported.
1753dlopen_self=$enable_dlopen_self
1754
1755# Whether dlopen of statically linked programs is supported.
1756dlopen_self_static=$enable_dlopen_self_static
1757
1758# Commands to strip libraries.
1759old_striplib=$lt_old_striplib
1760striplib=$lt_striplib
1761
1762
1763# The linker used to build libraries.
1764LD=$lt_LD
1765
1766# Commands used to build an old-style archive.
1767old_archive_cmds=$lt_old_archive_cmds
1768
1769# A language specific compiler.
1770CC=$lt_compiler
1771
1772# Is the compiler the GNU compiler?
1773with_gcc=$GCC
1774
1775# Compiler flag to turn off builtin functions.
1776no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
1777
1778# How to pass a linker flag through the compiler.
1779wl=$lt_lt_prog_compiler_wl
1780
1781# Additional compiler flags for building library objects.
1782pic_flag=$lt_lt_prog_compiler_pic
1783
1784# Compiler flag to prevent dynamic linking.
1785link_static_flag=$lt_lt_prog_compiler_static
1786
1787# Does compiler simultaneously support -c and -o options?
1788compiler_c_o=$lt_lt_cv_prog_compiler_c_o
1789
1790# Whether or not to add -lc for building shared libraries.
1791build_libtool_need_lc=$archive_cmds_need_lc
1792
1793# Whether or not to disallow shared libs when runtime libs are static.
1794allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
1795
1796# Compiler flag to allow reflexive dlopens.
1797export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
1798
1799# Compiler flag to generate shared objects directly from archives.
1800whole_archive_flag_spec=$lt_whole_archive_flag_spec
1801
1802# Whether the compiler copes with passing no objects directly.
1803compiler_needs_object=$lt_compiler_needs_object
1804
1805# Create an old-style archive from a shared archive.
1806old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
1807
1808# Create a temporary old-style archive to link instead of a shared archive.
1809old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
1810
1811# Commands used to build a shared archive.
1812archive_cmds=$lt_archive_cmds
1813archive_expsym_cmds=$lt_archive_expsym_cmds
1814
1815# Commands used to build a loadable module if different from building
1816# a shared archive.
1817module_cmds=$lt_module_cmds
1818module_expsym_cmds=$lt_module_expsym_cmds
1819
1820# Whether we are building with GNU ld or not.
1821with_gnu_ld=$lt_with_gnu_ld
1822
1823# Flag that allows shared libraries with undefined symbols to be built.
1824allow_undefined_flag=$lt_allow_undefined_flag
1825
1826# Flag that enforces no undefined symbols.
1827no_undefined_flag=$lt_no_undefined_flag
1828
1829# Flag to hardcode \$libdir into a binary during linking.
1830# This must work even if \$libdir does not exist
1831hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
1832
1833# If ld is used when linking, flag to hardcode \$libdir into a binary
1834# during linking.  This must work even if \$libdir does not exist.
1835hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
1836
1837# Whether we need a single "-rpath" flag with a separated argument.
1838hardcode_libdir_separator=$lt_hardcode_libdir_separator
1839
1840# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1841# DIR into the resulting binary.
1842hardcode_direct=$hardcode_direct
1843
1844# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
1845# DIR into the resulting binary and the resulting library dependency is
1846# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
1847# library is relocated.
1848hardcode_direct_absolute=$hardcode_direct_absolute
1849
1850# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
1851# into the resulting binary.
1852hardcode_minus_L=$hardcode_minus_L
1853
1854# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
1855# into the resulting binary.
1856hardcode_shlibpath_var=$hardcode_shlibpath_var
1857
1858# Set to "yes" if building a shared library automatically hardcodes DIR
1859# into the library and all subsequent libraries and executables linked
1860# against it.
1861hardcode_automatic=$hardcode_automatic
1862
1863# Set to yes if linker adds runtime paths of dependent libraries
1864# to runtime path list.
1865inherit_rpath=$inherit_rpath
1866
1867# Whether libtool must link a program against all its dependency libraries.
1868link_all_deplibs=$link_all_deplibs
1869
1870# Fix the shell variable \$srcfile for the compiler.
1871fix_srcfile_path=$lt_fix_srcfile_path
1872
1873# Set to "yes" if exported symbols are required.
1874always_export_symbols=$always_export_symbols
1875
1876# The commands to list exported symbols.
1877export_symbols_cmds=$lt_export_symbols_cmds
1878
1879# Symbols that should not be listed in the preloaded symbols.
1880exclude_expsyms=$lt_exclude_expsyms
1881
1882# Symbols that must always be exported.
1883include_expsyms=$lt_include_expsyms
1884
1885# Commands necessary for linking programs (against libraries) with templates.
1886prelink_cmds=$lt_prelink_cmds
1887
1888# Specify filename containing input files.
1889file_list_spec=$lt_file_list_spec
1890
1891# How to hardcode a shared library path into an executable.
1892hardcode_action=$hardcode_action
1893
1894# The directories searched by this compiler when creating a shared library.
1895compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
1896
1897# Dependencies to place before and after the objects being linked to
1898# create a shared library.
1899predep_objects=$lt_predep_objects
1900postdep_objects=$lt_postdep_objects
1901predeps=$lt_predeps
1902postdeps=$lt_postdeps
1903
1904# The library search path used internally by the compiler when linking
1905# a shared library.
1906compiler_lib_search_path=$lt_compiler_lib_search_path
1907
1908# ### END LIBTOOL CONFIG
1909
1910_LT_EOF
1911
1912  case $host_os in
1913  aix3*)
1914    cat <<\_LT_EOF >> "$cfgfile"
1915# AIX sometimes has problems with the GCC collect2 program.  For some
1916# reason, if we set the COLLECT_NAMES environment variable, the problems
1917# vanish in a puff of smoke.
1918if test "X${COLLECT_NAMES+set}" != Xset; then
1919  COLLECT_NAMES=
1920  export COLLECT_NAMES
1921fi
1922_LT_EOF
1923    ;;
1924  esac
1925
1926
1927ltmain="$ac_aux_dir/ltmain.sh"
1928
1929
1930  # We use sed instead of cat because bash on DJGPP gets confused if
1931  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
1932  # text mode, it properly converts lines to CR/LF.  This bash problem
1933  # is reportedly fixed, but why not run on old versions too?
1934  sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
1935    || (rm -f "$cfgfile"; exit 1)
1936
1937  case $xsi_shell in
1938  yes)
1939    cat << \_LT_EOF >> "$cfgfile"
1940
1941# func_dirname file append nondir_replacement
1942# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
1943# otherwise set result to NONDIR_REPLACEMENT.
1944func_dirname ()
1945{
1946  case ${1} in
1947    */*) func_dirname_result="${1%/*}${2}" ;;
1948    *  ) func_dirname_result="${3}" ;;
1949  esac
1950}
1951
1952# func_basename file
1953func_basename ()
1954{
1955  func_basename_result="${1##*/}"
1956}
1957
1958# func_dirname_and_basename file append nondir_replacement
1959# perform func_basename and func_dirname in a single function
1960# call:
1961#   dirname:  Compute the dirname of FILE.  If nonempty,
1962#             add APPEND to the result, otherwise set result
1963#             to NONDIR_REPLACEMENT.
1964#             value returned in "$func_dirname_result"
1965#   basename: Compute filename of FILE.
1966#             value retuned in "$func_basename_result"
1967# Implementation must be kept synchronized with func_dirname
1968# and func_basename. For efficiency, we do not delegate to
1969# those functions but instead duplicate the functionality here.
1970func_dirname_and_basename ()
1971{
1972  case ${1} in
1973    */*) func_dirname_result="${1%/*}${2}" ;;
1974    *  ) func_dirname_result="${3}" ;;
1975  esac
1976  func_basename_result="${1##*/}"
1977}
1978
1979# func_stripname prefix suffix name
1980# strip PREFIX and SUFFIX off of NAME.
1981# PREFIX and SUFFIX must not contain globbing or regex special
1982# characters, hashes, percent signs, but SUFFIX may contain a leading
1983# dot (in which case that matches only a dot).
1984func_stripname ()
1985{
1986  # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
1987  # positional parameters, so assign one to ordinary parameter first.
1988  func_stripname_result=${3}
1989  func_stripname_result=${func_stripname_result#"${1}"}
1990  func_stripname_result=${func_stripname_result%"${2}"}
1991}
1992
1993# func_opt_split
1994func_opt_split ()
1995{
1996  func_opt_split_opt=${1%%=*}
1997  func_opt_split_arg=${1#*=}
1998}
1999
2000# func_lo2o object
2001func_lo2o ()
2002{
2003  case ${1} in
2004    *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
2005    *)    func_lo2o_result=${1} ;;
2006  esac
2007}
2008
2009# func_xform libobj-or-source
2010func_xform ()
2011{
2012  func_xform_result=${1%.*}.lo
2013}
2014
2015# func_arith arithmetic-term...
2016func_arith ()
2017{
2018  func_arith_result=$(( $* ))
2019}
2020
2021# func_len string
2022# STRING may not start with a hyphen.
2023func_len ()
2024{
2025  func_len_result=${#1}
2026}
2027
2028_LT_EOF
2029    ;;
2030  *) # Bourne compatible functions.
2031    cat << \_LT_EOF >> "$cfgfile"
2032
2033# func_dirname file append nondir_replacement
2034# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
2035# otherwise set result to NONDIR_REPLACEMENT.
2036func_dirname ()
2037{
2038  # Extract subdirectory from the argument.
2039  func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
2040  if test "X$func_dirname_result" = "X${1}"; then
2041    func_dirname_result="${3}"
2042  else
2043    func_dirname_result="$func_dirname_result${2}"
2044  fi
2045}
2046
2047# func_basename file
2048func_basename ()
2049{
2050  func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
2051}
2052
2053
2054# func_stripname prefix suffix name
2055# strip PREFIX and SUFFIX off of NAME.
2056# PREFIX and SUFFIX must not contain globbing or regex special
2057# characters, hashes, percent signs, but SUFFIX may contain a leading
2058# dot (in which case that matches only a dot).
2059# func_strip_suffix prefix name
2060func_stripname ()
2061{
2062  case ${2} in
2063    .*) func_stripname_result=`$ECHO "X${3}" \
2064           | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
2065    *)  func_stripname_result=`$ECHO "X${3}" \
2066           | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
2067  esac
2068}
2069
2070# sed scripts:
2071my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
2072my_sed_long_arg='1s/^-[^=]*=//'
2073
2074# func_opt_split
2075func_opt_split ()
2076{
2077  func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
2078  func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
2079}
2080
2081# func_lo2o object
2082func_lo2o ()
2083{
2084  func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
2085}
2086
2087# func_xform libobj-or-source
2088func_xform ()
2089{
2090  func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'`
2091}
2092
2093# func_arith arithmetic-term...
2094func_arith ()
2095{
2096  func_arith_result=`expr "$@"`
2097}
2098
2099# func_len string
2100# STRING may not start with a hyphen.
2101func_len ()
2102{
2103  func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
2104}
2105
2106_LT_EOF
2107esac
2108
2109case $lt_shell_append in
2110  yes)
2111    cat << \_LT_EOF >> "$cfgfile"
2112
2113# func_append var value
2114# Append VALUE to the end of shell variable VAR.
2115func_append ()
2116{
2117  eval "$1+=\$2"
2118}
2119_LT_EOF
2120    ;;
2121  *)
2122    cat << \_LT_EOF >> "$cfgfile"
2123
2124# func_append var value
2125# Append VALUE to the end of shell variable VAR.
2126func_append ()
2127{
2128  eval "$1=\$$1\$2"
2129}
2130
2131_LT_EOF
2132    ;;
2133  esac
2134
2135
2136  sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
2137    || (rm -f "$cfgfile"; exit 1)
2138
2139  mv -f "$cfgfile" "$ofile" ||
2140    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
2141  chmod +x "$ofile"
2142
2143
2144    cat <<_LT_EOF >> "$ofile"
2145
2146# ### BEGIN LIBTOOL TAG CONFIG: CXX
2147
2148# The linker used to build libraries.
2149LD=$lt_LD_CXX
2150
2151# Commands used to build an old-style archive.
2152old_archive_cmds=$lt_old_archive_cmds_CXX
2153
2154# A language specific compiler.
2155CC=$lt_compiler_CXX
2156
2157# Is the compiler the GNU compiler?
2158with_gcc=$GCC_CXX
2159
2160# Compiler flag to turn off builtin functions.
2161no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
2162
2163# How to pass a linker flag through the compiler.
2164wl=$lt_lt_prog_compiler_wl_CXX
2165
2166# Additional compiler flags for building library objects.
2167pic_flag=$lt_lt_prog_compiler_pic_CXX
2168
2169# Compiler flag to prevent dynamic linking.
2170link_static_flag=$lt_lt_prog_compiler_static_CXX
2171
2172# Does compiler simultaneously support -c and -o options?
2173compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
2174
2175# Whether or not to add -lc for building shared libraries.
2176build_libtool_need_lc=$archive_cmds_need_lc_CXX
2177
2178# Whether or not to disallow shared libs when runtime libs are static.
2179allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
2180
2181# Compiler flag to allow reflexive dlopens.
2182export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
2183
2184# Compiler flag to generate shared objects directly from archives.
2185whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
2186
2187# Whether the compiler copes with passing no objects directly.
2188compiler_needs_object=$lt_compiler_needs_object_CXX
2189
2190# Create an old-style archive from a shared archive.
2191old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
2192
2193# Create a temporary old-style archive to link instead of a shared archive.
2194old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
2195
2196# Commands used to build a shared archive.
2197archive_cmds=$lt_archive_cmds_CXX
2198archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
2199
2200# Commands used to build a loadable module if different from building
2201# a shared archive.
2202module_cmds=$lt_module_cmds_CXX
2203module_expsym_cmds=$lt_module_expsym_cmds_CXX
2204
2205# Whether we are building with GNU ld or not.
2206with_gnu_ld=$lt_with_gnu_ld_CXX
2207
2208# Flag that allows shared libraries with undefined symbols to be built.
2209allow_undefined_flag=$lt_allow_undefined_flag_CXX
2210
2211# Flag that enforces no undefined symbols.
2212no_undefined_flag=$lt_no_undefined_flag_CXX
2213
2214# Flag to hardcode \$libdir into a binary during linking.
2215# This must work even if \$libdir does not exist
2216hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
2217
2218# If ld is used when linking, flag to hardcode \$libdir into a binary
2219# during linking.  This must work even if \$libdir does not exist.
2220hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
2221
2222# Whether we need a single "-rpath" flag with a separated argument.
2223hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
2224
2225# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
2226# DIR into the resulting binary.
2227hardcode_direct=$hardcode_direct_CXX
2228
2229# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
2230# DIR into the resulting binary and the resulting library dependency is
2231# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
2232# library is relocated.
2233hardcode_direct_absolute=$hardcode_direct_absolute_CXX
2234
2235# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
2236# into the resulting binary.
2237hardcode_minus_L=$hardcode_minus_L_CXX
2238
2239# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
2240# into the resulting binary.
2241hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
2242
2243# Set to "yes" if building a shared library automatically hardcodes DIR
2244# into the library and all subsequent libraries and executables linked
2245# against it.
2246hardcode_automatic=$hardcode_automatic_CXX
2247
2248# Set to yes if linker adds runtime paths of dependent libraries
2249# to runtime path list.
2250inherit_rpath=$inherit_rpath_CXX
2251
2252# Whether libtool must link a program against all its dependency libraries.
2253link_all_deplibs=$link_all_deplibs_CXX
2254
2255# Fix the shell variable \$srcfile for the compiler.
2256fix_srcfile_path=$lt_fix_srcfile_path_CXX
2257
2258# Set to "yes" if exported symbols are required.
2259always_export_symbols=$always_export_symbols_CXX
2260
2261# The commands to list exported symbols.
2262export_symbols_cmds=$lt_export_symbols_cmds_CXX
2263
2264# Symbols that should not be listed in the preloaded symbols.
2265exclude_expsyms=$lt_exclude_expsyms_CXX
2266
2267# Symbols that must always be exported.
2268include_expsyms=$lt_include_expsyms_CXX
2269
2270# Commands necessary for linking programs (against libraries) with templates.
2271prelink_cmds=$lt_prelink_cmds_CXX
2272
2273# Specify filename containing input files.
2274file_list_spec=$lt_file_list_spec_CXX
2275
2276# How to hardcode a shared library path into an executable.
2277hardcode_action=$hardcode_action_CXX
2278
2279# The directories searched by this compiler when creating a shared library.
2280compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
2281
2282# Dependencies to place before and after the objects being linked to
2283# create a shared library.
2284predep_objects=$lt_predep_objects_CXX
2285postdep_objects=$lt_postdep_objects_CXX
2286predeps=$lt_predeps_CXX
2287postdeps=$lt_postdeps_CXX
2288
2289# The library search path used internally by the compiler when linking
2290# a shared library.
2291compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
2292
2293# ### END LIBTOOL TAG CONFIG: CXX
2294_LT_EOF
2295
2296 ;;
2297    "po-directories":C)
2298    for ac_file in $CONFIG_FILES; do
2299      # Support "outfile[:infile[:infile...]]"
2300      case "$ac_file" in
2301        *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
2302      esac
2303      # PO directories have a Makefile.in generated from Makefile.in.in.
2304      case "$ac_file" in */Makefile.in)
2305        # Adjust a relative srcdir.
2306        ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
2307        ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
2308        ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
2309        # In autoconf-2.13 it is called $ac_given_srcdir.
2310        # In autoconf-2.50 it is called $srcdir.
2311        test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
2312        case "$ac_given_srcdir" in
2313          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
2314          /*) top_srcdir="$ac_given_srcdir" ;;
2315          *)  top_srcdir="$ac_dots$ac_given_srcdir" ;;
2316        esac
2317        # Treat a directory as a PO directory if and only if it has a
2318        # POTFILES.in file. This allows packages to have multiple PO
2319        # directories under different names or in different locations.
2320        if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
2321          rm -f "$ac_dir/POTFILES"
2322          test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
2323          cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ 	]*\$/d" -e "s,.*,     $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
2324          POMAKEFILEDEPS="POTFILES.in"
2325          # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend
2326          # on $ac_dir but don't depend on user-specified configuration
2327          # parameters.
2328          if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
2329            # The LINGUAS file contains the set of available languages.
2330            if test -n "$OBSOLETE_ALL_LINGUAS"; then
2331              test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
2332            fi
2333            ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
2334            # Hide the ALL_LINGUAS assigment from automake < 1.5.
2335            eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
2336            POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
2337          else
2338            # The set of available languages was given in configure.in.
2339            # Hide the ALL_LINGUAS assigment from automake < 1.5.
2340            eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
2341          fi
2342          # Compute POFILES
2343          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
2344          # Compute UPDATEPOFILES
2345          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
2346          # Compute DUMMYPOFILES
2347          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
2348          # Compute GMOFILES
2349          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
2350          case "$ac_given_srcdir" in
2351            .) srcdirpre= ;;
2352            *) srcdirpre='$(srcdir)/' ;;
2353          esac
2354          POFILES=
2355          UPDATEPOFILES=
2356          DUMMYPOFILES=
2357          GMOFILES=
2358          for lang in $ALL_LINGUAS; do
2359            POFILES="$POFILES $srcdirpre$lang.po"
2360            UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
2361            DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
2362            GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
2363          done
2364          # CATALOGS depends on both $ac_dir and the user's LINGUAS
2365          # environment variable.
2366          INST_LINGUAS=
2367          if test -n "$ALL_LINGUAS"; then
2368            for presentlang in $ALL_LINGUAS; do
2369              useit=no
2370              if test "%UNSET%" != "$LINGUAS"; then
2371                desiredlanguages="$LINGUAS"
2372              else
2373                desiredlanguages="$ALL_LINGUAS"
2374              fi
2375              for desiredlang in $desiredlanguages; do
2376                # Use the presentlang catalog if desiredlang is
2377                #   a. equal to presentlang, or
2378                #   b. a variant of presentlang (because in this case,
2379                #      presentlang can be used as a fallback for messages
2380                #      which are not translated in the desiredlang catalog).
2381                case "$desiredlang" in
2382                  "$presentlang"*) useit=yes;;
2383                esac
2384              done
2385              if test $useit = yes; then
2386                INST_LINGUAS="$INST_LINGUAS $presentlang"
2387              fi
2388            done
2389          fi
2390          CATALOGS=
2391          if test -n "$INST_LINGUAS"; then
2392            for lang in $INST_LINGUAS; do
2393              CATALOGS="$CATALOGS $lang.gmo"
2394            done
2395          fi
2396          test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
2397          sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
2398          for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
2399            if test -f "$f"; then
2400              case "$f" in
2401                *.orig | *.bak | *~) ;;
2402                *) cat "$f" >> "$ac_dir/Makefile" ;;
2403              esac
2404            fi
2405          done
2406        fi
2407        ;;
2408      esac
2409    done ;;
2410
2411  esac
2412done # for ac_tag
2413
2414
2415as_fn_exit 0
2416