config.status 29 KB

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