config.status.orig 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932
  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 -pR'.
  261. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  262. as_ln_s='cp -pR'
  263. elif ln conf$$.file conf$$ 2>/dev/null; then
  264. as_ln_s=ln
  265. else
  266. as_ln_s='cp -pR'
  267. fi
  268. else
  269. as_ln_s='cp -pR'
  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. # as_fn_executable_p FILE
  324. # -----------------------
  325. # Test if FILE is an executable regular file.
  326. as_fn_executable_p ()
  327. {
  328. test -f "$1" && test -x "$1"
  329. } # as_fn_executable_p
  330. as_test_x='test -x'
  331. as_executable_p=as_fn_executable_p
  332. # Sed expression to map a string onto a valid CPP name.
  333. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  334. # Sed expression to map a string onto a valid variable name.
  335. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  336. exec 6>&1
  337. ## ----------------------------------- ##
  338. ## Main body of $CONFIG_STATUS script. ##
  339. ## ----------------------------------- ##
  340. # Save the log message, to keep $0 and so on meaningful, and to
  341. # report actual input values of CONFIG_FILES etc. instead of their
  342. # values after options handling.
  343. ac_log="
  344. This file was extended by OPCUAServer $as_me 1.0, which was
  345. generated by GNU Autoconf 2.69. Invocation command line was
  346. CONFIG_FILES = $CONFIG_FILES
  347. CONFIG_HEADERS = $CONFIG_HEADERS
  348. CONFIG_LINKS = $CONFIG_LINKS
  349. CONFIG_COMMANDS = $CONFIG_COMMANDS
  350. $ $0 $@
  351. on `(hostname || uname -n) 2>/dev/null | sed 1q`
  352. "
  353. # Files that config.status was made for.
  354. config_files=" Makefile src/Makefile tests/Makefile"
  355. config_commands=" depfiles libtool"
  356. ac_cs_usage="\
  357. \`$as_me' instantiates files and other configuration actions
  358. from templates according to the current configuration. Unless the files
  359. and actions are specified as TAGs, all are instantiated by default.
  360. Usage: $0 [OPTION]... [TAG]...
  361. -h, --help print this help, then exit
  362. -V, --version print version number and configuration settings, then exit
  363. --config print configuration, then exit
  364. -q, --quiet, --silent
  365. do not print progress messages
  366. -d, --debug don't remove temporary files
  367. --recheck update $as_me by reconfiguring in the same conditions
  368. --file=FILE[:TEMPLATE]
  369. instantiate the configuration file FILE
  370. Configuration files:
  371. $config_files
  372. Configuration commands:
  373. $config_commands
  374. Report bugs to the package provider."
  375. ac_cs_config=""
  376. ac_cs_version="\
  377. OPCUAServer config.status 1.0
  378. <<<<<<< HEAD
  379. configured by /home/opcua/git/opcUaStack/OPCUAServer/configure, generated by GNU Autoconf 2.68,
  380. =======
  381. configured by ./configure, generated by GNU Autoconf 2.69,
  382. >>>>>>> 49289457ca27800762b7aa81345e3b308f92debd
  383. with options \"$ac_cs_config\"
  384. Copyright (C) 2012 Free Software Foundation, Inc.
  385. This config.status script is free software; the Free Software Foundation
  386. gives unlimited permission to copy, distribute and modify it."
  387. ac_pwd='/home/sten/Desktop/Open62541/OPCUAServer'
  388. srcdir='.'
  389. INSTALL='/usr/bin/install -c'
  390. MKDIR_P='/bin/mkdir -p'
  391. AWK='gawk'
  392. test -n "$AWK" || AWK=awk
  393. # The default lists apply if the user does not specify any file.
  394. ac_need_defaults=:
  395. while test $# != 0
  396. do
  397. case $1 in
  398. --*=?*)
  399. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  400. ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  401. ac_shift=:
  402. ;;
  403. --*=)
  404. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  405. ac_optarg=
  406. ac_shift=:
  407. ;;
  408. *)
  409. ac_option=$1
  410. ac_optarg=$2
  411. ac_shift=shift
  412. ;;
  413. esac
  414. case $ac_option in
  415. # Handling of the options.
  416. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  417. ac_cs_recheck=: ;;
  418. --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  419. $as_echo "$ac_cs_version"; exit ;;
  420. --config | --confi | --conf | --con | --co | --c )
  421. $as_echo "$ac_cs_config"; exit ;;
  422. --debug | --debu | --deb | --de | --d | -d )
  423. debug=: ;;
  424. --file | --fil | --fi | --f )
  425. $ac_shift
  426. case $ac_optarg in
  427. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  428. '') as_fn_error $? "missing file argument" ;;
  429. esac
  430. as_fn_append CONFIG_FILES " '$ac_optarg'"
  431. ac_need_defaults=false;;
  432. --he | --h | --help | --hel | -h )
  433. $as_echo "$ac_cs_usage"; exit ;;
  434. -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  435. | -silent | --silent | --silen | --sile | --sil | --si | --s)
  436. ac_cs_silent=: ;;
  437. # This is an error.
  438. -*) as_fn_error $? "unrecognized option: \`$1'
  439. Try \`$0 --help' for more information." ;;
  440. *) as_fn_append ac_config_targets " $1"
  441. ac_need_defaults=false ;;
  442. esac
  443. shift
  444. done
  445. ac_configure_extra_args=
  446. if $ac_cs_silent; then
  447. exec 6>/dev/null
  448. ac_configure_extra_args="$ac_configure_extra_args --silent"
  449. fi
  450. if $ac_cs_recheck; then
  451. <<<<<<< HEAD
  452. set X '/bin/bash' '/home/opcua/git/opcUaStack/OPCUAServer/configure' $ac_configure_extra_args --no-create --no-recursion
  453. =======
  454. set X /bin/bash './configure' $ac_configure_extra_args --no-create --no-recursion
  455. >>>>>>> 49289457ca27800762b7aa81345e3b308f92debd
  456. shift
  457. $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
  458. CONFIG_SHELL='/bin/bash'
  459. export CONFIG_SHELL
  460. exec "$@"
  461. fi
  462. exec 5>>config.log
  463. {
  464. echo
  465. sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  466. ## Running $as_me. ##
  467. _ASBOX
  468. $as_echo "$ac_log"
  469. } >&5
  470. #
  471. # INIT-COMMANDS
  472. #
  473. AMDEP_TRUE="" ac_aux_dir="."
  474. # The HP-UX ksh and POSIX shell print the target directory to stdout
  475. # if CDPATH is set.
  476. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  477. sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
  478. double_quote_subst='s/\(["`\\]\)/\\\1/g'
  479. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
  480. macro_version='2.4.2'
  481. macro_revision='1.3337'
  482. enable_shared='yes'
  483. enable_static='yes'
  484. pic_mode='default'
  485. enable_fast_install='yes'
  486. SHELL='/bin/bash'
  487. ECHO='printf %s\n'
  488. PATH_SEPARATOR=':'
  489. host_alias=''
  490. host='i686-pc-linux-gnu'
  491. host_os='linux-gnu'
  492. build_alias=''
  493. build='i686-pc-linux-gnu'
  494. build_os='linux-gnu'
  495. SED='/bin/sed'
  496. Xsed='/bin/sed -e 1s/^X//'
  497. GREP='/bin/grep'
  498. EGREP='/bin/grep -E'
  499. FGREP='/bin/grep -F'
  500. LD='/usr/bin/ld'
  501. NM='/usr/bin/nm -B'
  502. LN_S='ln -s'
  503. max_cmd_len='1572864'
  504. ac_objext='o'
  505. exeext=''
  506. lt_unset='unset'
  507. lt_SP2NL='tr \040 \012'
  508. lt_NL2SP='tr \015\012 \040\040'
  509. lt_cv_to_host_file_cmd='func_convert_file_noop'
  510. lt_cv_to_tool_file_cmd='func_convert_file_noop'
  511. reload_flag=' -r'
  512. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  513. OBJDUMP='objdump'
  514. deplibs_check_method='pass_all'
  515. file_magic_cmd='$MAGIC_CMD'
  516. file_magic_glob=''
  517. want_nocaseglob='no'
  518. DLLTOOL='false'
  519. sharedlib_from_linklib_cmd='printf %s\n'
  520. AR='ar'
  521. AR_FLAGS='cru'
  522. archiver_list_spec='@'
  523. STRIP='strip'
  524. RANLIB='ranlib'
  525. old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'
  526. old_postuninstall_cmds=''
  527. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
  528. lock_old_archive_extraction='no'
  529. CC='gcc'
  530. CFLAGS='-g -O2'
  531. compiler='gcc'
  532. GCC='yes'
  533. lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
  534. lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
  535. lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
  536. lt_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'\'''
  537. nm_file_list_spec='@'
  538. lt_sysroot=''
  539. objdir='.libs'
  540. MAGIC_CMD='file'
  541. lt_prog_compiler_no_builtin_flag=' -fno-builtin'
  542. lt_prog_compiler_pic=' -fPIC -DPIC'
  543. lt_prog_compiler_wl='-Wl,'
  544. lt_prog_compiler_static='-static'
  545. lt_cv_prog_compiler_c_o='yes'
  546. need_locks='no'
  547. MANIFEST_TOOL=':'
  548. DSYMUTIL=''
  549. NMEDIT=''
  550. LIPO=''
  551. OTOOL=''
  552. OTOOL64=''
  553. libext='a'
  554. shrext_cmds='.so'
  555. extract_expsyms_cmds=''
  556. archive_cmds_need_lc='no'
  557. enable_shared_with_static_runtimes='no'
  558. export_dynamic_flag_spec='${wl}--export-dynamic'
  559. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  560. compiler_needs_object='no'
  561. old_archive_from_new_cmds=''
  562. old_archive_from_expsyms_cmds=''
  563. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  564. archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
  565. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  566. echo "local: *; };" >> $output_objdir/$libname.ver~
  567. $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  568. module_cmds=''
  569. module_expsym_cmds=''
  570. with_gnu_ld='yes'
  571. allow_undefined_flag=''
  572. no_undefined_flag=''
  573. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  574. hardcode_libdir_separator=''
  575. hardcode_direct='no'
  576. hardcode_direct_absolute='no'
  577. hardcode_minus_L='no'
  578. hardcode_shlibpath_var='unsupported'
  579. hardcode_automatic='no'
  580. inherit_rpath='no'
  581. link_all_deplibs='no'
  582. always_export_symbols='no'
  583. export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  584. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
  585. include_expsyms=''
  586. prelink_cmds=''
  587. postlink_cmds=''
  588. file_list_spec=''
  589. variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
  590. need_lib_prefix='no'
  591. need_version='no'
  592. version_type='linux'
  593. runpath_var='LD_RUN_PATH'
  594. shlibpath_var='LD_LIBRARY_PATH'
  595. shlibpath_overrides_runpath='no'
  596. libname_spec='lib$name'
  597. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  598. soname_spec='${libname}${release}${shared_ext}$major'
  599. install_override_mode=''
  600. postinstall_cmds=''
  601. postuninstall_cmds=''
  602. finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
  603. finish_eval=''
  604. hardcode_into_libs='yes'
  605. sys_lib_search_path_spec='/usr/lib/gcc/i686-linux-gnu/4.8 /usr/lib/i386-linux-gnu /usr/lib /lib/i386-linux-gnu /lib '
  606. sys_lib_dlsearch_path_spec='/lib /usr/lib /usr/lib/i386-linux-gnu/mesa-egl /usr/lib/i386-linux-gnu/mesa /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/local/lib '
  607. hardcode_action='immediate'
  608. enable_dlopen='unknown'
  609. enable_dlopen_self='unknown'
  610. enable_dlopen_self_static='unknown'
  611. old_striplib='strip --strip-debug'
  612. striplib='strip --strip-unneeded'
  613. LTCC='gcc'
  614. LTCFLAGS='-g -O2'
  615. compiler='gcc'
  616. # A function that is used when there is no print builtin or printf.
  617. func_fallback_echo ()
  618. {
  619. eval 'cat <<_LTECHO_EOF
  620. $1
  621. _LTECHO_EOF'
  622. }
  623. # Quote evaled strings.
  624. for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec 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 nm_file_list_spec lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL 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_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do
  625. case `eval \\$ECHO \\""\\$$var"\\"` in
  626. *[\\\`\"\$]*)
  627. eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\""
  628. ;;
  629. *)
  630. eval "lt_$var=\\\"\$$var\\\""
  631. ;;
  632. esac
  633. done
  634. # Double-quote double-evaled strings.
  635. for 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 postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec; do
  636. case `eval \\$ECHO \\""\\$$var"\\"` in
  637. *[\\\`\"\$]*)
  638. eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
  639. ;;
  640. *)
  641. eval "lt_$var=\\\"\$$var\\\""
  642. ;;
  643. esac
  644. done
  645. ac_aux_dir='.'
  646. xsi_shell='yes'
  647. lt_shell_append='yes'
  648. # See if we are running on zsh, and set the options which allow our
  649. # commands through without removal of \ escapes INIT.
  650. if test -n "${ZSH_VERSION+set}" ; then
  651. setopt NO_GLOB_SUBST
  652. fi
  653. PACKAGE='opcuaserver'
  654. VERSION='1.0'
  655. TIMESTAMP=''
  656. RM='rm -f'
  657. ofile='libtool'
  658. # Handling of arguments.
  659. for ac_config_target in $ac_config_targets
  660. do
  661. case $ac_config_target in
  662. "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
  663. "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
  664. "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  665. "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
  666. "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
  667. *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
  668. esac
  669. done
  670. # If the user did not use the arguments to specify the items to instantiate,
  671. # then the envvar interface is used. Set only those that are not.
  672. # We use the long form for the default assignment because of an extremely
  673. # bizarre bug on SunOS 4.1.3.
  674. if $ac_need_defaults; then
  675. test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  676. test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  677. fi
  678. # Have a temporary directory for convenience. Make it in the build tree
  679. # simply because there is no reason against having it here, and in addition,
  680. # creating and moving files from /tmp can sometimes cause problems.
  681. # Hook for its removal unless debugging.
  682. # Note that there is a small window in which the directory will not be cleaned:
  683. # after its creation but before its name has been assigned to `$tmp'.
  684. $debug ||
  685. {
  686. tmp= ac_tmp=
  687. trap 'exit_status=$?
  688. : "${ac_tmp:=$tmp}"
  689. { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
  690. ' 0
  691. trap 'as_fn_exit 1' 1 2 13 15
  692. }
  693. # Create a (secure) tmp directory for tmp files.
  694. {
  695. tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  696. test -d "$tmp"
  697. } ||
  698. {
  699. tmp=./conf$$-$RANDOM
  700. (umask 077 && mkdir "$tmp")
  701. } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
  702. ac_tmp=$tmp
  703. # Set up the scripts for CONFIG_FILES section.
  704. # No need to generate them if there are no CONFIG_FILES.
  705. # This happens for instance with `./config.status config.h'.
  706. if test -n "$CONFIG_FILES"; then
  707. ac_cr=`echo X | tr X '\015'`
  708. # On cygwin, bash can eat \r inside `` if the user requested igncr.
  709. # But we know of no other shell where ac_cr would be empty at this
  710. # point, so we can use a bashism as a fallback.
  711. if test "x$ac_cr" = x; then
  712. eval ac_cr=\$\'\\r\'
  713. fi
  714. ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  715. if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  716. ac_cs_awk_cr='\\r'
  717. else
  718. ac_cs_awk_cr=$ac_cr
  719. fi
  720. echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
  721. cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
  722. S["am__EXEEXT_FALSE"]=""
  723. S["am__EXEEXT_TRUE"]="#"
  724. S["LTLIBOBJS"]=""
  725. S["LIBOBJS"]=""
  726. S["CPP"]="gcc -E"
  727. S["OTOOL64"]=""
  728. S["OTOOL"]=""
  729. S["LIPO"]=""
  730. S["NMEDIT"]=""
  731. S["DSYMUTIL"]=""
  732. S["MANIFEST_TOOL"]=":"
  733. S["RANLIB"]="ranlib"
  734. S["ac_ct_AR"]="ar"
  735. S["AR"]="ar"
  736. S["DLLTOOL"]="false"
  737. S["OBJDUMP"]="objdump"
  738. S["LN_S"]="ln -s"
  739. S["NM"]="/usr/bin/nm -B"
  740. S["ac_ct_DUMPBIN"]=""
  741. S["DUMPBIN"]=""
  742. S["LD"]="/usr/bin/ld"
  743. S["FGREP"]="/bin/grep -F"
  744. S["EGREP"]="/bin/grep -E"
  745. S["GREP"]="/bin/grep"
  746. S["SED"]="/bin/sed"
  747. S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
  748. S["HAVE_CHECK_FALSE"]="#"
  749. S["HAVE_CHECK_TRUE"]=""
  750. S["CHECK_LIBS"]="-lcheck_pic -lrt -lm "
  751. S["CHECK_CFLAGS"]="-pthread "
  752. S["PKG_CONFIG_LIBDIR"]=""
  753. S["PKG_CONFIG_PATH"]=""
  754. S["PKG_CONFIG"]="/usr/bin/pkg-config"
  755. S["am__fastdepCC_FALSE"]="#"
  756. S["am__fastdepCC_TRUE"]=""
  757. S["CCDEPMODE"]="depmode=gcc3"
  758. S["am__nodep"]="_no"
  759. S["AMDEPBACKSLASH"]="\\"
  760. S["AMDEP_FALSE"]="#"
  761. S["AMDEP_TRUE"]=""
  762. S["am__quote"]=""
  763. S["am__include"]="include"
  764. S["DEPDIR"]=".deps"
  765. S["OBJEXT"]="o"
  766. S["EXEEXT"]=""
  767. S["ac_ct_CC"]="gcc"
  768. S["CPPFLAGS"]=""
  769. S["LDFLAGS"]=""
  770. S["CFLAGS"]="-g -O2"
  771. S["CC"]="gcc"
  772. S["AM_BACKSLASH"]="\\"
  773. S["AM_DEFAULT_VERBOSITY"]="1"
  774. S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)"
  775. S["AM_V"]="$(V)"
  776. S["am__untar"]="$${TAR-tar} xf -"
  777. S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
  778. S["AMTAR"]="$${TAR-tar}"
  779. S["am__leading_dot"]="."
  780. S["SET_MAKE"]=""
  781. S["AWK"]="gawk"
  782. S["mkdir_p"]="$(MKDIR_P)"
  783. S["MKDIR_P"]="/bin/mkdir -p"
  784. S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
  785. S["STRIP"]="strip"
  786. S["install_sh"]="${SHELL} /home/sten/Desktop/Open62541/OPCUAServer/install-sh"
  787. S["MAKEINFO"]="${SHELL} /home/sten/Desktop/Open62541/OPCUAServer/missing makeinfo"
  788. S["AUTOHEADER"]="${SHELL} /home/sten/Desktop/Open62541/OPCUAServer/missing autoheader"
  789. S["AUTOMAKE"]="${SHELL} /home/sten/Desktop/Open62541/OPCUAServer/missing automake-1.13"
  790. S["AUTOCONF"]="${SHELL} /home/sten/Desktop/Open62541/OPCUAServer/missing autoconf"
  791. S["ACLOCAL"]="${SHELL} /home/sten/Desktop/Open62541/OPCUAServer/missing aclocal-1.13"
  792. S["VERSION"]="1.0"
  793. S["PACKAGE"]="opcuaserver"
  794. S["CYGPATH_W"]="echo"
  795. S["am__isrc"]=""
  796. S["INSTALL_DATA"]="${INSTALL} -m 644"
  797. S["INSTALL_SCRIPT"]="${INSTALL}"
  798. S["INSTALL_PROGRAM"]="${INSTALL}"
  799. S["target_os"]="linux-gnu"
  800. S["target_vendor"]="pc"
  801. S["target_cpu"]="i686"
  802. S["target"]="i686-pc-linux-gnu"
  803. S["host_os"]="linux-gnu"
  804. S["host_vendor"]="pc"
  805. S["host_cpu"]="i686"
  806. S["host"]="i686-pc-linux-gnu"
  807. S["build_os"]="linux-gnu"
  808. S["build_vendor"]="pc"
  809. S["build_cpu"]="i686"
  810. S["build"]="i686-pc-linux-gnu"
  811. S["target_alias"]=""
  812. S["host_alias"]=""
  813. S["build_alias"]=""
  814. S["LIBS"]="-lm "
  815. S["ECHO_T"]=""
  816. S["ECHO_N"]="-n"
  817. S["ECHO_C"]=""
  818. S["DEFS"]="-DPACKAGE_NAME=\\\"OPCUAServer\\\" -DPACKAGE_TARNAME=\\\"opcuaserver\\\" -DPACKAGE_VERSION=\\\"1.0\\\" -DPACKAGE_STRING=\\\"OPCUAServer\\ 1.0\\\" -DPACKAGE_BUGREPORT"\
  819. "=\\\"\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"opcuaserver\\\" -DVERSION=\\\"1.0\\\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_"\
  820. "STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJD"\
  821. "IR=\\\".libs/\\\""
  822. S["mandir"]="${datarootdir}/man"
  823. S["localedir"]="${datarootdir}/locale"
  824. S["libdir"]="${exec_prefix}/lib"
  825. S["psdir"]="${docdir}"
  826. S["pdfdir"]="${docdir}"
  827. S["dvidir"]="${docdir}"
  828. S["htmldir"]="${docdir}"
  829. S["infodir"]="${datarootdir}/info"
  830. S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
  831. S["oldincludedir"]="/usr/include"
  832. S["includedir"]="${prefix}/include"
  833. S["localstatedir"]="${prefix}/var"
  834. S["sharedstatedir"]="${prefix}/com"
  835. S["sysconfdir"]="${prefix}/etc"
  836. S["datadir"]="${datarootdir}"
  837. S["datarootdir"]="${prefix}/share"
  838. S["libexecdir"]="${exec_prefix}/libexec"
  839. S["sbindir"]="${exec_prefix}/sbin"
  840. S["bindir"]="${exec_prefix}/bin"
  841. S["program_transform_name"]="s,x,x,"
  842. S["prefix"]="/usr/local"
  843. S["exec_prefix"]="${prefix}"
  844. S["PACKAGE_URL"]=""
  845. S["PACKAGE_BUGREPORT"]=""
  846. S["PACKAGE_STRING"]="OPCUAServer 1.0"
  847. S["PACKAGE_VERSION"]="1.0"
  848. S["PACKAGE_TARNAME"]="opcuaserver"
  849. S["PACKAGE_NAME"]="OPCUAServer"
  850. S["PATH_SEPARATOR"]=":"
  851. S["SHELL"]="/bin/bash"
  852. _ACAWK
  853. cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
  854. for (key in S) S_is_set[key] = 1
  855. FS = ""
  856. }
  857. {
  858. line = $ 0
  859. nfields = split(line, field, "@")
  860. substed = 0
  861. len = length(field[1])
  862. for (i = 2; i < nfields; i++) {
  863. key = field[i]
  864. keylen = length(key)
  865. if (S_is_set[key]) {
  866. value = S[key]
  867. line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  868. len += length(value) + length(field[++i])
  869. substed = 1
  870. } else
  871. len += 1 + keylen
  872. }
  873. print line
  874. }
  875. _ACAWK
  876. if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  877. sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  878. else
  879. cat
  880. fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
  881. || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
  882. fi # test -n "$CONFIG_FILES"
  883. eval set X " :F $CONFIG_FILES :C $CONFIG_COMMANDS"
  884. shift
  885. for ac_tag
  886. do
  887. case $ac_tag in
  888. :[FHLC]) ac_mode=$ac_tag; continue;;
  889. esac
  890. case $ac_mode$ac_tag in
  891. :[FHL]*:*);;
  892. :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
  893. :[FH]-) ac_tag=-:-;;
  894. :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  895. esac
  896. ac_save_IFS=$IFS
  897. IFS=:
  898. set x $ac_tag
  899. IFS=$ac_save_IFS
  900. shift
  901. ac_file=$1
  902. shift
  903. case $ac_mode in
  904. :L) ac_source=$1;;
  905. :[FH])
  906. ac_file_inputs=
  907. for ac_f
  908. do
  909. case $ac_f in
  910. -) ac_f="$ac_tmp/stdin";;
  911. *) # Look for the file first in the build tree, then in the source tree
  912. # (if the path is not absolute). The absolute path cannot be DOS-style,
  913. # because $ac_f cannot contain `:'.
  914. test -f "$ac_f" ||
  915. case $ac_f in
  916. [\\/$]*) false;;
  917. *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  918. esac ||
  919. as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
  920. esac
  921. case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  922. as_fn_append ac_file_inputs " '$ac_f'"
  923. done
  924. # Let's still pretend it is `configure' which instantiates (i.e., don't
  925. # use $as_me), people would be surprised to read:
  926. # /* config.h. Generated by config.status. */
  927. configure_input='Generated from '`
  928. $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  929. `' by configure.'
  930. if test x"$ac_file" != x-; then
  931. configure_input="$ac_file. $configure_input"
  932. { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
  933. $as_echo "$as_me: creating $ac_file" >&6;}
  934. fi
  935. # Neutralize special characters interpreted by sed in replacement strings.
  936. case $configure_input in #(
  937. *\&* | *\|* | *\\* )
  938. ac_sed_conf_input=`$as_echo "$configure_input" |
  939. sed 's/[\\\\&|]/\\\\&/g'`;; #(
  940. *) ac_sed_conf_input=$configure_input;;
  941. esac
  942. case $ac_tag in
  943. *:-:* | *:-) cat >"$ac_tmp/stdin" \
  944. || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
  945. esac
  946. ;;
  947. esac
  948. ac_dir=`$as_dirname -- "$ac_file" ||
  949. $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  950. X"$ac_file" : 'X\(//\)[^/]' \| \
  951. X"$ac_file" : 'X\(//\)$' \| \
  952. X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
  953. $as_echo X"$ac_file" |
  954. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  955. s//\1/
  956. q
  957. }
  958. /^X\(\/\/\)[^/].*/{
  959. s//\1/
  960. q
  961. }
  962. /^X\(\/\/\)$/{
  963. s//\1/
  964. q
  965. }
  966. /^X\(\/\).*/{
  967. s//\1/
  968. q
  969. }
  970. s/.*/./; q'`
  971. as_dir="$ac_dir"; as_fn_mkdir_p
  972. ac_builddir=.
  973. case "$ac_dir" in
  974. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  975. *)
  976. ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  977. # A ".." for each directory in $ac_dir_suffix.
  978. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  979. case $ac_top_builddir_sub in
  980. "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  981. *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  982. esac ;;
  983. esac
  984. ac_abs_top_builddir=$ac_pwd
  985. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  986. # for backward compatibility:
  987. ac_top_builddir=$ac_top_build_prefix
  988. case $srcdir in
  989. .) # We are building in place.
  990. ac_srcdir=.
  991. ac_top_srcdir=$ac_top_builddir_sub
  992. ac_abs_top_srcdir=$ac_pwd ;;
  993. [\\/]* | ?:[\\/]* ) # Absolute name.
  994. ac_srcdir=$srcdir$ac_dir_suffix;
  995. ac_top_srcdir=$srcdir
  996. ac_abs_top_srcdir=$srcdir ;;
  997. *) # Relative name.
  998. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  999. ac_top_srcdir=$ac_top_build_prefix$srcdir
  1000. ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  1001. esac
  1002. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  1003. case $ac_mode in
  1004. :F)
  1005. #
  1006. # CONFIG_FILE
  1007. #
  1008. case $INSTALL in
  1009. [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
  1010. *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  1011. esac
  1012. ac_MKDIR_P=$MKDIR_P
  1013. case $MKDIR_P in
  1014. [\\/$]* | ?:[\\/]* ) ;;
  1015. */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
  1016. esac
  1017. # If the template does not know about datarootdir, expand it.
  1018. # FIXME: This hack should be removed a few years after 2.60.
  1019. ac_datarootdir_hack=; ac_datarootdir_seen=
  1020. ac_sed_dataroot='
  1021. /datarootdir/ {
  1022. p
  1023. q
  1024. }
  1025. /@datadir@/p
  1026. /@docdir@/p
  1027. /@infodir@/p
  1028. /@localedir@/p
  1029. /@mandir@/p'
  1030. case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
  1031. *datarootdir*) ac_datarootdir_seen=yes;;
  1032. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  1033. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  1034. $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  1035. ac_datarootdir_hack='
  1036. s&@datadir@&${datarootdir}&g
  1037. s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
  1038. s&@infodir@&${datarootdir}/info&g
  1039. s&@localedir@&${datarootdir}/locale&g
  1040. s&@mandir@&${datarootdir}/man&g
  1041. s&\${datarootdir}&${prefix}/share&g' ;;
  1042. esac
  1043. ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
  1044. h
  1045. s///
  1046. s/^/:/
  1047. s/[ ]*$/:/
  1048. s/:\$(srcdir):/:/g
  1049. s/:\${srcdir}:/:/g
  1050. s/:@srcdir@:/:/g
  1051. s/^:*//
  1052. s/:*$//
  1053. x
  1054. s/\(=[ ]*\).*/\1/
  1055. G
  1056. s/\n//
  1057. s/^[^=]*=[ ]*$//
  1058. }
  1059. :t
  1060. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  1061. s|@configure_input@|$ac_sed_conf_input|;t t
  1062. s&@top_builddir@&$ac_top_builddir_sub&;t t
  1063. s&@top_build_prefix@&$ac_top_build_prefix&;t t
  1064. s&@srcdir@&$ac_srcdir&;t t
  1065. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  1066. s&@top_srcdir@&$ac_top_srcdir&;t t
  1067. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  1068. s&@builddir@&$ac_builddir&;t t
  1069. s&@abs_builddir@&$ac_abs_builddir&;t t
  1070. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  1071. s&@INSTALL@&$ac_INSTALL&;t t
  1072. s&@MKDIR_P@&$ac_MKDIR_P&;t t
  1073. $ac_datarootdir_hack
  1074. "
  1075. eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
  1076. >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1077. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  1078. { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
  1079. { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
  1080. "$ac_tmp/out"`; test -z "$ac_out"; } &&
  1081. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1082. which seems to be undefined. Please make sure it is defined" >&5
  1083. $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1084. which seems to be undefined. Please make sure it is defined" >&2;}
  1085. rm -f "$ac_tmp/stdin"
  1086. case $ac_file in
  1087. -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
  1088. *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
  1089. esac \
  1090. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1091. ;;
  1092. :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
  1093. $as_echo "$as_me: executing $ac_file commands" >&6;}
  1094. ;;
  1095. esac
  1096. case $ac_file$ac_mode in
  1097. "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
  1098. # Older Autoconf quotes --file arguments for eval, but not when files
  1099. # are listed without --file. Let's play safe and only enable the eval
  1100. # if we detect the quoting.
  1101. case $CONFIG_FILES in
  1102. *\'*) eval set x "$CONFIG_FILES" ;;
  1103. *) set x $CONFIG_FILES ;;
  1104. esac
  1105. shift
  1106. for mf
  1107. do
  1108. # Strip MF so we end up with the name of the file.
  1109. mf=`echo "$mf" | sed -e 's/:.*$//'`
  1110. # Check whether this is an Automake generated Makefile or not.
  1111. # We used to match only the files named 'Makefile.in', but
  1112. # some people rename them; so instead we look at the file content.
  1113. # Grep'ing the first line is not enough: some people post-process
  1114. # each Makefile.in and add a new line on top of each file to say so.
  1115. # Grep'ing the whole file is not good either: AIX grep has a line
  1116. # limit of 2048, but all sed's we know have understand at least 4000.
  1117. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  1118. dirpart=`$as_dirname -- "$mf" ||
  1119. $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1120. X"$mf" : 'X\(//\)[^/]' \| \
  1121. X"$mf" : 'X\(//\)$' \| \
  1122. X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
  1123. $as_echo X"$mf" |
  1124. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1125. s//\1/
  1126. q
  1127. }
  1128. /^X\(\/\/\)[^/].*/{
  1129. s//\1/
  1130. q
  1131. }
  1132. /^X\(\/\/\)$/{
  1133. s//\1/
  1134. q
  1135. }
  1136. /^X\(\/\).*/{
  1137. s//\1/
  1138. q
  1139. }
  1140. s/.*/./; q'`
  1141. else
  1142. continue
  1143. fi
  1144. # Extract the definition of DEPDIR, am__include, and am__quote
  1145. # from the Makefile without running 'make'.
  1146. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  1147. test -z "$DEPDIR" && continue
  1148. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  1149. test -z "$am__include" && continue
  1150. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  1151. # Find all dependency output files, they are included files with
  1152. # $(DEPDIR) in their names. We invoke sed twice because it is the
  1153. # simplest approach to changing $(DEPDIR) to its actual value in the
  1154. # expansion.
  1155. for file in `sed -n "
  1156. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  1157. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
  1158. # Make sure the directory exists.
  1159. test -f "$dirpart/$file" && continue
  1160. fdir=`$as_dirname -- "$file" ||
  1161. $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1162. X"$file" : 'X\(//\)[^/]' \| \
  1163. X"$file" : 'X\(//\)$' \| \
  1164. X"$file" : 'X\(/\)' \| . 2>/dev/null ||
  1165. $as_echo X"$file" |
  1166. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1167. s//\1/
  1168. q
  1169. }
  1170. /^X\(\/\/\)[^/].*/{
  1171. s//\1/
  1172. q
  1173. }
  1174. /^X\(\/\/\)$/{
  1175. s//\1/
  1176. q
  1177. }
  1178. /^X\(\/\).*/{
  1179. s//\1/
  1180. q
  1181. }
  1182. s/.*/./; q'`
  1183. as_dir=$dirpart/$fdir; as_fn_mkdir_p
  1184. # echo "creating $dirpart/$file"
  1185. echo '# dummy' > "$dirpart/$file"
  1186. done
  1187. done
  1188. }
  1189. ;;
  1190. "libtool":C)
  1191. # See if we are running on zsh, and set the options which allow our
  1192. # commands through without removal of \ escapes.
  1193. if test -n "${ZSH_VERSION+set}" ; then
  1194. setopt NO_GLOB_SUBST
  1195. fi
  1196. cfgfile="${ofile}T"
  1197. trap "$RM \"$cfgfile\"; exit 1" 1 2 15
  1198. $RM "$cfgfile"
  1199. cat <<_LT_EOF >> "$cfgfile"
  1200. #! $SHELL
  1201. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  1202. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  1203. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1204. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  1205. #
  1206. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  1207. # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
  1208. # Foundation, Inc.
  1209. # Written by Gordon Matzigkeit, 1996
  1210. #
  1211. # This file is part of GNU Libtool.
  1212. #
  1213. # GNU Libtool is free software; you can redistribute it and/or
  1214. # modify it under the terms of the GNU General Public License as
  1215. # published by the Free Software Foundation; either version 2 of
  1216. # the License, or (at your option) any later version.
  1217. #
  1218. # As a special exception to the GNU General Public License,
  1219. # if you distribute this file as part of a program or library that
  1220. # is built using GNU Libtool, you may include this file under the
  1221. # same distribution terms that you use for the rest of that program.
  1222. #
  1223. # GNU Libtool is distributed in the hope that it will be useful,
  1224. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  1225. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1226. # GNU General Public License for more details.
  1227. #
  1228. # You should have received a copy of the GNU General Public License
  1229. # along with GNU Libtool; see the file COPYING. If not, a copy
  1230. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  1231. # obtained by writing to the Free Software Foundation, Inc.,
  1232. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  1233. # The names of the tagged configurations supported by this script.
  1234. available_tags=""
  1235. # ### BEGIN LIBTOOL CONFIG
  1236. # Which release of libtool.m4 was used?
  1237. macro_version=$macro_version
  1238. macro_revision=$macro_revision
  1239. # Whether or not to build shared libraries.
  1240. build_libtool_libs=$enable_shared
  1241. # Whether or not to build static libraries.
  1242. build_old_libs=$enable_static
  1243. # What type of objects to build.
  1244. pic_mode=$pic_mode
  1245. # Whether or not to optimize for fast installation.
  1246. fast_install=$enable_fast_install
  1247. # Shell to use when invoking shell scripts.
  1248. SHELL=$lt_SHELL
  1249. # An echo program that protects backslashes.
  1250. ECHO=$lt_ECHO
  1251. # The PATH separator for the build system.
  1252. PATH_SEPARATOR=$lt_PATH_SEPARATOR
  1253. # The host system.
  1254. host_alias=$host_alias
  1255. host=$host
  1256. host_os=$host_os
  1257. # The build system.
  1258. build_alias=$build_alias
  1259. build=$build
  1260. build_os=$build_os
  1261. # A sed program that does not truncate output.
  1262. SED=$lt_SED
  1263. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  1264. Xsed="\$SED -e 1s/^X//"
  1265. # A grep program that handles long lines.
  1266. GREP=$lt_GREP
  1267. # An ERE matcher.
  1268. EGREP=$lt_EGREP
  1269. # A literal string matcher.
  1270. FGREP=$lt_FGREP
  1271. # A BSD- or MS-compatible name lister.
  1272. NM=$lt_NM
  1273. # Whether we need soft or hard links.
  1274. LN_S=$lt_LN_S
  1275. # What is the maximum length of a command?
  1276. max_cmd_len=$max_cmd_len
  1277. # Object file suffix (normally "o").
  1278. objext=$ac_objext
  1279. # Executable file suffix (normally "").
  1280. exeext=$exeext
  1281. # whether the shell understands "unset".
  1282. lt_unset=$lt_unset
  1283. # turn spaces into newlines.
  1284. SP2NL=$lt_lt_SP2NL
  1285. # turn newlines into spaces.
  1286. NL2SP=$lt_lt_NL2SP
  1287. # convert \$build file names to \$host format.
  1288. to_host_file_cmd=$lt_cv_to_host_file_cmd
  1289. # convert \$build files to toolchain format.
  1290. to_tool_file_cmd=$lt_cv_to_tool_file_cmd
  1291. # An object symbol dumper.
  1292. OBJDUMP=$lt_OBJDUMP
  1293. # Method to check whether dependent libraries are shared objects.
  1294. deplibs_check_method=$lt_deplibs_check_method
  1295. # Command to use when deplibs_check_method = "file_magic".
  1296. file_magic_cmd=$lt_file_magic_cmd
  1297. # How to find potential files when deplibs_check_method = "file_magic".
  1298. file_magic_glob=$lt_file_magic_glob
  1299. # Find potential files using nocaseglob when deplibs_check_method = "file_magic".
  1300. want_nocaseglob=$lt_want_nocaseglob
  1301. # DLL creation program.
  1302. DLLTOOL=$lt_DLLTOOL
  1303. # Command to associate shared and link libraries.
  1304. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
  1305. # The archiver.
  1306. AR=$lt_AR
  1307. # Flags to create an archive.
  1308. AR_FLAGS=$lt_AR_FLAGS
  1309. # How to feed a file listing to the archiver.
  1310. archiver_list_spec=$lt_archiver_list_spec
  1311. # A symbol stripping program.
  1312. STRIP=$lt_STRIP
  1313. # Commands used to install an old-style archive.
  1314. RANLIB=$lt_RANLIB
  1315. old_postinstall_cmds=$lt_old_postinstall_cmds
  1316. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  1317. # Whether to use a lock for old archive extraction.
  1318. lock_old_archive_extraction=$lock_old_archive_extraction
  1319. # A C compiler.
  1320. LTCC=$lt_CC
  1321. # LTCC compiler flags.
  1322. LTCFLAGS=$lt_CFLAGS
  1323. # Take the output of nm and produce a listing of raw symbols and C names.
  1324. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  1325. # Transform the output of nm in a proper C declaration.
  1326. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  1327. # Transform the output of nm in a C name address pair.
  1328. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  1329. # Transform the output of nm in a C name address pair when lib prefix is needed.
  1330. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
  1331. # Specify filename containing input files for \$NM.
  1332. nm_file_list_spec=$lt_nm_file_list_spec
  1333. # The root where to search for dependent libraries,and in which our libraries should be installed.
  1334. lt_sysroot=$lt_sysroot
  1335. # The name of the directory that contains temporary libtool files.
  1336. objdir=$objdir
  1337. # Used to examine libraries when file_magic_cmd begins with "file".
  1338. MAGIC_CMD=$MAGIC_CMD
  1339. # Must we lock files when doing compilation?
  1340. need_locks=$lt_need_locks
  1341. # Manifest tool.
  1342. MANIFEST_TOOL=$lt_MANIFEST_TOOL
  1343. # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
  1344. DSYMUTIL=$lt_DSYMUTIL
  1345. # Tool to change global to local symbols on Mac OS X.
  1346. NMEDIT=$lt_NMEDIT
  1347. # Tool to manipulate fat objects and archives on Mac OS X.
  1348. LIPO=$lt_LIPO
  1349. # ldd/readelf like tool for Mach-O binaries on Mac OS X.
  1350. OTOOL=$lt_OTOOL
  1351. # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
  1352. OTOOL64=$lt_OTOOL64
  1353. # Old archive suffix (normally "a").
  1354. libext=$libext
  1355. # Shared library suffix (normally ".so").
  1356. shrext_cmds=$lt_shrext_cmds
  1357. # The commands to extract the exported symbol list from a shared archive.
  1358. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  1359. # Variables whose values should be saved in libtool wrapper scripts and
  1360. # restored at link time.
  1361. variables_saved_for_relink=$lt_variables_saved_for_relink
  1362. # Do we need the "lib" prefix for modules?
  1363. need_lib_prefix=$need_lib_prefix
  1364. # Do we need a version for libraries?
  1365. need_version=$need_version
  1366. # Library versioning type.
  1367. version_type=$version_type
  1368. # Shared library runtime path variable.
  1369. runpath_var=$runpath_var
  1370. # Shared library path variable.
  1371. shlibpath_var=$shlibpath_var
  1372. # Is shlibpath searched before the hard-coded library search path?
  1373. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  1374. # Format of library name prefix.
  1375. libname_spec=$lt_libname_spec
  1376. # List of archive names. First name is the real one, the rest are links.
  1377. # The last name is the one that the linker finds with -lNAME
  1378. library_names_spec=$lt_library_names_spec
  1379. # The coded name of the library, if different from the real name.
  1380. soname_spec=$lt_soname_spec
  1381. # Permission mode override for installation of shared libraries.
  1382. install_override_mode=$lt_install_override_mode
  1383. # Command to use after installation of a shared archive.
  1384. postinstall_cmds=$lt_postinstall_cmds
  1385. # Command to use after uninstallation of a shared archive.
  1386. postuninstall_cmds=$lt_postuninstall_cmds
  1387. # Commands used to finish a libtool library installation in a directory.
  1388. finish_cmds=$lt_finish_cmds
  1389. # As "finish_cmds", except a single script fragment to be evaled but
  1390. # not shown.
  1391. finish_eval=$lt_finish_eval
  1392. # Whether we should hardcode library paths into libraries.
  1393. hardcode_into_libs=$hardcode_into_libs
  1394. # Compile-time system search path for libraries.
  1395. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  1396. # Run-time system search path for libraries.
  1397. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  1398. # Whether dlopen is supported.
  1399. dlopen_support=$enable_dlopen
  1400. # Whether dlopen of programs is supported.
  1401. dlopen_self=$enable_dlopen_self
  1402. # Whether dlopen of statically linked programs is supported.
  1403. dlopen_self_static=$enable_dlopen_self_static
  1404. # Commands to strip libraries.
  1405. old_striplib=$lt_old_striplib
  1406. striplib=$lt_striplib
  1407. # The linker used to build libraries.
  1408. LD=$lt_LD
  1409. # How to create reloadable object files.
  1410. reload_flag=$lt_reload_flag
  1411. reload_cmds=$lt_reload_cmds
  1412. # Commands used to build an old-style archive.
  1413. old_archive_cmds=$lt_old_archive_cmds
  1414. # A language specific compiler.
  1415. CC=$lt_compiler
  1416. # Is the compiler the GNU compiler?
  1417. with_gcc=$GCC
  1418. # Compiler flag to turn off builtin functions.
  1419. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
  1420. # Additional compiler flags for building library objects.
  1421. pic_flag=$lt_lt_prog_compiler_pic
  1422. # How to pass a linker flag through the compiler.
  1423. wl=$lt_lt_prog_compiler_wl
  1424. # Compiler flag to prevent dynamic linking.
  1425. link_static_flag=$lt_lt_prog_compiler_static
  1426. # Does compiler simultaneously support -c and -o options?
  1427. compiler_c_o=$lt_lt_cv_prog_compiler_c_o
  1428. # Whether or not to add -lc for building shared libraries.
  1429. build_libtool_need_lc=$archive_cmds_need_lc
  1430. # Whether or not to disallow shared libs when runtime libs are static.
  1431. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
  1432. # Compiler flag to allow reflexive dlopens.
  1433. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
  1434. # Compiler flag to generate shared objects directly from archives.
  1435. whole_archive_flag_spec=$lt_whole_archive_flag_spec
  1436. # Whether the compiler copes with passing no objects directly.
  1437. compiler_needs_object=$lt_compiler_needs_object
  1438. # Create an old-style archive from a shared archive.
  1439. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
  1440. # Create a temporary old-style archive to link instead of a shared archive.
  1441. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
  1442. # Commands used to build a shared archive.
  1443. archive_cmds=$lt_archive_cmds
  1444. archive_expsym_cmds=$lt_archive_expsym_cmds
  1445. # Commands used to build a loadable module if different from building
  1446. # a shared archive.
  1447. module_cmds=$lt_module_cmds
  1448. module_expsym_cmds=$lt_module_expsym_cmds
  1449. # Whether we are building with GNU ld or not.
  1450. with_gnu_ld=$lt_with_gnu_ld
  1451. # Flag that allows shared libraries with undefined symbols to be built.
  1452. allow_undefined_flag=$lt_allow_undefined_flag
  1453. # Flag that enforces no undefined symbols.
  1454. no_undefined_flag=$lt_no_undefined_flag
  1455. # Flag to hardcode \$libdir into a binary during linking.
  1456. # This must work even if \$libdir does not exist
  1457. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
  1458. # Whether we need a single "-rpath" flag with a separated argument.
  1459. hardcode_libdir_separator=$lt_hardcode_libdir_separator
  1460. # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
  1461. # DIR into the resulting binary.
  1462. hardcode_direct=$hardcode_direct
  1463. # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
  1464. # DIR into the resulting binary and the resulting library dependency is
  1465. # "absolute",i.e impossible to change by setting \${shlibpath_var} if the
  1466. # library is relocated.
  1467. hardcode_direct_absolute=$hardcode_direct_absolute
  1468. # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  1469. # into the resulting binary.
  1470. hardcode_minus_L=$hardcode_minus_L
  1471. # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  1472. # into the resulting binary.
  1473. hardcode_shlibpath_var=$hardcode_shlibpath_var
  1474. # Set to "yes" if building a shared library automatically hardcodes DIR
  1475. # into the library and all subsequent libraries and executables linked
  1476. # against it.
  1477. hardcode_automatic=$hardcode_automatic
  1478. # Set to yes if linker adds runtime paths of dependent libraries
  1479. # to runtime path list.
  1480. inherit_rpath=$inherit_rpath
  1481. # Whether libtool must link a program against all its dependency libraries.
  1482. link_all_deplibs=$link_all_deplibs
  1483. # Set to "yes" if exported symbols are required.
  1484. always_export_symbols=$always_export_symbols
  1485. # The commands to list exported symbols.
  1486. export_symbols_cmds=$lt_export_symbols_cmds
  1487. # Symbols that should not be listed in the preloaded symbols.
  1488. exclude_expsyms=$lt_exclude_expsyms
  1489. # Symbols that must always be exported.
  1490. include_expsyms=$lt_include_expsyms
  1491. # Commands necessary for linking programs (against libraries) with templates.
  1492. prelink_cmds=$lt_prelink_cmds
  1493. # Commands necessary for finishing linking programs.
  1494. postlink_cmds=$lt_postlink_cmds
  1495. # Specify filename containing input files.
  1496. file_list_spec=$lt_file_list_spec
  1497. # How to hardcode a shared library path into an executable.
  1498. hardcode_action=$hardcode_action
  1499. # ### END LIBTOOL CONFIG
  1500. _LT_EOF
  1501. case $host_os in
  1502. aix3*)
  1503. cat <<\_LT_EOF >> "$cfgfile"
  1504. # AIX sometimes has problems with the GCC collect2 program. For some
  1505. # reason, if we set the COLLECT_NAMES environment variable, the problems
  1506. # vanish in a puff of smoke.
  1507. if test "X${COLLECT_NAMES+set}" != Xset; then
  1508. COLLECT_NAMES=
  1509. export COLLECT_NAMES
  1510. fi
  1511. _LT_EOF
  1512. ;;
  1513. esac
  1514. ltmain="$ac_aux_dir/ltmain.sh"
  1515. # We use sed instead of cat because bash on DJGPP gets confused if
  1516. # if finds mixed CR/LF and LF-only lines. Since sed operates in
  1517. # text mode, it properly converts lines to CR/LF. This bash problem
  1518. # is reportedly fixed, but why not run on old versions too?
  1519. sed '$q' "$ltmain" >> "$cfgfile" \
  1520. || (rm -f "$cfgfile"; exit 1)
  1521. if test x"$xsi_shell" = xyes; then
  1522. sed -e '/^func_dirname ()$/,/^} # func_dirname /c\
  1523. func_dirname ()\
  1524. {\
  1525. \ case ${1} in\
  1526. \ */*) func_dirname_result="${1%/*}${2}" ;;\
  1527. \ * ) func_dirname_result="${3}" ;;\
  1528. \ esac\
  1529. } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \
  1530. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1531. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1532. test 0 -eq $? || _lt_function_replace_fail=:
  1533. sed -e '/^func_basename ()$/,/^} # func_basename /c\
  1534. func_basename ()\
  1535. {\
  1536. \ func_basename_result="${1##*/}"\
  1537. } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \
  1538. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1539. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1540. test 0 -eq $? || _lt_function_replace_fail=:
  1541. sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\
  1542. func_dirname_and_basename ()\
  1543. {\
  1544. \ case ${1} in\
  1545. \ */*) func_dirname_result="${1%/*}${2}" ;;\
  1546. \ * ) func_dirname_result="${3}" ;;\
  1547. \ esac\
  1548. \ func_basename_result="${1##*/}"\
  1549. } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \
  1550. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1551. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1552. test 0 -eq $? || _lt_function_replace_fail=:
  1553. sed -e '/^func_stripname ()$/,/^} # func_stripname /c\
  1554. func_stripname ()\
  1555. {\
  1556. \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\
  1557. \ # positional parameters, so assign one to ordinary parameter first.\
  1558. \ func_stripname_result=${3}\
  1559. \ func_stripname_result=${func_stripname_result#"${1}"}\
  1560. \ func_stripname_result=${func_stripname_result%"${2}"}\
  1561. } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \
  1562. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1563. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1564. test 0 -eq $? || _lt_function_replace_fail=:
  1565. sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\
  1566. func_split_long_opt ()\
  1567. {\
  1568. \ func_split_long_opt_name=${1%%=*}\
  1569. \ func_split_long_opt_arg=${1#*=}\
  1570. } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \
  1571. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1572. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1573. test 0 -eq $? || _lt_function_replace_fail=:
  1574. sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\
  1575. func_split_short_opt ()\
  1576. {\
  1577. \ func_split_short_opt_arg=${1#??}\
  1578. \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\
  1579. } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \
  1580. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1581. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1582. test 0 -eq $? || _lt_function_replace_fail=:
  1583. sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\
  1584. func_lo2o ()\
  1585. {\
  1586. \ case ${1} in\
  1587. \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\
  1588. \ *) func_lo2o_result=${1} ;;\
  1589. \ esac\
  1590. } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \
  1591. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1592. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1593. test 0 -eq $? || _lt_function_replace_fail=:
  1594. sed -e '/^func_xform ()$/,/^} # func_xform /c\
  1595. func_xform ()\
  1596. {\
  1597. func_xform_result=${1%.*}.lo\
  1598. } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \
  1599. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1600. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1601. test 0 -eq $? || _lt_function_replace_fail=:
  1602. sed -e '/^func_arith ()$/,/^} # func_arith /c\
  1603. func_arith ()\
  1604. {\
  1605. func_arith_result=$(( $* ))\
  1606. } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \
  1607. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1608. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1609. test 0 -eq $? || _lt_function_replace_fail=:
  1610. sed -e '/^func_len ()$/,/^} # func_len /c\
  1611. func_len ()\
  1612. {\
  1613. func_len_result=${#1}\
  1614. } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \
  1615. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1616. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1617. test 0 -eq $? || _lt_function_replace_fail=:
  1618. fi
  1619. if test x"$lt_shell_append" = xyes; then
  1620. sed -e '/^func_append ()$/,/^} # func_append /c\
  1621. func_append ()\
  1622. {\
  1623. eval "${1}+=\\${2}"\
  1624. } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \
  1625. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1626. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1627. test 0 -eq $? || _lt_function_replace_fail=:
  1628. sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\
  1629. func_append_quoted ()\
  1630. {\
  1631. \ func_quote_for_eval "${2}"\
  1632. \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\
  1633. } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \
  1634. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1635. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1636. test 0 -eq $? || _lt_function_replace_fail=:
  1637. # Save a `func_append' function call where possible by direct use of '+='
  1638. sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
  1639. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1640. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1641. test 0 -eq $? || _lt_function_replace_fail=:
  1642. else
  1643. # Save a `func_append' function call even when '+=' is not available
  1644. sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
  1645. && mv -f "$cfgfile.tmp" "$cfgfile" \
  1646. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  1647. test 0 -eq $? || _lt_function_replace_fail=:
  1648. fi
  1649. if test x"$_lt_function_replace_fail" = x":"; then
  1650. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5
  1651. $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;}
  1652. fi
  1653. mv -f "$cfgfile" "$ofile" ||
  1654. (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  1655. chmod +x "$ofile"
  1656. ;;
  1657. esac
  1658. done # for ac_tag
  1659. as_fn_exit 0