1 |
3 |
sumanta.ch |
#! /bin/bash
|
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 |
|
|
|
7 |
|
|
debug=false
|
8 |
|
|
ac_cs_recheck=false
|
9 |
|
|
ac_cs_silent=false
|
10 |
|
|
SHELL=${CONFIG_SHELL-/bin/bash}
|
11 |
|
|
## --------------------- ##
|
12 |
|
|
## M4sh Initialization. ##
|
13 |
|
|
## --------------------- ##
|
14 |
|
|
|
15 |
|
|
# Be more Bourne compatible
|
16 |
|
|
DUALCASE=1; export DUALCASE # for MKS sh
|
17 |
|
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
18 |
|
|
emulate sh
|
19 |
|
|
NULLCMD=:
|
20 |
|
|
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
21 |
|
|
# is contrary to our usage. Disable this feature.
|
22 |
|
|
alias -g '${1+"$@"}'='"$@"'
|
23 |
|
|
setopt NO_GLOB_SUBST
|
24 |
|
|
else
|
25 |
|
|
case `(set -o) 2>/dev/null` in
|
26 |
|
|
*posix*) set -o posix ;;
|
27 |
|
|
esac
|
28 |
|
|
|
29 |
|
|
fi
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
# PATH needs CR
|
35 |
|
|
# Avoid depending upon Character Ranges.
|
36 |
|
|
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
37 |
|
|
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
38 |
|
|
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
39 |
|
|
as_cr_digits='0123456789'
|
40 |
|
|
as_cr_alnum=$as_cr_Letters$as_cr_digits
|
41 |
|
|
|
42 |
|
|
# The user is always right.
|
43 |
|
|
if test "${PATH_SEPARATOR+set}" != set; then
|
44 |
|
|
echo "#! /bin/sh" >conf$$.sh
|
45 |
|
|
echo "exit 0" >>conf$$.sh
|
46 |
|
|
chmod +x conf$$.sh
|
47 |
|
|
if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
|
48 |
|
|
PATH_SEPARATOR=';'
|
49 |
|
|
else
|
50 |
|
|
PATH_SEPARATOR=:
|
51 |
|
|
fi
|
52 |
|
|
rm -f conf$$.sh
|
53 |
|
|
fi
|
54 |
|
|
|
55 |
|
|
# Support unset when possible.
|
56 |
|
|
if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
|
57 |
|
|
as_unset=unset
|
58 |
|
|
else
|
59 |
|
|
as_unset=false
|
60 |
|
|
fi
|
61 |
|
|
|
62 |
|
|
|
63 |
|
|
# IFS
|
64 |
|
|
# We need space, tab and new line, in precisely that order. Quoting is
|
65 |
|
|
# there to prevent editors from complaining about space-tab.
|
66 |
|
|
# (If _AS_PATH_WALK were called with IFS unset, it would disable word
|
67 |
|
|
# splitting by setting IFS to empty value.)
|
68 |
|
|
as_nl='
|
69 |
|
|
'
|
70 |
|
|
IFS=" "" $as_nl"
|
71 |
|
|
|
72 |
|
|
# Find who we are. Look in the path if we contain no directory separator.
|
73 |
|
|
case $0 in
|
74 |
|
|
*[\\/]* ) as_myself=$0 ;;
|
75 |
|
|
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
76 |
|
|
for as_dir in $PATH
|
77 |
|
|
do
|
78 |
|
|
IFS=$as_save_IFS
|
79 |
|
|
test -z "$as_dir" && as_dir=.
|
80 |
|
|
test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
|
81 |
|
|
done
|
82 |
|
|
IFS=$as_save_IFS
|
83 |
|
|
|
84 |
|
|
;;
|
85 |
|
|
esac
|
86 |
|
|
# We did not find ourselves, most probably we were run as `sh COMMAND'
|
87 |
|
|
# in which case we are not to be found in the path.
|
88 |
|
|
if test "x$as_myself" = x; then
|
89 |
|
|
as_myself=$0
|
90 |
|
|
fi
|
91 |
|
|
if test ! -f "$as_myself"; then
|
92 |
|
|
echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
|
93 |
|
|
{ (exit 1); exit 1; }
|
94 |
|
|
fi
|
95 |
|
|
|
96 |
|
|
# Work around bugs in pre-3.0 UWIN ksh.
|
97 |
|
|
for as_var in ENV MAIL MAILPATH
|
98 |
|
|
do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
99 |
|
|
done
|
100 |
|
|
PS1='$ '
|
101 |
|
|
PS2='> '
|
102 |
|
|
PS4='+ '
|
103 |
|
|
|
104 |
|
|
# NLS nuisances.
|
105 |
|
|
for as_var in \
|
106 |
|
|
LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
|
107 |
|
|
LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
|
108 |
|
|
LC_TELEPHONE LC_TIME
|
109 |
|
|
do
|
110 |
|
|
if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
111 |
|
|
eval $as_var=C; export $as_var
|
112 |
|
|
else
|
113 |
|
|
($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
114 |
|
|
fi
|
115 |
|
|
done
|
116 |
|
|
|
117 |
|
|
# Required to use basename.
|
118 |
|
|
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
119 |
|
|
test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
120 |
|
|
as_expr=expr
|
121 |
|
|
else
|
122 |
|
|
as_expr=false
|
123 |
|
|
fi
|
124 |
|
|
|
125 |
|
|
if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
|
126 |
|
|
as_basename=basename
|
127 |
|
|
else
|
128 |
|
|
as_basename=false
|
129 |
|
|
fi
|
130 |
|
|
|
131 |
|
|
|
132 |
|
|
# Name of the executable.
|
133 |
|
|
as_me=`$as_basename -- "$0" ||
|
134 |
|
|
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
135 |
|
|
X"$0" : 'X\(//\)$' \| \
|
136 |
|
|
X"$0" : 'X\(/\)' \| . 2>/dev/null ||
|
137 |
|
|
echo X/"$0" |
|
138 |
|
|
sed '/^.*\/\([^/][^/]*\)\/*$/{
|
139 |
|
|
s//\1/
|
140 |
|
|
q
|
141 |
|
|
}
|
142 |
|
|
/^X\/\(\/\/\)$/{
|
143 |
|
|
s//\1/
|
144 |
|
|
q
|
145 |
|
|
}
|
146 |
|
|
/^X\/\(\/\).*/{
|
147 |
|
|
s//\1/
|
148 |
|
|
q
|
149 |
|
|
}
|
150 |
|
|
s/.*/./; q'`
|
151 |
|
|
|
152 |
|
|
# CDPATH.
|
153 |
|
|
$as_unset CDPATH
|
154 |
|
|
|
155 |
|
|
|
156 |
|
|
|
157 |
|
|
as_lineno_1=$LINENO
|
158 |
|
|
as_lineno_2=$LINENO
|
159 |
|
|
test "x$as_lineno_1" != "x$as_lineno_2" &&
|
160 |
|
|
test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
|
161 |
|
|
|
162 |
|
|
# Create $as_me.lineno as a copy of $as_myself, but with $LINENO
|
163 |
|
|
# uniformly replaced by the line number. The first 'sed' inserts a
|
164 |
|
|
# line-number line after each line using $LINENO; the second 'sed'
|
165 |
|
|
# does the real work. The second script uses 'N' to pair each
|
166 |
|
|
# line-number line with the line containing $LINENO, and appends
|
167 |
|
|
# trailing '-' during substitution so that $LINENO is not a special
|
168 |
|
|
# case at line end.
|
169 |
|
|
# (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
|
170 |
|
|
# scripts with optimization help from Paolo Bonzini. Blame Lee
|
171 |
|
|
# E. McMahon (1931-1989) for sed's syntax. :-)
|
172 |
|
|
sed -n '
|
173 |
|
|
p
|
174 |
|
|
/[$]LINENO/=
|
175 |
|
|
' <$as_myself |
|
176 |
|
|
sed '
|
177 |
|
|
s/[$]LINENO.*/&-/
|
178 |
|
|
t lineno
|
179 |
|
|
b
|
180 |
|
|
:lineno
|
181 |
|
|
N
|
182 |
|
|
:loop
|
183 |
|
|
s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
|
184 |
|
|
t loop
|
185 |
|
|
s/-\n.*//
|
186 |
|
|
' >$as_me.lineno &&
|
187 |
|
|
chmod +x "$as_me.lineno" ||
|
188 |
|
|
{ echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
|
189 |
|
|
{ (exit 1); exit 1; }; }
|
190 |
|
|
|
191 |
|
|
# Don't try to exec as it changes $[0], causing all sort of problems
|
192 |
|
|
# (the dirname of $[0] is not the place where we might find the
|
193 |
|
|
# original and so on. Autoconf is especially sensitive to this).
|
194 |
|
|
. "./$as_me.lineno"
|
195 |
|
|
# Exit status is that of the last command.
|
196 |
|
|
exit
|
197 |
|
|
}
|
198 |
|
|
|
199 |
|
|
|
200 |
|
|
if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
|
201 |
|
|
as_dirname=dirname
|
202 |
|
|
else
|
203 |
|
|
as_dirname=false
|
204 |
|
|
fi
|
205 |
|
|
|
206 |
|
|
ECHO_C= ECHO_N= ECHO_T=
|
207 |
|
|
case `echo -n x` in
|
208 |
|
|
-n*)
|
209 |
|
|
case `echo 'x\c'` in
|
210 |
|
|
*c*) ECHO_T=' ';; # ECHO_T is single tab character.
|
211 |
|
|
*) ECHO_C='\c';;
|
212 |
|
|
esac;;
|
213 |
|
|
*)
|
214 |
|
|
ECHO_N='-n';;
|
215 |
|
|
esac
|
216 |
|
|
|
217 |
|
|
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
218 |
|
|
test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
219 |
|
|
as_expr=expr
|
220 |
|
|
else
|
221 |
|
|
as_expr=false
|
222 |
|
|
fi
|
223 |
|
|
|
224 |
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
225 |
|
|
if test -d conf$$.dir; then
|
226 |
|
|
rm -f conf$$.dir/conf$$.file
|
227 |
|
|
else
|
228 |
|
|
rm -f conf$$.dir
|
229 |
|
|
mkdir conf$$.dir
|
230 |
|
|
fi
|
231 |
|
|
echo >conf$$.file
|
232 |
|
|
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
233 |
|
|
as_ln_s='ln -s'
|
234 |
|
|
# ... but there are two gotchas:
|
235 |
|
|
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
236 |
|
|
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
237 |
|
|
# In both cases, we have to default to `cp -p'.
|
238 |
|
|
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
239 |
|
|
as_ln_s='cp -p'
|
240 |
|
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
241 |
|
|
as_ln_s=ln
|
242 |
|
|
else
|
243 |
|
|
as_ln_s='cp -p'
|
244 |
|
|
fi
|
245 |
|
|
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
246 |
|
|
rmdir conf$$.dir 2>/dev/null
|
247 |
|
|
|
248 |
|
|
if mkdir -p . 2>/dev/null; then
|
249 |
|
|
as_mkdir_p=:
|
250 |
|
|
else
|
251 |
|
|
test -d ./-p && rmdir ./-p
|
252 |
|
|
as_mkdir_p=false
|
253 |
|
|
fi
|
254 |
|
|
|
255 |
|
|
if test -x / >/dev/null 2>&1; then
|
256 |
|
|
as_test_x='test -x'
|
257 |
|
|
else
|
258 |
|
|
if ls -dL / >/dev/null 2>&1; then
|
259 |
|
|
as_ls_L_option=L
|
260 |
|
|
else
|
261 |
|
|
as_ls_L_option=
|
262 |
|
|
fi
|
263 |
|
|
as_test_x='
|
264 |
|
|
eval sh -c '\''
|
265 |
|
|
if test -d "$1"; then
|
266 |
|
|
test -d "$1/.";
|
267 |
|
|
else
|
268 |
|
|
case $1 in
|
269 |
|
|
-*)set "./$1";;
|
270 |
|
|
esac;
|
271 |
|
|
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
|
272 |
|
|
???[sx]*):;;*)false;;esac;fi
|
273 |
|
|
'\'' sh
|
274 |
|
|
'
|
275 |
|
|
fi
|
276 |
|
|
as_executable_p=$as_test_x
|
277 |
|
|
|
278 |
|
|
# Sed expression to map a string onto a valid CPP name.
|
279 |
|
|
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
280 |
|
|
|
281 |
|
|
# Sed expression to map a string onto a valid variable name.
|
282 |
|
|
as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
|
283 |
|
|
|
284 |
|
|
|
285 |
|
|
exec 6>&1
|
286 |
|
|
|
287 |
|
|
# Save the log message, to keep $[0] and so on meaningful, and to
|
288 |
|
|
# report actual input values of CONFIG_FILES etc. instead of their
|
289 |
|
|
# values after options handling.
|
290 |
|
|
ac_log="
|
291 |
|
|
This file was extended by connectk $as_me 2.0, which was
|
292 |
|
|
generated by GNU Autoconf 2.61. Invocation command line was
|
293 |
|
|
|
294 |
|
|
CONFIG_FILES = $CONFIG_FILES
|
295 |
|
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
296 |
|
|
CONFIG_LINKS = $CONFIG_LINKS
|
297 |
|
|
CONFIG_COMMANDS = $CONFIG_COMMANDS
|
298 |
|
|
$ $0 $@
|
299 |
|
|
|
300 |
|
|
on `(hostname || uname -n) 2>/dev/null | sed 1q`
|
301 |
|
|
"
|
302 |
|
|
|
303 |
|
|
# Files that config.status was made for.
|
304 |
|
|
config_files=" Makefile"
|
305 |
|
|
config_headers=" config.h"
|
306 |
|
|
config_commands=" depfiles"
|
307 |
|
|
|
308 |
|
|
ac_cs_usage="\
|
309 |
|
|
\`$as_me' instantiates files from templates according to the
|
310 |
|
|
current configuration.
|
311 |
|
|
|
312 |
|
|
Usage: $0 [OPTIONS] [FILE]...
|
313 |
|
|
|
314 |
|
|
-h, --help print this help, then exit
|
315 |
|
|
-V, --version print version number and configuration settings, then exit
|
316 |
|
|
-q, --quiet do not print progress messages
|
317 |
|
|
-d, --debug don't remove temporary files
|
318 |
|
|
--recheck update $as_me by reconfiguring in the same conditions
|
319 |
|
|
--file=FILE[:TEMPLATE]
|
320 |
|
|
instantiate the configuration file FILE
|
321 |
|
|
--header=FILE[:TEMPLATE]
|
322 |
|
|
instantiate the configuration header FILE
|
323 |
|
|
|
324 |
|
|
Configuration files:
|
325 |
|
|
$config_files
|
326 |
|
|
|
327 |
|
|
Configuration headers:
|
328 |
|
|
$config_headers
|
329 |
|
|
|
330 |
|
|
Configuration commands:
|
331 |
|
|
$config_commands
|
332 |
|
|
|
333 |
|
|
Report bugs to ."
|
334 |
|
|
|
335 |
|
|
ac_cs_version="\
|
336 |
|
|
connectk config.status 2.0
|
337 |
|
|
configured by ./configure, generated by GNU Autoconf 2.61,
|
338 |
|
|
with options \"\"
|
339 |
|
|
|
340 |
|
|
Copyright (C) 2006 Free Software Foundation, Inc.
|
341 |
|
|
This config.status script is free software; the Free Software Foundation
|
342 |
|
|
gives unlimited permission to copy, distribute and modify it."
|
343 |
|
|
|
344 |
|
|
ac_pwd='/home/schaudhu/connect6/connectk-2.0'
|
345 |
|
|
srcdir='.'
|
346 |
|
|
INSTALL='/usr/bin/install -c'
|
347 |
|
|
MKDIR_P='/bin/mkdir -p'
|
348 |
|
|
# If no file are specified by the user, then we need to provide default
|
349 |
|
|
# value. By we need to know if files were specified by the user.
|
350 |
|
|
ac_need_defaults=:
|
351 |
|
|
while test $# != 0
|
352 |
|
|
do
|
353 |
|
|
case $1 in
|
354 |
|
|
--*=*)
|
355 |
|
|
ac_option=`expr "X$1" : 'X\([^=]*\)='`
|
356 |
|
|
ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
|
357 |
|
|
ac_shift=:
|
358 |
|
|
;;
|
359 |
|
|
*)
|
360 |
|
|
ac_option=$1
|
361 |
|
|
ac_optarg=$2
|
362 |
|
|
ac_shift=shift
|
363 |
|
|
;;
|
364 |
|
|
esac
|
365 |
|
|
|
366 |
|
|
case $ac_option in
|
367 |
|
|
# Handling of the options.
|
368 |
|
|
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
369 |
|
|
ac_cs_recheck=: ;;
|
370 |
|
|
--version | --versio | --versi | --vers | --ver | --ve | --v | -V )
|
371 |
|
|
echo "$ac_cs_version"; exit ;;
|
372 |
|
|
--debug | --debu | --deb | --de | --d | -d )
|
373 |
|
|
debug=: ;;
|
374 |
|
|
--file | --fil | --fi | --f )
|
375 |
|
|
$ac_shift
|
376 |
|
|
CONFIG_FILES="$CONFIG_FILES $ac_optarg"
|
377 |
|
|
ac_need_defaults=false;;
|
378 |
|
|
--header | --heade | --head | --hea )
|
379 |
|
|
$ac_shift
|
380 |
|
|
CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
|
381 |
|
|
ac_need_defaults=false;;
|
382 |
|
|
--he | --h)
|
383 |
|
|
# Conflict between --help and --header
|
384 |
|
|
{ echo "$as_me: error: ambiguous option: $1
|
385 |
|
|
Try \`$0 --help' for more information." >&2
|
386 |
|
|
{ (exit 1); exit 1; }; };;
|
387 |
|
|
--help | --hel | -h )
|
388 |
|
|
echo "$ac_cs_usage"; exit ;;
|
389 |
|
|
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
390 |
|
|
| -silent | --silent | --silen | --sile | --sil | --si | --s)
|
391 |
|
|
ac_cs_silent=: ;;
|
392 |
|
|
|
393 |
|
|
# This is an error.
|
394 |
|
|
-*) { echo "$as_me: error: unrecognized option: $1
|
395 |
|
|
Try \`$0 --help' for more information." >&2
|
396 |
|
|
{ (exit 1); exit 1; }; } ;;
|
397 |
|
|
|
398 |
|
|
*) ac_config_targets="$ac_config_targets $1"
|
399 |
|
|
ac_need_defaults=false ;;
|
400 |
|
|
|
401 |
|
|
esac
|
402 |
|
|
shift
|
403 |
|
|
done
|
404 |
|
|
|
405 |
|
|
ac_configure_extra_args=
|
406 |
|
|
|
407 |
|
|
if $ac_cs_silent; then
|
408 |
|
|
exec 6>/dev/null
|
409 |
|
|
ac_configure_extra_args="$ac_configure_extra_args --silent"
|
410 |
|
|
fi
|
411 |
|
|
|
412 |
|
|
if $ac_cs_recheck; then
|
413 |
|
|
echo "running CONFIG_SHELL=/bin/bash /bin/bash ./configure " $ac_configure_extra_args " --no-create --no-recursion" >&6
|
414 |
|
|
CONFIG_SHELL=/bin/bash
|
415 |
|
|
export CONFIG_SHELL
|
416 |
|
|
exec /bin/bash "./configure" $ac_configure_extra_args --no-create --no-recursion
|
417 |
|
|
fi
|
418 |
|
|
|
419 |
|
|
exec 5>>config.log
|
420 |
|
|
{
|
421 |
|
|
echo
|
422 |
|
|
sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
|
423 |
|
|
## Running $as_me. ##
|
424 |
|
|
_ASBOX
|
425 |
|
|
echo "$ac_log"
|
426 |
|
|
} >&5
|
427 |
|
|
|
428 |
|
|
#
|
429 |
|
|
# INIT-COMMANDS
|
430 |
|
|
#
|
431 |
|
|
AMDEP_TRUE="" ac_aux_dir="."
|
432 |
|
|
|
433 |
|
|
|
434 |
|
|
# Handling of arguments.
|
435 |
|
|
for ac_config_target in $ac_config_targets
|
436 |
|
|
do
|
437 |
|
|
case $ac_config_target in
|
438 |
|
|
"config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
439 |
|
|
"depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
440 |
|
|
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
441 |
|
|
|
442 |
|
|
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
443 |
|
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
444 |
|
|
{ (exit 1); exit 1; }; };;
|
445 |
|
|
esac
|
446 |
|
|
done
|
447 |
|
|
|
448 |
|
|
|
449 |
|
|
# If the user did not use the arguments to specify the items to instantiate,
|
450 |
|
|
# then the envvar interface is used. Set only those that are not.
|
451 |
|
|
# We use the long form for the default assignment because of an extremely
|
452 |
|
|
# bizarre bug on SunOS 4.1.3.
|
453 |
|
|
if $ac_need_defaults; then
|
454 |
|
|
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
455 |
|
|
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
|
456 |
|
|
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
|
457 |
|
|
fi
|
458 |
|
|
|
459 |
|
|
# Have a temporary directory for convenience. Make it in the build tree
|
460 |
|
|
# simply because there is no reason against having it here, and in addition,
|
461 |
|
|
# creating and moving files from /tmp can sometimes cause problems.
|
462 |
|
|
# Hook for its removal unless debugging.
|
463 |
|
|
# Note that there is a small window in which the directory will not be cleaned:
|
464 |
|
|
# after its creation but before its name has been assigned to `$tmp'.
|
465 |
|
|
$debug ||
|
466 |
|
|
{
|
467 |
|
|
tmp=
|
468 |
|
|
trap 'exit_status=$?
|
469 |
|
|
{ test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
|
470 |
|
|
' 0
|
471 |
|
|
trap '{ (exit 1); exit 1; }' 1 2 13 15
|
472 |
|
|
}
|
473 |
|
|
# Create a (secure) tmp directory for tmp files.
|
474 |
|
|
|
475 |
|
|
{
|
476 |
|
|
tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
|
477 |
|
|
test -n "$tmp" && test -d "$tmp"
|
478 |
|
|
} ||
|
479 |
|
|
{
|
480 |
|
|
tmp=./conf$$-$RANDOM
|
481 |
|
|
(umask 077 && mkdir "$tmp")
|
482 |
|
|
} ||
|
483 |
|
|
{
|
484 |
|
|
echo "$me: cannot create a temporary directory in ." >&2
|
485 |
|
|
{ (exit 1); exit 1; }
|
486 |
|
|
}
|
487 |
|
|
|
488 |
|
|
#
|
489 |
|
|
# Set up the sed scripts for CONFIG_FILES section.
|
490 |
|
|
#
|
491 |
|
|
|
492 |
|
|
# No need to generate the scripts if there are no CONFIG_FILES.
|
493 |
|
|
# This happens for instance when ./config.status config.h
|
494 |
|
|
if test -n "$CONFIG_FILES"; then
|
495 |
|
|
|
496 |
|
|
cat >"$tmp/subs-1.sed" <<\CEOF
|
497 |
|
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
|
498 |
|
|
s,@SHELL@,|#_!!_#|/bin/bash,g
|
499 |
|
|
s,@PATH_SEPARATOR@,|#_!!_#|:,g
|
500 |
|
|
s,@PACKAGE_NAME@,|#_!!_#|connectk,g
|
501 |
|
|
s,@PACKAGE_TARNAME@,|#_!!_#|connectk,g
|
502 |
|
|
s,@PACKAGE_VERSION@,|#_!!_#|2.0,g
|
503 |
|
|
s,@PACKAGE_STRING@,|#_!!_#|connectk 2.0,g
|
504 |
|
|
s,@PACKAGE_BUGREPORT@,|#_!!_#|levi0190@|#_!!_#|umn.edu,g
|
505 |
|
|
s,@exec_prefix@,|#_!!_#|${prefix},g
|
506 |
|
|
s,@prefix@,|#_!!_#|/usr/local,g
|
507 |
|
|
s,@program_transform_name@,|#_!!_#|s\,x\,x\,,g
|
508 |
|
|
s,@bindir@,|#_!!_#|${exec_prefix}/bin,g
|
509 |
|
|
s,@sbindir@,|#_!!_#|${exec_prefix}/sbin,g
|
510 |
|
|
s,@libexecdir@,|#_!!_#|${exec_prefix}/libexec,g
|
511 |
|
|
s,@datarootdir@,|#_!!_#|${prefix}/share,g
|
512 |
|
|
s,@datadir@,|#_!!_#|${datarootdir},g
|
513 |
|
|
s,@sysconfdir@,|#_!!_#|${prefix}/etc,g
|
514 |
|
|
s,@sharedstatedir@,|#_!!_#|${prefix}/com,g
|
515 |
|
|
s,@localstatedir@,|#_!!_#|${prefix}/var,g
|
516 |
|
|
s,@includedir@,|#_!!_#|${prefix}/include,g
|
517 |
|
|
s,@oldincludedir@,|#_!!_#|/usr/include,g
|
518 |
|
|
s,@docdir@,|#_!!_#|${datarootdir}/doc/${PACKAGE_TARNAME},g
|
519 |
|
|
s,@infodir@,|#_!!_#|${datarootdir}/info,g
|
520 |
|
|
s,@htmldir@,|#_!!_#|${docdir},g
|
521 |
|
|
s,@dvidir@,|#_!!_#|${docdir},g
|
522 |
|
|
s,@pdfdir@,|#_!!_#|${docdir},g
|
523 |
|
|
s,@psdir@,|#_!!_#|${docdir},g
|
524 |
|
|
s,@libdir@,|#_!!_#|${exec_prefix}/lib,g
|
525 |
|
|
s,@localedir@,|#_!!_#|${datarootdir}/locale,g
|
526 |
|
|
s,@mandir@,|#_!!_#|${datarootdir}/man,g
|
527 |
|
|
s,@DEFS@,|#_!!_#|-DHAVE_CONFIG_H,g
|
528 |
|
|
s,@ECHO_C@,|#_!!_#|,g
|
529 |
|
|
s,@ECHO_N@,|#_!!_#|-n,g
|
530 |
|
|
s,@ECHO_T@,|#_!!_#|,g
|
531 |
|
|
s,@LIBS@,|#_!!_#|,g
|
532 |
|
|
s,@build_alias@,|#_!!_#|,g
|
533 |
|
|
s,@host_alias@,|#_!!_#|,g
|
534 |
|
|
s,@target_alias@,|#_!!_#|,g
|
535 |
|
|
s,@INSTALL_PROGRAM@,|#_!!_#|${INSTALL},g
|
536 |
|
|
s,@INSTALL_SCRIPT@,|#_!!_#|${INSTALL},g
|
537 |
|
|
s,@INSTALL_DATA@,|#_!!_#|${INSTALL} -m 644,g
|
538 |
|
|
s,@am__isrc@,|#_!!_#|,g
|
539 |
|
|
s,@CYGPATH_W@,|#_!!_#|echo,g
|
540 |
|
|
s,@PACKAGE@,|#_!!_#|connectk,g
|
541 |
|
|
s,@VERSION@,|#_!!_#|2.0,g
|
542 |
|
|
s,@ACLOCAL@,|#_!!_#|${SHELL} /home/schaudhu/connect6/connectk-2.0/missing --run aclocal-1.10,g
|
543 |
|
|
s,@AUTOCONF@,|#_!!_#|${SHELL} /home/schaudhu/connect6/connectk-2.0/missing --run autoconf,g
|
544 |
|
|
s,@AUTOMAKE@,|#_!!_#|${SHELL} /home/schaudhu/connect6/connectk-2.0/missing --run automake-1.10,g
|
545 |
|
|
s,@AUTOHEADER@,|#_!!_#|${SHELL} /home/schaudhu/connect6/connectk-2.0/missing --run autoheader,g
|
546 |
|
|
s,@MAKEINFO@,|#_!!_#|${SHELL} /home/schaudhu/connect6/connectk-2.0/missing --run makeinfo,g
|
547 |
|
|
s,@install_sh@,|#_!!_#|$(SHELL) /home/schaudhu/connect6/connectk-2.0/install-sh,g
|
548 |
|
|
s,@STRIP@,|#_!!_#|,g
|
549 |
|
|
s,@INSTALL_STRIP_PROGRAM@,|#_!!_#|$(install_sh) -c -s,g
|
550 |
|
|
s,@mkdir_p@,|#_!!_#|/bin/mkdir -p,g
|
551 |
|
|
s,@AWK@,|#_!!_#|gawk,g
|
552 |
|
|
s,@SET_MAKE@,|#_!!_#|,g
|
553 |
|
|
s,@am__leading_dot@,|#_!!_#|.,g
|
554 |
|
|
s,@AMTAR@,|#_!!_#|${SHELL} /home/schaudhu/connect6/connectk-2.0/missing --run tar,g
|
555 |
|
|
s,@am__tar@,|#_!!_#|${AMTAR} chof - "$$tardir",g
|
556 |
|
|
s,@am__untar@,|#_!!_#|${AMTAR} xf -,g
|
557 |
|
|
s,@CC@,|#_!!_#|gcc,g
|
558 |
|
|
s,@CFLAGS@,|#_!!_#|-g -O2,g
|
559 |
|
|
s,@LDFLAGS@,|#_!!_#|,g
|
560 |
|
|
s,@CPPFLAGS@,|#_!!_#|,g
|
561 |
|
|
s,@ac_ct_CC@,|#_!!_#|gcc,g
|
562 |
|
|
s,@EXEEXT@,|#_!!_#|,g
|
563 |
|
|
s,@OBJEXT@,|#_!!_#|o,g
|
564 |
|
|
s,@DEPDIR@,|#_!!_#|.deps,g
|
565 |
|
|
s,@am__include@,|#_!!_#|include,g
|
566 |
|
|
s,@am__quote@,|#_!!_#|,g
|
567 |
|
|
s,@AMDEP_TRUE@,|#_!!_#|,g
|
568 |
|
|
s,@AMDEP_FALSE@,|#_!!_#|#,g
|
569 |
|
|
s,@AMDEPBACKSLASH@,|#_!!_#|\\,g
|
570 |
|
|
s,@CCDEPMODE@,|#_!!_#|depmode=gcc3,g
|
571 |
|
|
s,@am__fastdepCC_TRUE@,|#_!!_#|,g
|
572 |
|
|
s,@am__fastdepCC_FALSE@,|#_!!_#|#,g
|
573 |
|
|
s,@PKG_CONFIG@,|#_!!_#|/usr/bin/pkg-config,g
|
574 |
|
|
s,@GTK_CFLAGS@,|#_!!_#|-pthread -D_REENTRANT -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12 ,g
|
575 |
|
|
s,@GTK_LIBS@,|#_!!_#|-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 ,g
|
576 |
|
|
s,@CPP@,|#_!!_#|gcc -E,g
|
577 |
|
|
s,@GREP@,|#_!!_#|/bin/grep,g
|
578 |
|
|
s,@EGREP@,|#_!!_#|/bin/grep -E,g
|
579 |
|
|
s,@LIBOBJS@,|#_!!_#|,g
|
580 |
|
|
s,@LTLIBOBJS@,|#_!!_#|,g
|
581 |
|
|
:end
|
582 |
|
|
s/|#_!!_#|//g
|
583 |
|
|
CEOF
|
584 |
|
|
fi # test -n "$CONFIG_FILES"
|
585 |
|
|
|
586 |
|
|
|
587 |
|
|
for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS
|
588 |
|
|
do
|
589 |
|
|
case $ac_tag in
|
590 |
|
|
:[FHLC]) ac_mode=$ac_tag; continue;;
|
591 |
|
|
esac
|
592 |
|
|
case $ac_mode$ac_tag in
|
593 |
|
|
:[FHL]*:*);;
|
594 |
|
|
:L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
|
595 |
|
|
echo "$as_me: error: Invalid tag $ac_tag." >&2;}
|
596 |
|
|
{ (exit 1); exit 1; }; };;
|
597 |
|
|
:[FH]-) ac_tag=-:-;;
|
598 |
|
|
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
|
599 |
|
|
esac
|
600 |
|
|
ac_save_IFS=$IFS
|
601 |
|
|
IFS=:
|
602 |
|
|
set x $ac_tag
|
603 |
|
|
IFS=$ac_save_IFS
|
604 |
|
|
shift
|
605 |
|
|
ac_file=$1
|
606 |
|
|
shift
|
607 |
|
|
|
608 |
|
|
case $ac_mode in
|
609 |
|
|
:L) ac_source=$1;;
|
610 |
|
|
:[FH])
|
611 |
|
|
ac_file_inputs=
|
612 |
|
|
for ac_f
|
613 |
|
|
do
|
614 |
|
|
case $ac_f in
|
615 |
|
|
-) ac_f="$tmp/stdin";;
|
616 |
|
|
*) # Look for the file first in the build tree, then in the source tree
|
617 |
|
|
# (if the path is not absolute). The absolute path cannot be DOS-style,
|
618 |
|
|
# because $ac_f cannot contain `:'.
|
619 |
|
|
test -f "$ac_f" ||
|
620 |
|
|
case $ac_f in
|
621 |
|
|
[\\/$]*) false;;
|
622 |
|
|
*) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
|
623 |
|
|
esac ||
|
624 |
|
|
{ { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
|
625 |
|
|
echo "$as_me: error: cannot find input file: $ac_f" >&2;}
|
626 |
|
|
{ (exit 1); exit 1; }; };;
|
627 |
|
|
esac
|
628 |
|
|
ac_file_inputs="$ac_file_inputs $ac_f"
|
629 |
|
|
done
|
630 |
|
|
|
631 |
|
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
632 |
|
|
# use $as_me), people would be surprised to read:
|
633 |
|
|
# /* config.h. Generated by config.status. */
|
634 |
|
|
configure_input="Generated from "`IFS=:
|
635 |
|
|
echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
|
636 |
|
|
if test x"$ac_file" != x-; then
|
637 |
|
|
configure_input="$ac_file. $configure_input"
|
638 |
|
|
{ echo "$as_me:$LINENO: creating $ac_file" >&5
|
639 |
|
|
echo "$as_me: creating $ac_file" >&6;}
|
640 |
|
|
fi
|
641 |
|
|
|
642 |
|
|
case $ac_tag in
|
643 |
|
|
*:-:* | *:-) cat >"$tmp/stdin";;
|
644 |
|
|
esac
|
645 |
|
|
;;
|
646 |
|
|
esac
|
647 |
|
|
|
648 |
|
|
ac_dir=`$as_dirname -- "$ac_file" ||
|
649 |
|
|
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
650 |
|
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
651 |
|
|
X"$ac_file" : 'X\(//\)$' \| \
|
652 |
|
|
X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
|
653 |
|
|
echo X"$ac_file" |
|
654 |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
655 |
|
|
s//\1/
|
656 |
|
|
q
|
657 |
|
|
}
|
658 |
|
|
/^X\(\/\/\)[^/].*/{
|
659 |
|
|
s//\1/
|
660 |
|
|
q
|
661 |
|
|
}
|
662 |
|
|
/^X\(\/\/\)$/{
|
663 |
|
|
s//\1/
|
664 |
|
|
q
|
665 |
|
|
}
|
666 |
|
|
/^X\(\/\).*/{
|
667 |
|
|
s//\1/
|
668 |
|
|
q
|
669 |
|
|
}
|
670 |
|
|
s/.*/./; q'`
|
671 |
|
|
{ as_dir="$ac_dir"
|
672 |
|
|
case $as_dir in #(
|
673 |
|
|
-*) as_dir=./$as_dir;;
|
674 |
|
|
esac
|
675 |
|
|
test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
|
676 |
|
|
as_dirs=
|
677 |
|
|
while :; do
|
678 |
|
|
case $as_dir in #(
|
679 |
|
|
*\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
|
680 |
|
|
*) as_qdir=$as_dir;;
|
681 |
|
|
esac
|
682 |
|
|
as_dirs="'$as_qdir' $as_dirs"
|
683 |
|
|
as_dir=`$as_dirname -- "$as_dir" ||
|
684 |
|
|
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
685 |
|
|
X"$as_dir" : 'X\(//\)[^/]' \| \
|
686 |
|
|
X"$as_dir" : 'X\(//\)$' \| \
|
687 |
|
|
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
|
688 |
|
|
echo X"$as_dir" |
|
689 |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
690 |
|
|
s//\1/
|
691 |
|
|
q
|
692 |
|
|
}
|
693 |
|
|
/^X\(\/\/\)[^/].*/{
|
694 |
|
|
s//\1/
|
695 |
|
|
q
|
696 |
|
|
}
|
697 |
|
|
/^X\(\/\/\)$/{
|
698 |
|
|
s//\1/
|
699 |
|
|
q
|
700 |
|
|
}
|
701 |
|
|
/^X\(\/\).*/{
|
702 |
|
|
s//\1/
|
703 |
|
|
q
|
704 |
|
|
}
|
705 |
|
|
s/.*/./; q'`
|
706 |
|
|
test -d "$as_dir" && break
|
707 |
|
|
done
|
708 |
|
|
test -z "$as_dirs" || eval "mkdir $as_dirs"
|
709 |
|
|
} || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
|
710 |
|
|
echo "$as_me: error: cannot create directory $as_dir" >&2;}
|
711 |
|
|
{ (exit 1); exit 1; }; }; }
|
712 |
|
|
ac_builddir=.
|
713 |
|
|
|
714 |
|
|
case "$ac_dir" in
|
715 |
|
|
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
716 |
|
|
*)
|
717 |
|
|
ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
|
718 |
|
|
# A ".." for each directory in $ac_dir_suffix.
|
719 |
|
|
ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
|
720 |
|
|
case $ac_top_builddir_sub in
|
721 |
|
|
"") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
722 |
|
|
*) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
723 |
|
|
esac ;;
|
724 |
|
|
esac
|
725 |
|
|
ac_abs_top_builddir=$ac_pwd
|
726 |
|
|
ac_abs_builddir=$ac_pwd$ac_dir_suffix
|
727 |
|
|
# for backward compatibility:
|
728 |
|
|
ac_top_builddir=$ac_top_build_prefix
|
729 |
|
|
|
730 |
|
|
case $srcdir in
|
731 |
|
|
.) # We are building in place.
|
732 |
|
|
ac_srcdir=.
|
733 |
|
|
ac_top_srcdir=$ac_top_builddir_sub
|
734 |
|
|
ac_abs_top_srcdir=$ac_pwd ;;
|
735 |
|
|
[\\/]* | ?:[\\/]* ) # Absolute name.
|
736 |
|
|
ac_srcdir=$srcdir$ac_dir_suffix;
|
737 |
|
|
ac_top_srcdir=$srcdir
|
738 |
|
|
ac_abs_top_srcdir=$srcdir ;;
|
739 |
|
|
*) # Relative name.
|
740 |
|
|
ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
|
741 |
|
|
ac_top_srcdir=$ac_top_build_prefix$srcdir
|
742 |
|
|
ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
|
743 |
|
|
esac
|
744 |
|
|
ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
745 |
|
|
|
746 |
|
|
|
747 |
|
|
case $ac_mode in
|
748 |
|
|
:F)
|
749 |
|
|
#
|
750 |
|
|
# CONFIG_FILE
|
751 |
|
|
#
|
752 |
|
|
|
753 |
|
|
case $INSTALL in
|
754 |
|
|
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
|
755 |
|
|
*) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
|
756 |
|
|
esac
|
757 |
|
|
ac_MKDIR_P=$MKDIR_P
|
758 |
|
|
case $MKDIR_P in
|
759 |
|
|
[\\/$]* | ?:[\\/]* ) ;;
|
760 |
|
|
*/*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
|
761 |
|
|
esac
|
762 |
|
|
# If the template does not know about datarootdir, expand it.
|
763 |
|
|
# FIXME: This hack should be removed a few years after 2.60.
|
764 |
|
|
ac_datarootdir_hack=; ac_datarootdir_seen=
|
765 |
|
|
|
766 |
|
|
case `sed -n '/datarootdir/ {
|
767 |
|
|
p
|
768 |
|
|
q
|
769 |
|
|
}
|
770 |
|
|
/@datadir@/p
|
771 |
|
|
/@docdir@/p
|
772 |
|
|
/@infodir@/p
|
773 |
|
|
/@localedir@/p
|
774 |
|
|
/@mandir@/p
|
775 |
|
|
' $ac_file_inputs` in
|
776 |
|
|
*datarootdir*) ac_datarootdir_seen=yes;;
|
777 |
|
|
*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
|
778 |
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
|
779 |
|
|
echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
|
780 |
|
|
ac_datarootdir_hack='
|
781 |
|
|
s&@datadir@&${datarootdir}&g
|
782 |
|
|
s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
|
783 |
|
|
s&@infodir@&${datarootdir}/info&g
|
784 |
|
|
s&@localedir@&${datarootdir}/locale&g
|
785 |
|
|
s&@mandir@&${datarootdir}/man&g
|
786 |
|
|
s&\${datarootdir}&${prefix}/share&g' ;;
|
787 |
|
|
esac
|
788 |
|
|
sed "/^[ ]*VPATH[ ]*=/{
|
789 |
|
|
s/:*\$(srcdir):*/:/
|
790 |
|
|
s/:*\${srcdir}:*/:/
|
791 |
|
|
s/:*@srcdir@:*/:/
|
792 |
|
|
s/^\([^=]*=[ ]*\):*/\1/
|
793 |
|
|
s/:*$//
|
794 |
|
|
s/^[^=]*=[ ]*$//
|
795 |
|
|
}
|
796 |
|
|
|
797 |
|
|
:t
|
798 |
|
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
|
799 |
|
|
s&@configure_input@&$configure_input&;t t
|
800 |
|
|
s&@top_builddir@&$ac_top_builddir_sub&;t t
|
801 |
|
|
s&@srcdir@&$ac_srcdir&;t t
|
802 |
|
|
s&@abs_srcdir@&$ac_abs_srcdir&;t t
|
803 |
|
|
s&@top_srcdir@&$ac_top_srcdir&;t t
|
804 |
|
|
s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
|
805 |
|
|
s&@builddir@&$ac_builddir&;t t
|
806 |
|
|
s&@abs_builddir@&$ac_abs_builddir&;t t
|
807 |
|
|
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
|
808 |
|
|
s&@INSTALL@&$ac_INSTALL&;t t
|
809 |
|
|
s&@MKDIR_P@&$ac_MKDIR_P&;t t
|
810 |
|
|
$ac_datarootdir_hack
|
811 |
|
|
" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out
|
812 |
|
|
|
813 |
|
|
test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
|
814 |
|
|
{ ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
|
815 |
|
|
{ ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
|
816 |
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
817 |
|
|
which seems to be undefined. Please make sure it is defined." >&5
|
818 |
|
|
echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
819 |
|
|
which seems to be undefined. Please make sure it is defined." >&2;}
|
820 |
|
|
|
821 |
|
|
rm -f "$tmp/stdin"
|
822 |
|
|
case $ac_file in
|
823 |
|
|
-) cat "$tmp/out"; rm -f "$tmp/out";;
|
824 |
|
|
*) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
|
825 |
|
|
esac
|
826 |
|
|
;;
|
827 |
|
|
:H)
|
828 |
|
|
#
|
829 |
|
|
# CONFIG_HEADER
|
830 |
|
|
#
|
831 |
|
|
# First, check the format of the line:
|
832 |
|
|
cat >"$tmp/defines.sed" <<\CEOF
|
833 |
|
|
/^[ ]*#[ ]*undef[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[ ]*$/b def
|
834 |
|
|
/^[ ]*#[ ]*define[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[( ]/b def
|
835 |
|
|
b
|
836 |
|
|
:def
|
837 |
|
|
s/$/ /
|
838 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_NAME\)[ (].*,\1define\2 "connectk" ,
|
839 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_TARNAME\)[ (].*,\1define\2 "connectk" ,
|
840 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_VERSION\)[ (].*,\1define\2 "2.0" ,
|
841 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_STRING\)[ (].*,\1define\2 "connectk 2.0" ,
|
842 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_BUGREPORT\)[ (].*,\1define\2 "levi0190@umn.edu" ,
|
843 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE\)[ (].*,\1define\2 "connectk" ,
|
844 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*VERSION\)[ (].*,\1define\2 "2.0" ,
|
845 |
|
|
s,^\([ #]*\)[^ ]*\([ ]*STDC_HEADERS\)[ (].*,\1define\2 1 ,
|
846 |
|
|
s/ $//
|
847 |
|
|
s,^[ #]*u.*,/* & */,
|
848 |
|
|
CEOF
|
849 |
|
|
sed -f "$tmp/defines.sed" $ac_file_inputs >"$tmp/out1"
|
850 |
|
|
ac_result="$tmp/out1"
|
851 |
|
|
if test x"$ac_file" != x-; then
|
852 |
|
|
echo "/* $configure_input */" >"$tmp/config.h"
|
853 |
|
|
cat "$ac_result" >>"$tmp/config.h"
|
854 |
|
|
if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
|
855 |
|
|
{ echo "$as_me:$LINENO: $ac_file is unchanged" >&5
|
856 |
|
|
echo "$as_me: $ac_file is unchanged" >&6;}
|
857 |
|
|
else
|
858 |
|
|
rm -f $ac_file
|
859 |
|
|
mv "$tmp/config.h" $ac_file
|
860 |
|
|
fi
|
861 |
|
|
else
|
862 |
|
|
echo "/* $configure_input */"
|
863 |
|
|
cat "$ac_result"
|
864 |
|
|
fi
|
865 |
|
|
rm -f "$tmp/out12"
|
866 |
|
|
# Compute $ac_file's index in $config_headers.
|
867 |
|
|
_am_stamp_count=1
|
868 |
|
|
for _am_header in $config_headers :; do
|
869 |
|
|
case $_am_header in
|
870 |
|
|
$ac_file | $ac_file:* )
|
871 |
|
|
break ;;
|
872 |
|
|
* )
|
873 |
|
|
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
874 |
|
|
esac
|
875 |
|
|
done
|
876 |
|
|
echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
|
877 |
|
|
$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
878 |
|
|
X$ac_file : 'X\(//\)[^/]' \| \
|
879 |
|
|
X$ac_file : 'X\(//\)$' \| \
|
880 |
|
|
X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
|
881 |
|
|
echo X$ac_file |
|
882 |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
883 |
|
|
s//\1/
|
884 |
|
|
q
|
885 |
|
|
}
|
886 |
|
|
/^X\(\/\/\)[^/].*/{
|
887 |
|
|
s//\1/
|
888 |
|
|
q
|
889 |
|
|
}
|
890 |
|
|
/^X\(\/\/\)$/{
|
891 |
|
|
s//\1/
|
892 |
|
|
q
|
893 |
|
|
}
|
894 |
|
|
/^X\(\/\).*/{
|
895 |
|
|
s//\1/
|
896 |
|
|
q
|
897 |
|
|
}
|
898 |
|
|
s/.*/./; q'`/stamp-h$_am_stamp_count
|
899 |
|
|
;;
|
900 |
|
|
|
901 |
|
|
:C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5
|
902 |
|
|
echo "$as_me: executing $ac_file commands" >&6;}
|
903 |
|
|
;;
|
904 |
|
|
esac
|
905 |
|
|
|
906 |
|
|
|
907 |
|
|
case $ac_file$ac_mode in
|
908 |
|
|
"depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
|
909 |
|
|
# Strip MF so we end up with the name of the file.
|
910 |
|
|
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
911 |
|
|
# Check whether this is an Automake generated Makefile or not.
|
912 |
|
|
# We used to match only the files named `Makefile.in', but
|
913 |
|
|
# some people rename them; so instead we look at the file content.
|
914 |
|
|
# Grep'ing the first line is not enough: some people post-process
|
915 |
|
|
# each Makefile.in and add a new line on top of each file to say so.
|
916 |
|
|
# Grep'ing the whole file is not good either: AIX grep has a line
|
917 |
|
|
# limit of 2048, but all sed's we know have understand at least 4000.
|
918 |
|
|
if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
|
919 |
|
|
dirpart=`$as_dirname -- "$mf" ||
|
920 |
|
|
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
921 |
|
|
X"$mf" : 'X\(//\)[^/]' \| \
|
922 |
|
|
X"$mf" : 'X\(//\)$' \| \
|
923 |
|
|
X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
|
924 |
|
|
echo X"$mf" |
|
925 |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
926 |
|
|
s//\1/
|
927 |
|
|
q
|
928 |
|
|
}
|
929 |
|
|
/^X\(\/\/\)[^/].*/{
|
930 |
|
|
s//\1/
|
931 |
|
|
q
|
932 |
|
|
}
|
933 |
|
|
/^X\(\/\/\)$/{
|
934 |
|
|
s//\1/
|
935 |
|
|
q
|
936 |
|
|
}
|
937 |
|
|
/^X\(\/\).*/{
|
938 |
|
|
s//\1/
|
939 |
|
|
q
|
940 |
|
|
}
|
941 |
|
|
s/.*/./; q'`
|
942 |
|
|
else
|
943 |
|
|
continue
|
944 |
|
|
fi
|
945 |
|
|
# Extract the definition of DEPDIR, am__include, and am__quote
|
946 |
|
|
# from the Makefile without running `make'.
|
947 |
|
|
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
948 |
|
|
test -z "$DEPDIR" && continue
|
949 |
|
|
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
950 |
|
|
test -z "am__include" && continue
|
951 |
|
|
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
952 |
|
|
# When using ansi2knr, U may be empty or an underscore; expand it
|
953 |
|
|
U=`sed -n 's/^U = //p' < "$mf"`
|
954 |
|
|
# Find all dependency output files, they are included files with
|
955 |
|
|
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
956 |
|
|
# simplest approach to changing $(DEPDIR) to its actual value in the
|
957 |
|
|
# expansion.
|
958 |
|
|
for file in `sed -n "
|
959 |
|
|
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
960 |
|
|
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
961 |
|
|
# Make sure the directory exists.
|
962 |
|
|
test -f "$dirpart/$file" && continue
|
963 |
|
|
fdir=`$as_dirname -- "$file" ||
|
964 |
|
|
$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
965 |
|
|
X"$file" : 'X\(//\)[^/]' \| \
|
966 |
|
|
X"$file" : 'X\(//\)$' \| \
|
967 |
|
|
X"$file" : 'X\(/\)' \| . 2>/dev/null ||
|
968 |
|
|
echo X"$file" |
|
969 |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
970 |
|
|
s//\1/
|
971 |
|
|
q
|
972 |
|
|
}
|
973 |
|
|
/^X\(\/\/\)[^/].*/{
|
974 |
|
|
s//\1/
|
975 |
|
|
q
|
976 |
|
|
}
|
977 |
|
|
/^X\(\/\/\)$/{
|
978 |
|
|
s//\1/
|
979 |
|
|
q
|
980 |
|
|
}
|
981 |
|
|
/^X\(\/\).*/{
|
982 |
|
|
s//\1/
|
983 |
|
|
q
|
984 |
|
|
}
|
985 |
|
|
s/.*/./; q'`
|
986 |
|
|
{ as_dir=$dirpart/$fdir
|
987 |
|
|
case $as_dir in #(
|
988 |
|
|
-*) as_dir=./$as_dir;;
|
989 |
|
|
esac
|
990 |
|
|
test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
|
991 |
|
|
as_dirs=
|
992 |
|
|
while :; do
|
993 |
|
|
case $as_dir in #(
|
994 |
|
|
*\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
|
995 |
|
|
*) as_qdir=$as_dir;;
|
996 |
|
|
esac
|
997 |
|
|
as_dirs="'$as_qdir' $as_dirs"
|
998 |
|
|
as_dir=`$as_dirname -- "$as_dir" ||
|
999 |
|
|
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
1000 |
|
|
X"$as_dir" : 'X\(//\)[^/]' \| \
|
1001 |
|
|
X"$as_dir" : 'X\(//\)$' \| \
|
1002 |
|
|
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
|
1003 |
|
|
echo X"$as_dir" |
|
1004 |
|
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
1005 |
|
|
s//\1/
|
1006 |
|
|
q
|
1007 |
|
|
}
|
1008 |
|
|
/^X\(\/\/\)[^/].*/{
|
1009 |
|
|
s//\1/
|
1010 |
|
|
q
|
1011 |
|
|
}
|
1012 |
|
|
/^X\(\/\/\)$/{
|
1013 |
|
|
s//\1/
|
1014 |
|
|
q
|
1015 |
|
|
}
|
1016 |
|
|
/^X\(\/\).*/{
|
1017 |
|
|
s//\1/
|
1018 |
|
|
q
|
1019 |
|
|
}
|
1020 |
|
|
s/.*/./; q'`
|
1021 |
|
|
test -d "$as_dir" && break
|
1022 |
|
|
done
|
1023 |
|
|
test -z "$as_dirs" || eval "mkdir $as_dirs"
|
1024 |
|
|
} || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
|
1025 |
|
|
echo "$as_me: error: cannot create directory $as_dir" >&2;}
|
1026 |
|
|
{ (exit 1); exit 1; }; }; }
|
1027 |
|
|
# echo "creating $dirpart/$file"
|
1028 |
|
|
echo '# dummy' > "$dirpart/$file"
|
1029 |
|
|
done
|
1030 |
|
|
done
|
1031 |
|
|
;;
|
1032 |
|
|
|
1033 |
|
|
esac
|
1034 |
|
|
done # for ac_tag
|
1035 |
|
|
|
1036 |
|
|
|
1037 |
|
|
{ (exit 0); exit 0; }
|