config.status 57 KB

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