config.status 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247
  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. ## --------------------- ##
  11. ## M4sh Initialization. ##
  12. ## --------------------- ##
  13. # Be more Bourne compatible
  14. DUALCASE=1; export DUALCASE # for MKS sh
  15. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  16. emulate sh
  17. NULLCMD=:
  18. # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  19. # is contrary to our usage. Disable this feature.
  20. alias -g '${1+"$@"}'='"$@"'
  21. setopt NO_GLOB_SUBST
  22. else
  23. case `(set -o) 2>/dev/null` in
  24. *posix*) set -o posix ;;
  25. esac
  26. fi
  27. # PATH needs CR
  28. # Avoid depending upon Character Ranges.
  29. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  30. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  31. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  32. as_cr_digits='0123456789'
  33. as_cr_alnum=$as_cr_Letters$as_cr_digits
  34. as_nl='
  35. '
  36. export as_nl
  37. # Printing a long string crashes Solaris 7 /usr/bin/printf.
  38. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  39. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  40. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  41. if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  42. as_echo='printf %s\n'
  43. as_echo_n='printf %s'
  44. else
  45. if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  46. as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  47. as_echo_n='/usr/ucb/echo -n'
  48. else
  49. as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
  50. as_echo_n_body='eval
  51. arg=$1;
  52. case $arg in
  53. *"$as_nl"*)
  54. expr "X$arg" : "X\\(.*\\)$as_nl";
  55. arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
  56. esac;
  57. expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
  58. '
  59. export as_echo_n_body
  60. as_echo_n='sh -c $as_echo_n_body as_echo'
  61. fi
  62. export as_echo_body
  63. as_echo='sh -c $as_echo_body as_echo'
  64. fi
  65. # The user is always right.
  66. if test "${PATH_SEPARATOR+set}" != set; then
  67. PATH_SEPARATOR=:
  68. (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  69. (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  70. PATH_SEPARATOR=';'
  71. }
  72. fi
  73. # Support unset when possible.
  74. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
  75. as_unset=unset
  76. else
  77. as_unset=false
  78. fi
  79. # IFS
  80. # We need space, tab and new line, in precisely that order. Quoting is
  81. # there to prevent editors from complaining about space-tab.
  82. # (If _AS_PATH_WALK were called with IFS unset, it would disable word
  83. # splitting by setting IFS to empty value.)
  84. IFS=" "" $as_nl"
  85. # Find who we are. Look in the path if we contain no directory separator.
  86. case $0 in
  87. *[\\/]* ) as_myself=$0 ;;
  88. *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  89. for as_dir in $PATH
  90. do
  91. IFS=$as_save_IFS
  92. test -z "$as_dir" && as_dir=.
  93. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  94. done
  95. IFS=$as_save_IFS
  96. ;;
  97. esac
  98. # We did not find ourselves, most probably we were run as `sh COMMAND'
  99. # in which case we are not to be found in the path.
  100. if test "x$as_myself" = x; then
  101. as_myself=$0
  102. fi
  103. if test ! -f "$as_myself"; then
  104. $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  105. { (exit 1); exit 1; }
  106. fi
  107. # Work around bugs in pre-3.0 UWIN ksh.
  108. for as_var in ENV MAIL MAILPATH
  109. do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
  110. done
  111. PS1='$ '
  112. PS2='> '
  113. PS4='+ '
  114. # NLS nuisances.
  115. LC_ALL=C
  116. export LC_ALL
  117. LANGUAGE=C
  118. export LANGUAGE
  119. # Required to use basename.
  120. if expr a : '\(a\)' >/dev/null 2>&1 &&
  121. test "X`expr 00001 : '.*\(...\)'`" = X001; then
  122. as_expr=expr
  123. else
  124. as_expr=false
  125. fi
  126. if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  127. as_basename=basename
  128. else
  129. as_basename=false
  130. fi
  131. # Name of the executable.
  132. as_me=`$as_basename -- "$0" ||
  133. $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  134. X"$0" : 'X\(//\)$' \| \
  135. X"$0" : 'X\(/\)' \| . 2>/dev/null ||
  136. $as_echo X/"$0" |
  137. sed '/^.*\/\([^/][^/]*\)\/*$/{
  138. s//\1/
  139. q
  140. }
  141. /^X\/\(\/\/\)$/{
  142. s//\1/
  143. q
  144. }
  145. /^X\/\(\/\).*/{
  146. s//\1/
  147. q
  148. }
  149. s/.*/./; q'`
  150. # CDPATH.
  151. $as_unset CDPATH
  152. as_lineno_1=$LINENO
  153. as_lineno_2=$LINENO
  154. test "x$as_lineno_1" != "x$as_lineno_2" &&
  155. test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
  156. # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  157. # uniformly replaced by the line number. The first 'sed' inserts a
  158. # line-number line after each line using $LINENO; the second 'sed'
  159. # does the real work. The second script uses 'N' to pair each
  160. # line-number line with the line containing $LINENO, and appends
  161. # trailing '-' during substitution so that $LINENO is not a special
  162. # case at line end.
  163. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  164. # scripts with optimization help from Paolo Bonzini. Blame Lee
  165. # E. McMahon (1931-1989) for sed's syntax. :-)
  166. sed -n '
  167. p
  168. /[$]LINENO/=
  169. ' <$as_myself |
  170. sed '
  171. s/[$]LINENO.*/&-/
  172. t lineno
  173. b
  174. :lineno
  175. N
  176. :loop
  177. s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
  178. t loop
  179. s/-\n.*//
  180. ' >$as_me.lineno &&
  181. chmod +x "$as_me.lineno" ||
  182. { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
  183. { (exit 1); exit 1; }; }
  184. # Don't try to exec as it changes $[0], causing all sort of problems
  185. # (the dirname of $[0] is not the place where we might find the
  186. # original and so on. Autoconf is especially sensitive to this).
  187. . "./$as_me.lineno"
  188. # Exit status is that of the last command.
  189. exit
  190. }
  191. if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  192. as_dirname=dirname
  193. else
  194. as_dirname=false
  195. fi
  196. ECHO_C= ECHO_N= ECHO_T=
  197. case `echo -n x` in
  198. -n*)
  199. case `echo 'x\c'` in
  200. *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  201. *) ECHO_C='\c';;
  202. esac;;
  203. *)
  204. ECHO_N='-n';;
  205. esac
  206. if expr a : '\(a\)' >/dev/null 2>&1 &&
  207. test "X`expr 00001 : '.*\(...\)'`" = X001; then
  208. as_expr=expr
  209. else
  210. as_expr=false
  211. fi
  212. rm -f conf$$ conf$$.exe conf$$.file
  213. if test -d conf$$.dir; then
  214. rm -f conf$$.dir/conf$$.file
  215. else
  216. rm -f conf$$.dir
  217. mkdir conf$$.dir 2>/dev/null
  218. fi
  219. if (echo >conf$$.file) 2>/dev/null; then
  220. if ln -s conf$$.file conf$$ 2>/dev/null; then
  221. as_ln_s='ln -s'
  222. # ... but there are two gotchas:
  223. # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  224. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  225. # In both cases, we have to default to `cp -p'.
  226. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  227. as_ln_s='cp -p'
  228. elif ln conf$$.file conf$$ 2>/dev/null; then
  229. as_ln_s=ln
  230. else
  231. as_ln_s='cp -p'
  232. fi
  233. else
  234. as_ln_s='cp -p'
  235. fi
  236. rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  237. rmdir conf$$.dir 2>/dev/null
  238. if mkdir -p . 2>/dev/null; then
  239. as_mkdir_p=:
  240. else
  241. test -d ./-p && rmdir ./-p
  242. as_mkdir_p=false
  243. fi
  244. if test -x / >/dev/null 2>&1; then
  245. as_test_x='test -x'
  246. else
  247. if ls -dL / >/dev/null 2>&1; then
  248. as_ls_L_option=L
  249. else
  250. as_ls_L_option=
  251. fi
  252. as_test_x='
  253. eval sh -c '\''
  254. if test -d "$1"; then
  255. test -d "$1/.";
  256. else
  257. case $1 in
  258. -*)set "./$1";;
  259. esac;
  260. case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
  261. ???[sx]*):;;*)false;;esac;fi
  262. '\'' sh
  263. '
  264. fi
  265. as_executable_p=$as_test_x
  266. # Sed expression to map a string onto a valid CPP name.
  267. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  268. # Sed expression to map a string onto a valid variable name.
  269. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  270. exec 6>&1
  271. # Save the log message, to keep $[0] and so on meaningful, and to
  272. # report actual input values of CONFIG_FILES etc. instead of their
  273. # values after options handling.
  274. ac_log="
  275. This file was extended by $as_me, which was
  276. generated by GNU Autoconf 2.63. Invocation command line was
  277. CONFIG_FILES = $CONFIG_FILES
  278. CONFIG_HEADERS = $CONFIG_HEADERS
  279. CONFIG_LINKS = $CONFIG_LINKS
  280. CONFIG_COMMANDS = $CONFIG_COMMANDS
  281. $ $0 $@
  282. on `(hostname || uname -n) 2>/dev/null | sed 1q`
  283. "
  284. # Files that config.status was made for.
  285. config_files=" libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/Makefile doc/Makefile doc/examples/Makefile doc/devhelp/Makefile example/Makefile python/Makefile python/tests/Makefile xstc/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc libxml-2.0-uninstalled.pc python/setup.py"
  286. config_headers=" config.h"
  287. config_commands=" depfiles libtool"
  288. ac_cs_usage="\
  289. \`$as_me' instantiates files from templates according to the
  290. current configuration.
  291. Usage: $0 [OPTION]... [FILE]...
  292. -h, --help print this help, then exit
  293. -V, --version print version number and configuration settings, then exit
  294. -q, --quiet, --silent
  295. do not print progress messages
  296. -d, --debug don't remove temporary files
  297. --recheck update $as_me by reconfiguring in the same conditions
  298. --file=FILE[:TEMPLATE]
  299. instantiate the configuration file FILE
  300. --header=FILE[:TEMPLATE]
  301. instantiate the configuration header FILE
  302. Configuration files:
  303. $config_files
  304. Configuration headers:
  305. $config_headers
  306. Configuration commands:
  307. $config_commands
  308. Report bugs to <bug-autoconf@gnu.org>."
  309. ac_cs_version="\
  310. config.status
  311. configured by ./configure, generated by GNU Autoconf 2.63,
  312. with options \"'--host=arm-linux-gnueabihf' '--prefix=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/release' 'host_alias=arm-linux-gnueabihf' 'CC=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc'\"
  313. Copyright (C) 2008 Free Software Foundation, Inc.
  314. This config.status script is free software; the Free Software Foundation
  315. gives unlimited permission to copy, distribute and modify it."
  316. ac_pwd='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6'
  317. srcdir='.'
  318. INSTALL='/usr/bin/install -c'
  319. MKDIR_P='/bin/mkdir -p'
  320. AWK='gawk'
  321. test -n "$AWK" || AWK=awk
  322. # The default lists apply if the user does not specify any file.
  323. ac_need_defaults=:
  324. while test $# != 0
  325. do
  326. case $1 in
  327. --*=*)
  328. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  329. ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  330. ac_shift=:
  331. ;;
  332. *)
  333. ac_option=$1
  334. ac_optarg=$2
  335. ac_shift=shift
  336. ;;
  337. esac
  338. case $ac_option in
  339. # Handling of the options.
  340. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  341. ac_cs_recheck=: ;;
  342. --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  343. $as_echo "$ac_cs_version"; exit ;;
  344. --debug | --debu | --deb | --de | --d | -d )
  345. debug=: ;;
  346. --file | --fil | --fi | --f )
  347. $ac_shift
  348. case $ac_optarg in
  349. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  350. esac
  351. CONFIG_FILES="$CONFIG_FILES '$ac_optarg'"
  352. ac_need_defaults=false;;
  353. --header | --heade | --head | --hea )
  354. $ac_shift
  355. case $ac_optarg in
  356. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  357. esac
  358. CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'"
  359. ac_need_defaults=false;;
  360. --he | --h)
  361. # Conflict between --help and --header
  362. { $as_echo "$as_me: error: ambiguous option: $1
  363. Try \`$0 --help' for more information." >&2
  364. { (exit 1); exit 1; }; };;
  365. --help | --hel | -h )
  366. $as_echo "$ac_cs_usage"; exit ;;
  367. -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  368. | -silent | --silent | --silen | --sile | --sil | --si | --s)
  369. ac_cs_silent=: ;;
  370. # This is an error.
  371. -*) { $as_echo "$as_me: error: unrecognized option: $1
  372. Try \`$0 --help' for more information." >&2
  373. { (exit 1); exit 1; }; } ;;
  374. *) ac_config_targets="$ac_config_targets $1"
  375. ac_need_defaults=false ;;
  376. esac
  377. shift
  378. done
  379. ac_configure_extra_args=
  380. if $ac_cs_silent; then
  381. exec 6>/dev/null
  382. ac_configure_extra_args="$ac_configure_extra_args --silent"
  383. fi
  384. if $ac_cs_recheck; then
  385. set X '/bin/bash' './configure' '--host=arm-linux-gnueabihf' '--prefix=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/release' 'host_alias=arm-linux-gnueabihf' 'CC=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc' $ac_configure_extra_args --no-create --no-recursion
  386. shift
  387. $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
  388. CONFIG_SHELL='/bin/bash'
  389. export CONFIG_SHELL
  390. exec "$@"
  391. fi
  392. exec 5>>config.log
  393. {
  394. echo
  395. sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  396. ## Running $as_me. ##
  397. _ASBOX
  398. $as_echo "$ac_log"
  399. } >&5
  400. #
  401. # INIT-COMMANDS
  402. #
  403. AMDEP_TRUE="" ac_aux_dir="."
  404. # The HP-UX ksh and POSIX shell print the target directory to stdout
  405. # if CDPATH is set.
  406. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  407. sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
  408. double_quote_subst='s/\(["`\\]\)/\\\1/g'
  409. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
  410. AS='as'
  411. DLLTOOL='dlltool'
  412. OBJDUMP='objdump'
  413. macro_version='2.2.6'
  414. macro_revision='1.3012'
  415. enable_shared='yes'
  416. enable_static='yes'
  417. pic_mode='default'
  418. enable_fast_install='yes'
  419. host_alias='arm-linux-gnueabihf'
  420. host='arm-unknown-linux-gnueabihf'
  421. host_os='linux-gnueabihf'
  422. build_alias=''
  423. build='x86_64-unknown-linux-gnu'
  424. build_os='linux-gnu'
  425. SED='/bin/sed'
  426. Xsed='/bin/sed -e 1s/^X//'
  427. GREP='/bin/grep'
  428. EGREP='/bin/grep -E'
  429. FGREP='/bin/grep -F'
  430. LD='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/bin/ld'
  431. NM='link -dump -symbols'
  432. LN_S='ln -s'
  433. max_cmd_len='1572864'
  434. ac_objext='o'
  435. exeext=''
  436. lt_unset='unset'
  437. lt_SP2NL='tr \040 \012'
  438. lt_NL2SP='tr \015\012 \040\040'
  439. reload_flag=' -r'
  440. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  441. deplibs_check_method='pass_all'
  442. file_magic_cmd='$MAGIC_CMD'
  443. AR='ar'
  444. AR_FLAGS='cru'
  445. STRIP='strip'
  446. RANLIB='ranlib'
  447. old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $oldlib'
  448. old_postuninstall_cmds=''
  449. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $oldlib'
  450. CC='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc'
  451. CFLAGS='-g -O2 -pedantic -W -Wformat -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wredundant-decls'
  452. compiler='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc'
  453. GCC='yes'
  454. lt_cv_sys_global_symbol_pipe=''
  455. lt_cv_sys_global_symbol_to_cdecl=''
  456. lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
  457. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
  458. objdir='.libs'
  459. SHELL='/bin/bash'
  460. ECHO='echo'
  461. MAGIC_CMD='file'
  462. lt_prog_compiler_no_builtin_flag=' -fno-builtin'
  463. lt_prog_compiler_wl='-Wl,'
  464. lt_prog_compiler_pic=' -fPIC -DPIC'
  465. lt_prog_compiler_static='-static'
  466. lt_cv_prog_compiler_c_o='yes'
  467. need_locks='no'
  468. DSYMUTIL=''
  469. NMEDIT=''
  470. LIPO=''
  471. OTOOL=''
  472. OTOOL64=''
  473. libext='a'
  474. shrext_cmds='.so'
  475. extract_expsyms_cmds=''
  476. archive_cmds_need_lc='no'
  477. enable_shared_with_static_runtimes='no'
  478. export_dynamic_flag_spec='${wl}--export-dynamic'
  479. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  480. compiler_needs_object='no'
  481. old_archive_from_new_cmds=''
  482. old_archive_from_expsyms_cmds=''
  483. archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  484. archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
  485. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  486. echo "local: *; };" >> $output_objdir/$libname.ver~
  487. $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  488. module_cmds=''
  489. module_expsym_cmds=''
  490. with_gnu_ld='yes'
  491. allow_undefined_flag=''
  492. no_undefined_flag=''
  493. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  494. hardcode_libdir_flag_spec_ld=''
  495. hardcode_libdir_separator=''
  496. hardcode_direct='no'
  497. hardcode_direct_absolute='no'
  498. hardcode_minus_L='no'
  499. hardcode_shlibpath_var='unsupported'
  500. hardcode_automatic='no'
  501. inherit_rpath='no'
  502. link_all_deplibs='unknown'
  503. fix_srcfile_path=''
  504. always_export_symbols='no'
  505. export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  506. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
  507. include_expsyms=''
  508. prelink_cmds=''
  509. file_list_spec=''
  510. variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
  511. need_lib_prefix='no'
  512. need_version='no'
  513. version_type='linux'
  514. runpath_var='LD_RUN_PATH'
  515. shlibpath_var='LD_LIBRARY_PATH'
  516. shlibpath_overrides_runpath='no'
  517. libname_spec='lib$name'
  518. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  519. soname_spec='${libname}${release}${shared_ext}$major'
  520. postinstall_cmds=''
  521. postuninstall_cmds=''
  522. finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
  523. finish_eval=''
  524. hardcode_into_libs='yes'
  525. sys_lib_search_path_spec='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/lib/gcc/arm-linux-gnueabihf/6.2.1 /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/lib/gcc/arm-linux-gnueabihf /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/lib/gcc /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/lib /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/libc/lib/arm-linux-gnueabihf/6.2.1 /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/libc/lib/arm-linux-gnueabihf /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/libc/lib /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/libc/usr/lib/arm-linux-gnueabihf/6.2.1 /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/libc/usr/lib/arm-linux-gnueabihf /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/libc/usr/lib'
  526. sys_lib_dlsearch_path_spec='/lib64 /usr/lib64 /lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /usr/local/lib/i386-linux-gnu /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /usr/local/lib/i686-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/local/lib /usr/local/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /lib32 /usr/lib32 '
  527. hardcode_action='immediate'
  528. enable_dlopen='unknown'
  529. enable_dlopen_self='unknown'
  530. enable_dlopen_self_static='unknown'
  531. old_striplib='strip --strip-debug'
  532. striplib='strip --strip-unneeded'
  533. LTCC='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc'
  534. LTCFLAGS='-g -O2'
  535. compiler='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc'
  536. # Quote evaled strings.
  537. for var in SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag deplibs_check_method file_magic_cmd AR AR_FLAGS STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix SHELL ECHO lt_prog_compiler_no_builtin_flag lt_prog_compiler_wl lt_prog_compiler_pic lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_flag_spec_ld hardcode_libdir_separator fix_srcfile_path exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec finish_eval old_striplib striplib; do
  538. case `eval \\$ECHO "X\\$$var"` in
  539. *[\\\`\"\$]*)
  540. eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
  541. ;;
  542. *)
  543. eval "lt_$var=\\\"\$$var\\\""
  544. ;;
  545. esac
  546. done
  547. # Double-quote double-evaled strings.
  548. 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 postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec; do
  549. case `eval \\$ECHO "X\\$$var"` in
  550. *[\\\`\"\$]*)
  551. eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
  552. ;;
  553. *)
  554. eval "lt_$var=\\\"\$$var\\\""
  555. ;;
  556. esac
  557. done
  558. # Fix-up fallback echo if it was mangled by the above quoting rules.
  559. case $lt_ECHO in
  560. *'\$0 --fallback-echo"') lt_ECHO=`$ECHO "X$lt_ECHO" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
  561. ;;
  562. esac
  563. ac_aux_dir='.'
  564. xsi_shell='yes'
  565. lt_shell_append='yes'
  566. # See if we are running on zsh, and set the options which allow our
  567. # commands through without removal of \ escapes INIT.
  568. if test -n "${ZSH_VERSION+set}" ; then
  569. setopt NO_GLOB_SUBST
  570. fi
  571. PACKAGE='libxml2'
  572. VERSION='2.7.6'
  573. TIMESTAMP=''
  574. RM='/bin/rm'
  575. ofile='libtool'
  576. # Handling of arguments.
  577. for ac_config_target in $ac_config_targets
  578. do
  579. case $ac_config_target in
  580. "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
  581. "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
  582. "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
  583. "libxml2.spec") CONFIG_FILES="$CONFIG_FILES libxml2.spec:libxml.spec.in" ;;
  584. "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  585. "include/Makefile") CONFIG_FILES="$CONFIG_FILES include/Makefile" ;;
  586. "include/libxml/Makefile") CONFIG_FILES="$CONFIG_FILES include/libxml/Makefile" ;;
  587. "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
  588. "doc/examples/Makefile") CONFIG_FILES="$CONFIG_FILES doc/examples/Makefile" ;;
  589. "doc/devhelp/Makefile") CONFIG_FILES="$CONFIG_FILES doc/devhelp/Makefile" ;;
  590. "example/Makefile") CONFIG_FILES="$CONFIG_FILES example/Makefile" ;;
  591. "python/Makefile") CONFIG_FILES="$CONFIG_FILES python/Makefile" ;;
  592. "python/tests/Makefile") CONFIG_FILES="$CONFIG_FILES python/tests/Makefile" ;;
  593. "xstc/Makefile") CONFIG_FILES="$CONFIG_FILES xstc/Makefile" ;;
  594. "include/libxml/xmlversion.h") CONFIG_FILES="$CONFIG_FILES include/libxml/xmlversion.h" ;;
  595. "xml2-config") CONFIG_FILES="$CONFIG_FILES xml2-config" ;;
  596. "libxml-2.0.pc") CONFIG_FILES="$CONFIG_FILES libxml-2.0.pc" ;;
  597. "libxml-2.0-uninstalled.pc") CONFIG_FILES="$CONFIG_FILES libxml-2.0-uninstalled.pc" ;;
  598. "python/setup.py") CONFIG_FILES="$CONFIG_FILES python/setup.py" ;;
  599. *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  600. $as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
  601. { (exit 1); exit 1; }; };;
  602. esac
  603. done
  604. # If the user did not use the arguments to specify the items to instantiate,
  605. # then the envvar interface is used. Set only those that are not.
  606. # We use the long form for the default assignment because of an extremely
  607. # bizarre bug on SunOS 4.1.3.
  608. if $ac_need_defaults; then
  609. test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  610. test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  611. test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  612. fi
  613. # Have a temporary directory for convenience. Make it in the build tree
  614. # simply because there is no reason against having it here, and in addition,
  615. # creating and moving files from /tmp can sometimes cause problems.
  616. # Hook for its removal unless debugging.
  617. # Note that there is a small window in which the directory will not be cleaned:
  618. # after its creation but before its name has been assigned to `$tmp'.
  619. $debug ||
  620. {
  621. tmp=
  622. trap 'exit_status=$?
  623. { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
  624. ' 0
  625. trap '{ (exit 1); exit 1; }' 1 2 13 15
  626. }
  627. # Create a (secure) tmp directory for tmp files.
  628. {
  629. tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  630. test -n "$tmp" && test -d "$tmp"
  631. } ||
  632. {
  633. tmp=./conf$$-$RANDOM
  634. (umask 077 && mkdir "$tmp")
  635. } ||
  636. {
  637. $as_echo "$as_me: cannot create a temporary directory in ." >&2
  638. { (exit 1); exit 1; }
  639. }
  640. # Set up the scripts for CONFIG_FILES section.
  641. # No need to generate them if there are no CONFIG_FILES.
  642. # This happens for instance with `./config.status config.h'.
  643. if test -n "$CONFIG_FILES"; then
  644. ac_cr=' '
  645. ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  646. if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  647. ac_cs_awk_cr='\\r'
  648. else
  649. ac_cs_awk_cr=$ac_cr
  650. fi
  651. echo 'BEGIN {' >"$tmp/subs1.awk" &&
  652. cat >>"$tmp/subs1.awk" <<\_ACAWK &&
  653. S["am__EXEEXT_FALSE"]=""
  654. S["am__EXEEXT_TRUE"]="#"
  655. S["LTLIBOBJS"]=""
  656. S["LIBOBJS"]=""
  657. S["PYTHON_TESTS"]=""
  658. S["RELDATE"]="Fri Jul 12 2019"
  659. S["RDL_LIBS"]=""
  660. S["M_LIBS"]="-lm"
  661. S["PYTHON_SITE_PACKAGES"]="/usr/lib/python2.7/dist-packages"
  662. S["PYTHON_INCLUDES"]=""
  663. S["PYTHON_VERSION"]="2.7"
  664. S["HAVE_ISINF"]=""
  665. S["HAVE_ISNAN"]=""
  666. S["XML_INCLUDEDIR"]="-I${includedir}/libxml2"
  667. S["ICONV_LIBS"]=""
  668. S["XML_LIBTOOLLIBS"]="libxml2.la"
  669. S["XML_LIBS"]="-lxml2 -lz -lm "
  670. S["XML_LIBDIR"]="-L${libdir}"
  671. S["XML_CFLAGS"]=""
  672. S["CYGWIN_EXTRA_PYTHON_LIBADD"]=""
  673. S["CYGWIN_EXTRA_LDFLAGS"]=""
  674. S["WIN32_EXTRA_LDFLAGS"]=""
  675. S["WIN32_EXTRA_LIBADD"]=""
  676. S["WITH_RUN_DEBUG"]="0"
  677. S["WITH_MEM_DEBUG"]="0"
  678. S["TEST_DEBUG"]="Scripttests"
  679. S["DEBUG_OBJ"]="debugXML.o"
  680. S["WITH_DEBUG"]="1"
  681. S["TEST_REGEXPS"]="Regexptests Automatatests"
  682. S["WITH_REGEXPS"]="1"
  683. S["TEST_SCHEMAS"]="Schemastests Relaxtests"
  684. S["WITH_SCHEMAS"]="1"
  685. S["TEST_SCHEMATRON"]="Schematrontests"
  686. S["WITH_SCHEMATRON"]="1"
  687. S["WITH_ISO8859X"]="1"
  688. S["WITH_ICONV"]="1"
  689. S["WITH_OUTPUT"]="1"
  690. S["TEST_XPATH"]="XPathtests"
  691. S["XPATH_OBJ"]="xpath.o"
  692. S["WITH_XPATH"]="1"
  693. S["TEST_XINCLUDE"]="XIncludetests"
  694. S["XINCLUDE_OBJ"]="xinclude.o"
  695. S["WITH_XINCLUDE"]="1"
  696. S["TEST_C14N"]="C14Ntests"
  697. S["C14N_OBJ"]="c14n.c"
  698. S["WITH_C14N"]="1"
  699. S["TEST_XPTR"]="XPtrtests"
  700. S["XPTR_OBJ"]="xpointer.o"
  701. S["WITH_XPTR"]="1"
  702. S["DOCB_OBJ"]="DOCBparser.o"
  703. S["WITH_DOCB"]="1"
  704. S["TEST_CATALOG"]="Catatests"
  705. S["CATALOG_OBJ"]="catalog.o"
  706. S["WITH_CATALOG"]="1"
  707. S["TEST_VTIME"]="VTimingtests"
  708. S["TEST_VALID"]="Validtests"
  709. S["WITH_VALID"]="1"
  710. S["TEST_PHTML"]="HTMLPushtests"
  711. S["TEST_HTML"]="HTMLtests"
  712. S["HTML_OBJ"]="HTMLparser.o HTMLtree.o"
  713. S["WITH_HTML"]="1"
  714. S["TEST_PUSH"]="XMLPushtests"
  715. S["WITH_PUSH"]="1"
  716. S["TEST_SAX"]="SAXtests"
  717. S["WITH_SAX1"]="1"
  718. S["TEST_PATTERN"]="Patterntests"
  719. S["WITH_PATTERN"]="1"
  720. S["WITH_WRITER"]="1"
  721. S["READER_TEST"]="Readertests"
  722. S["WITH_READER"]="1"
  723. S["WITH_LEGACY"]="1"
  724. S["HTTP_OBJ"]="nanohttp.o"
  725. S["WITH_HTTP"]="1"
  726. S["FTP_OBJ"]="nanoftp.o"
  727. S["WITH_FTP"]="1"
  728. S["WITH_TREE"]="1"
  729. S["THREADS_W32"]=""
  730. S["TEST_THREADS"]="Threadtests"
  731. S["THREAD_CFLAGS"]=" -D_REENTRANT"
  732. S["WITH_THREADS"]="1"
  733. S["BASE_THREAD_LIBS"]="-lpthread"
  734. S["THREAD_LIBS"]=""
  735. S["WITH_TRIO"]="0"
  736. S["WITH_TRIO_SOURCES_FALSE"]=""
  737. S["WITH_TRIO_SOURCES_TRUE"]="#"
  738. S["STATIC_BINARIES"]=""
  739. S["TEST_MODULES"]="ModuleTests"
  740. S["MODULE_EXTENSION"]=".so"
  741. S["MODULE_PLATFORM_LIBS"]="-ldl"
  742. S["WITH_MODULES"]="1"
  743. S["PYTHON_LIBS"]="-lpython2.7 -lpthread -ldl -lutil -lm"
  744. S["PYTHON_SUBDIR"]=""
  745. S["pythondir"]="$(libdir)/python$(PYTHON_VERSION)/site-packages"
  746. S["WITH_PYTHON_FALSE"]=""
  747. S["WITH_PYTHON_TRUE"]="#"
  748. S["PYTHON"]="/usr/bin/python"
  749. S["WITH_ZLIB"]="1"
  750. S["Z_LIBS"]="-lz"
  751. S["Z_CFLAGS"]=""
  752. S["REBUILD_DOCS_FALSE"]=""
  753. S["REBUILD_DOCS_TRUE"]="#"
  754. S["HTML_DIR"]="$(datadir)/doc/$(PACKAGE)-$(VERSION)/html"
  755. S["USE_VERSION_SCRIPT_FALSE"]="#"
  756. S["USE_VERSION_SCRIPT_TRUE"]=""
  757. S["VERSION_SCRIPT_FLAGS"]="-Wl,--version-script="
  758. S["OTOOL64"]=""
  759. S["OTOOL"]=""
  760. S["LIPO"]=""
  761. S["NMEDIT"]=""
  762. S["DSYMUTIL"]=""
  763. S["lt_ECHO"]="echo"
  764. S["RANLIB"]="ranlib"
  765. S["AR"]="ar"
  766. S["LN_S"]="ln -s"
  767. S["NM"]="link -dump -symbols"
  768. S["ac_ct_DUMPBIN"]="link -dump -symbols"
  769. S["DUMPBIN"]="link -dump -symbols"
  770. S["LD"]="/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/arm-linux-gnueabihf/bin/ld"
  771. S["FGREP"]="/bin/grep -F"
  772. S["SED"]="/bin/sed"
  773. S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
  774. S["OBJDUMP"]="objdump"
  775. S["DLLTOOL"]="dlltool"
  776. S["AS"]="as"
  777. S["ANSI2KNR"]=""
  778. S["U"]=""
  779. S["EGREP"]="/bin/grep -E"
  780. S["GREP"]="/bin/grep"
  781. S["XSLTPROC"]="/usr/bin/xsltproc"
  782. S["XMLLINT"]="/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/armv7ahf-neon-linux-gnueabi/usr/bin/xmllint"
  783. S["WGET"]="/usr/bin/wget"
  784. S["PERL"]="/usr/bin/perl"
  785. S["TAR"]="/bin/tar"
  786. S["MV"]="/bin/mv"
  787. S["RM"]="/bin/rm"
  788. S["CPP"]="/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc -E"
  789. S["am__fastdepCC_FALSE"]="#"
  790. S["am__fastdepCC_TRUE"]=""
  791. S["CCDEPMODE"]="depmode=gcc3"
  792. S["AMDEPBACKSLASH"]="\\"
  793. S["AMDEP_FALSE"]="#"
  794. S["AMDEP_TRUE"]=""
  795. S["am__quote"]=""
  796. S["am__include"]="include"
  797. S["DEPDIR"]=".deps"
  798. S["OBJEXT"]="o"
  799. S["EXEEXT"]=""
  800. S["ac_ct_CC"]=""
  801. S["CPPFLAGS"]=""
  802. S["LDFLAGS"]=""
  803. S["CFLAGS"]="-g -O2 -pedantic -W -Wformat -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparenthes"\
  804. "es -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wred"\
  805. "undant-decls"
  806. S["CC"]="/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc"
  807. S["am__untar"]="${AMTAR} xf -"
  808. S["am__tar"]="${AMTAR} chof - \"$$tardir\""
  809. S["AMTAR"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/missing --run tar"
  810. S["am__leading_dot"]="."
  811. S["SET_MAKE"]=""
  812. S["AWK"]="gawk"
  813. S["mkdir_p"]="/bin/mkdir -p"
  814. S["MKDIR_P"]="/bin/mkdir -p"
  815. S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
  816. S["STRIP"]="strip"
  817. S["install_sh"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/install-sh"
  818. S["MAKEINFO"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/missing --run makeinfo"
  819. S["AUTOHEADER"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/missing --run autoheader"
  820. S["AUTOMAKE"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/missing --run automake-1.11"
  821. S["AUTOCONF"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/missing --run autoconf"
  822. S["ACLOCAL"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/missing --run aclocal-1.11"
  823. S["VERSION"]="2.7.6"
  824. S["PACKAGE"]="libxml2"
  825. S["CYGPATH_W"]="echo"
  826. S["am__isrc"]=""
  827. S["INSTALL_DATA"]="${INSTALL} -m 644"
  828. S["INSTALL_SCRIPT"]="${INSTALL}"
  829. S["INSTALL_PROGRAM"]="${INSTALL}"
  830. S["LIBXML_VERSION_EXTRA"]=""
  831. S["LIBXML_VERSION_NUMBER"]="20706"
  832. S["LIBXML_VERSION_INFO"]="9:6:7"
  833. S["LIBXML_VERSION"]="2.7.6"
  834. S["LIBXML_MICRO_VERSION"]="6"
  835. S["LIBXML_MINOR_VERSION"]="7"
  836. S["LIBXML_MAJOR_VERSION"]="2"
  837. S["host_os"]="linux-gnueabihf"
  838. S["host_vendor"]="unknown"
  839. S["host_cpu"]="arm"
  840. S["host"]="arm-unknown-linux-gnueabihf"
  841. S["build_os"]="linux-gnu"
  842. S["build_vendor"]="unknown"
  843. S["build_cpu"]="x86_64"
  844. S["build"]="x86_64-unknown-linux-gnu"
  845. S["target_alias"]=""
  846. S["host_alias"]="arm-linux-gnueabihf"
  847. S["build_alias"]=""
  848. S["LIBS"]=""
  849. S["ECHO_T"]=""
  850. S["ECHO_N"]="-n"
  851. S["ECHO_C"]=""
  852. S["DEFS"]="-DHAVE_CONFIG_H"
  853. S["mandir"]="${datarootdir}/man"
  854. S["localedir"]="${datarootdir}/locale"
  855. S["libdir"]="${exec_prefix}/lib"
  856. S["psdir"]="${docdir}"
  857. S["pdfdir"]="${docdir}"
  858. S["dvidir"]="${docdir}"
  859. S["htmldir"]="${docdir}"
  860. S["infodir"]="${datarootdir}/info"
  861. S["docdir"]="${datarootdir}/doc/${PACKAGE}"
  862. S["oldincludedir"]="/usr/include"
  863. S["includedir"]="${prefix}/include"
  864. S["localstatedir"]="${prefix}/var"
  865. S["sharedstatedir"]="${prefix}/com"
  866. S["sysconfdir"]="${prefix}/etc"
  867. S["datadir"]="${datarootdir}"
  868. S["datarootdir"]="${prefix}/share"
  869. S["libexecdir"]="${exec_prefix}/libexec"
  870. S["sbindir"]="${exec_prefix}/sbin"
  871. S["bindir"]="${exec_prefix}/bin"
  872. S["program_transform_name"]="s,x,x,"
  873. S["prefix"]="/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/libxml2-2.7.6/release"
  874. S["exec_prefix"]="${prefix}"
  875. S["PACKAGE_BUGREPORT"]=""
  876. S["PACKAGE_STRING"]=""
  877. S["PACKAGE_VERSION"]=""
  878. S["PACKAGE_TARNAME"]=""
  879. S["PACKAGE_NAME"]=""
  880. S["PATH_SEPARATOR"]=":"
  881. S["SHELL"]="/bin/bash"
  882. _ACAWK
  883. cat >>"$tmp/subs1.awk" <<_ACAWK &&
  884. for (key in S) S_is_set[key] = 1
  885. FS = ""
  886. }
  887. {
  888. line = $ 0
  889. nfields = split(line, field, "@")
  890. substed = 0
  891. len = length(field[1])
  892. for (i = 2; i < nfields; i++) {
  893. key = field[i]
  894. keylen = length(key)
  895. if (S_is_set[key]) {
  896. value = S[key]
  897. line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  898. len += length(value) + length(field[++i])
  899. substed = 1
  900. } else
  901. len += 1 + keylen
  902. }
  903. print line
  904. }
  905. _ACAWK
  906. if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  907. sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  908. else
  909. cat
  910. fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
  911. || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5
  912. $as_echo "$as_me: error: could not setup config files machinery" >&2;}
  913. { (exit 1); exit 1; }; }
  914. fi # test -n "$CONFIG_FILES"
  915. # Set up the scripts for CONFIG_HEADERS section.
  916. # No need to generate them if there are no CONFIG_HEADERS.
  917. # This happens for instance with `./config.status Makefile'.
  918. if test -n "$CONFIG_HEADERS"; then
  919. cat >"$tmp/defines.awk" <<\_ACAWK ||
  920. BEGIN {
  921. D["PACKAGE_NAME"]=" \"\""
  922. D["PACKAGE_TARNAME"]=" \"\""
  923. D["PACKAGE_VERSION"]=" \"\""
  924. D["PACKAGE_STRING"]=" \"\""
  925. D["PACKAGE_BUGREPORT"]=" \"\""
  926. D["PACKAGE"]=" \"libxml2\""
  927. D["VERSION"]=" \"2.7.6\""
  928. D["PROTOTYPES"]=" 1"
  929. D["__PROTOTYPES"]=" 1"
  930. D["STDC_HEADERS"]=" 1"
  931. D["HAVE_SYS_TYPES_H"]=" 1"
  932. D["HAVE_SYS_STAT_H"]=" 1"
  933. D["HAVE_STDLIB_H"]=" 1"
  934. D["HAVE_STRING_H"]=" 1"
  935. D["HAVE_MEMORY_H"]=" 1"
  936. D["HAVE_STRINGS_H"]=" 1"
  937. D["HAVE_INTTYPES_H"]=" 1"
  938. D["HAVE_STDINT_H"]=" 1"
  939. D["HAVE_UNISTD_H"]=" 1"
  940. D["HAVE_STRING_H"]=" 1"
  941. D["HAVE_DLFCN_H"]=" 1"
  942. D["LT_OBJDIR"]=" \".libs/\""
  943. D["HAVE_ZLIB_H"]=" 1"
  944. D["HAVE_LIBZ"]=" 1"
  945. D["HAVE_DIRENT_H"]=" 1"
  946. D["STDC_HEADERS"]=" 1"
  947. D["HAVE_FCNTL_H"]=" 1"
  948. D["HAVE_UNISTD_H"]=" 1"
  949. D["HAVE_CTYPE_H"]=" 1"
  950. D["HAVE_DIRENT_H"]=" 1"
  951. D["HAVE_ERRNO_H"]=" 1"
  952. D["HAVE_MALLOC_H"]=" 1"
  953. D["HAVE_STDARG_H"]=" 1"
  954. D["HAVE_SYS_STAT_H"]=" 1"
  955. D["HAVE_SYS_TYPES_H"]=" 1"
  956. D["HAVE_STDINT_H"]=" 1"
  957. D["HAVE_TIME_H"]=" 1"
  958. D["HAVE_MATH_H"]=" 1"
  959. D["HAVE_LIMITS_H"]=" 1"
  960. D["HAVE_FLOAT_H"]=" 1"
  961. D["HAVE_STDLIB_H"]=" 1"
  962. D["HAVE_SYS_SOCKET_H"]=" 1"
  963. D["HAVE_NETINET_IN_H"]=" 1"
  964. D["HAVE_ARPA_INET_H"]=" 1"
  965. D["HAVE_NETDB_H"]=" 1"
  966. D["HAVE_SYS_TIME_H"]=" 1"
  967. D["HAVE_SYS_SELECT_H"]=" 1"
  968. D["HAVE_POLL_H"]=" 1"
  969. D["HAVE_SYS_MMAN_H"]=" 1"
  970. D["HAVE_SYS_TIMEB_H"]=" 1"
  971. D["HAVE_SIGNAL_H"]=" 1"
  972. D["HAVE_ARPA_NAMESER_H"]=" 1"
  973. D["HAVE_RESOLV_H"]=" 1"
  974. D["HAVE_DLFCN_H"]=" 1"
  975. D["HAVE_STRFTIME"]=" 1"
  976. D["HAVE_STRDUP"]=" 1"
  977. D["HAVE_STRNDUP"]=" 1"
  978. D["HAVE_STRERROR"]=" 1"
  979. D["HAVE_FINITE"]=" 1"
  980. D["HAVE_STRFTIME"]=" 1"
  981. D["HAVE_LOCALTIME"]=" 1"
  982. D["HAVE_GETTIMEOFDAY"]=" 1"
  983. D["HAVE_FTIME"]=" 1"
  984. D["HAVE_STAT"]=" 1"
  985. D["HAVE_SIGNAL"]=" 1"
  986. D["HAVE_PRINTF"]=" 1"
  987. D["HAVE_SPRINTF"]=" 1"
  988. D["HAVE_FPRINTF"]=" 1"
  989. D["HAVE_SNPRINTF"]=" 1"
  990. D["HAVE_VFPRINTF"]=" 1"
  991. D["HAVE_VSPRINTF"]=" 1"
  992. D["HAVE_VSNPRINTF"]=" 1"
  993. D["HAVE_SSCANF"]=" 1"
  994. D["HAVE_VA_COPY"]=" 1"
  995. D["XML_SOCKLEN_T"]=" socklen_t"
  996. D["SUPPORT_IP6"]=" /**/"
  997. D["HAVE_GETADDRINFO"]=" /**/"
  998. D["HAVE_ISNAN"]=" /**/"
  999. D["HAVE_ISINF"]=" /**/"
  1000. D["HAVE_DLOPEN"]=" /**/"
  1001. D["HAVE_LIBPTHREAD"]=" /**/"
  1002. D["HAVE_PTHREAD_H"]=" /**/"
  1003. D["ICONV_CONST"]=" "
  1004. for (key in D) D_is_set[key] = 1
  1005. FS = ""
  1006. }
  1007. /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
  1008. line = $ 0
  1009. split(line, arg, " ")
  1010. if (arg[1] == "#") {
  1011. defundef = arg[2]
  1012. mac1 = arg[3]
  1013. } else {
  1014. defundef = substr(arg[1], 2)
  1015. mac1 = arg[2]
  1016. }
  1017. split(mac1, mac2, "(") #)
  1018. macro = mac2[1]
  1019. prefix = substr(line, 1, index(line, defundef) - 1)
  1020. if (D_is_set[macro]) {
  1021. # Preserve the white space surrounding the "#".
  1022. print prefix "define", macro P[macro] D[macro]
  1023. next
  1024. } else {
  1025. # Replace #undef with comments. This is necessary, for example,
  1026. # in the case of _POSIX_SOURCE, which is predefined and required
  1027. # on some systems where configure will not decide to define it.
  1028. if (defundef == "undef") {
  1029. print "/*", prefix defundef, macro, "*/"
  1030. next
  1031. }
  1032. }
  1033. }
  1034. { print }
  1035. _ACAWK
  1036. { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5
  1037. $as_echo "$as_me: error: could not setup config headers machinery" >&2;}
  1038. { (exit 1); exit 1; }; }
  1039. fi # test -n "$CONFIG_HEADERS"
  1040. eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
  1041. shift
  1042. for ac_tag
  1043. do
  1044. case $ac_tag in
  1045. :[FHLC]) ac_mode=$ac_tag; continue;;
  1046. esac
  1047. case $ac_mode$ac_tag in
  1048. :[FHL]*:*);;
  1049. :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
  1050. $as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
  1051. { (exit 1); exit 1; }; };;
  1052. :[FH]-) ac_tag=-:-;;
  1053. :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  1054. esac
  1055. ac_save_IFS=$IFS
  1056. IFS=:
  1057. set x $ac_tag
  1058. IFS=$ac_save_IFS
  1059. shift
  1060. ac_file=$1
  1061. shift
  1062. case $ac_mode in
  1063. :L) ac_source=$1;;
  1064. :[FH])
  1065. ac_file_inputs=
  1066. for ac_f
  1067. do
  1068. case $ac_f in
  1069. -) ac_f="$tmp/stdin";;
  1070. *) # Look for the file first in the build tree, then in the source tree
  1071. # (if the path is not absolute). The absolute path cannot be DOS-style,
  1072. # because $ac_f cannot contain `:'.
  1073. test -f "$ac_f" ||
  1074. case $ac_f in
  1075. [\\/$]*) false;;
  1076. *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  1077. esac ||
  1078. { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
  1079. $as_echo "$as_me: error: cannot find input file: $ac_f" >&2;}
  1080. { (exit 1); exit 1; }; };;
  1081. esac
  1082. case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  1083. ac_file_inputs="$ac_file_inputs '$ac_f'"
  1084. done
  1085. # Let's still pretend it is `configure' which instantiates (i.e., don't
  1086. # use $as_me), people would be surprised to read:
  1087. # /* config.h. Generated by config.status. */
  1088. configure_input='Generated from '`
  1089. $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  1090. `' by configure.'
  1091. if test x"$ac_file" != x-; then
  1092. configure_input="$ac_file. $configure_input"
  1093. { $as_echo "$as_me:$LINENO: creating $ac_file" >&5
  1094. $as_echo "$as_me: creating $ac_file" >&6;}
  1095. fi
  1096. # Neutralize special characters interpreted by sed in replacement strings.
  1097. case $configure_input in #(
  1098. *\&* | *\|* | *\\* )
  1099. ac_sed_conf_input=`$as_echo "$configure_input" |
  1100. sed 's/[\\\\&|]/\\\\&/g'`;; #(
  1101. *) ac_sed_conf_input=$configure_input;;
  1102. esac
  1103. case $ac_tag in
  1104. *:-:* | *:-) cat >"$tmp/stdin" \
  1105. || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  1106. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  1107. { (exit 1); exit 1; }; } ;;
  1108. esac
  1109. ;;
  1110. esac
  1111. ac_dir=`$as_dirname -- "$ac_file" ||
  1112. $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1113. X"$ac_file" : 'X\(//\)[^/]' \| \
  1114. X"$ac_file" : 'X\(//\)$' \| \
  1115. X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
  1116. $as_echo X"$ac_file" |
  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. { as_dir="$ac_dir"
  1135. case $as_dir in #(
  1136. -*) as_dir=./$as_dir;;
  1137. esac
  1138. test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
  1139. as_dirs=
  1140. while :; do
  1141. case $as_dir in #(
  1142. *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
  1143. *) as_qdir=$as_dir;;
  1144. esac
  1145. as_dirs="'$as_qdir' $as_dirs"
  1146. as_dir=`$as_dirname -- "$as_dir" ||
  1147. $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1148. X"$as_dir" : 'X\(//\)[^/]' \| \
  1149. X"$as_dir" : 'X\(//\)$' \| \
  1150. X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
  1151. $as_echo X"$as_dir" |
  1152. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1153. s//\1/
  1154. q
  1155. }
  1156. /^X\(\/\/\)[^/].*/{
  1157. s//\1/
  1158. q
  1159. }
  1160. /^X\(\/\/\)$/{
  1161. s//\1/
  1162. q
  1163. }
  1164. /^X\(\/\).*/{
  1165. s//\1/
  1166. q
  1167. }
  1168. s/.*/./; q'`
  1169. test -d "$as_dir" && break
  1170. done
  1171. test -z "$as_dirs" || eval "mkdir $as_dirs"
  1172. } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
  1173. $as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
  1174. { (exit 1); exit 1; }; }; }
  1175. ac_builddir=.
  1176. case "$ac_dir" in
  1177. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1178. *)
  1179. ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  1180. # A ".." for each directory in $ac_dir_suffix.
  1181. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  1182. case $ac_top_builddir_sub in
  1183. "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1184. *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  1185. esac ;;
  1186. esac
  1187. ac_abs_top_builddir=$ac_pwd
  1188. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  1189. # for backward compatibility:
  1190. ac_top_builddir=$ac_top_build_prefix
  1191. case $srcdir in
  1192. .) # We are building in place.
  1193. ac_srcdir=.
  1194. ac_top_srcdir=$ac_top_builddir_sub
  1195. ac_abs_top_srcdir=$ac_pwd ;;
  1196. [\\/]* | ?:[\\/]* ) # Absolute name.
  1197. ac_srcdir=$srcdir$ac_dir_suffix;
  1198. ac_top_srcdir=$srcdir
  1199. ac_abs_top_srcdir=$srcdir ;;
  1200. *) # Relative name.
  1201. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  1202. ac_top_srcdir=$ac_top_build_prefix$srcdir
  1203. ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  1204. esac
  1205. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  1206. case $ac_mode in
  1207. :F)
  1208. #
  1209. # CONFIG_FILE
  1210. #
  1211. case $INSTALL in
  1212. [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
  1213. *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  1214. esac
  1215. ac_MKDIR_P=$MKDIR_P
  1216. case $MKDIR_P in
  1217. [\\/$]* | ?:[\\/]* ) ;;
  1218. */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
  1219. esac
  1220. # If the template does not know about datarootdir, expand it.
  1221. # FIXME: This hack should be removed a few years after 2.60.
  1222. ac_datarootdir_hack=; ac_datarootdir_seen=
  1223. ac_sed_dataroot='
  1224. /datarootdir/ {
  1225. p
  1226. q
  1227. }
  1228. /@datadir@/p
  1229. /@docdir@/p
  1230. /@infodir@/p
  1231. /@localedir@/p
  1232. /@mandir@/p
  1233. '
  1234. case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
  1235. *datarootdir*) ac_datarootdir_seen=yes;;
  1236. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  1237. { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  1238. $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  1239. ac_datarootdir_hack='
  1240. s&@datadir@&${datarootdir}&g
  1241. s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
  1242. s&@infodir@&${datarootdir}/info&g
  1243. s&@localedir@&${datarootdir}/locale&g
  1244. s&@mandir@&${datarootdir}/man&g
  1245. s&\${datarootdir}&${prefix}/share&g' ;;
  1246. esac
  1247. ac_sed_extra="/^[ ]*VPATH[ ]*=/{
  1248. s/:*\$(srcdir):*/:/
  1249. s/:*\${srcdir}:*/:/
  1250. s/:*@srcdir@:*/:/
  1251. s/^\([^=]*=[ ]*\):*/\1/
  1252. s/:*$//
  1253. s/^[^=]*=[ ]*$//
  1254. }
  1255. :t
  1256. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  1257. s|@configure_input@|$ac_sed_conf_input|;t t
  1258. s&@top_builddir@&$ac_top_builddir_sub&;t t
  1259. s&@top_build_prefix@&$ac_top_build_prefix&;t t
  1260. s&@srcdir@&$ac_srcdir&;t t
  1261. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  1262. s&@top_srcdir@&$ac_top_srcdir&;t t
  1263. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  1264. s&@builddir@&$ac_builddir&;t t
  1265. s&@abs_builddir@&$ac_abs_builddir&;t t
  1266. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  1267. s&@INSTALL@&$ac_INSTALL&;t t
  1268. s&@MKDIR_P@&$ac_MKDIR_P&;t t
  1269. $ac_datarootdir_hack
  1270. "
  1271. eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
  1272. || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  1273. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  1274. { (exit 1); exit 1; }; }
  1275. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  1276. { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
  1277. { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
  1278. { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1279. which seems to be undefined. Please make sure it is defined." >&5
  1280. $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1281. which seems to be undefined. Please make sure it is defined." >&2;}
  1282. rm -f "$tmp/stdin"
  1283. case $ac_file in
  1284. -) cat "$tmp/out" && rm -f "$tmp/out";;
  1285. *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
  1286. esac \
  1287. || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  1288. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  1289. { (exit 1); exit 1; }; }
  1290. ;;
  1291. :H)
  1292. #
  1293. # CONFIG_HEADER
  1294. #
  1295. if test x"$ac_file" != x-; then
  1296. {
  1297. $as_echo "/* $configure_input */" \
  1298. && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
  1299. } >"$tmp/config.h" \
  1300. || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  1301. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  1302. { (exit 1); exit 1; }; }
  1303. if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
  1304. { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5
  1305. $as_echo "$as_me: $ac_file is unchanged" >&6;}
  1306. else
  1307. rm -f "$ac_file"
  1308. mv "$tmp/config.h" "$ac_file" \
  1309. || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
  1310. $as_echo "$as_me: error: could not create $ac_file" >&2;}
  1311. { (exit 1); exit 1; }; }
  1312. fi
  1313. else
  1314. $as_echo "/* $configure_input */" \
  1315. && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
  1316. || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5
  1317. $as_echo "$as_me: error: could not create -" >&2;}
  1318. { (exit 1); exit 1; }; }
  1319. fi
  1320. # Compute "$ac_file"'s index in $config_headers.
  1321. _am_arg="$ac_file"
  1322. _am_stamp_count=1
  1323. for _am_header in $config_headers :; do
  1324. case $_am_header in
  1325. $_am_arg | $_am_arg:* )
  1326. break ;;
  1327. * )
  1328. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  1329. esac
  1330. done
  1331. echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
  1332. $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1333. X"$_am_arg" : 'X\(//\)[^/]' \| \
  1334. X"$_am_arg" : 'X\(//\)$' \| \
  1335. X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
  1336. $as_echo X"$_am_arg" |
  1337. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1338. s//\1/
  1339. q
  1340. }
  1341. /^X\(\/\/\)[^/].*/{
  1342. s//\1/
  1343. q
  1344. }
  1345. /^X\(\/\/\)$/{
  1346. s//\1/
  1347. q
  1348. }
  1349. /^X\(\/\).*/{
  1350. s//\1/
  1351. q
  1352. }
  1353. s/.*/./; q'`/stamp-h$_am_stamp_count
  1354. ;;
  1355. :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5
  1356. $as_echo "$as_me: executing $ac_file commands" >&6;}
  1357. ;;
  1358. esac
  1359. case $ac_file$ac_mode in
  1360. "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
  1361. # Autoconf 2.62 quotes --file arguments for eval, but not when files
  1362. # are listed without --file. Let's play safe and only enable the eval
  1363. # if we detect the quoting.
  1364. case $CONFIG_FILES in
  1365. *\'*) eval set x "$CONFIG_FILES" ;;
  1366. *) set x $CONFIG_FILES ;;
  1367. esac
  1368. shift
  1369. for mf
  1370. do
  1371. # Strip MF so we end up with the name of the file.
  1372. mf=`echo "$mf" | sed -e 's/:.*$//'`
  1373. # Check whether this is an Automake generated Makefile or not.
  1374. # We used to match only the files named `Makefile.in', but
  1375. # some people rename them; so instead we look at the file content.
  1376. # Grep'ing the first line is not enough: some people post-process
  1377. # each Makefile.in and add a new line on top of each file to say so.
  1378. # Grep'ing the whole file is not good either: AIX grep has a line
  1379. # limit of 2048, but all sed's we know have understand at least 4000.
  1380. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  1381. dirpart=`$as_dirname -- "$mf" ||
  1382. $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1383. X"$mf" : 'X\(//\)[^/]' \| \
  1384. X"$mf" : 'X\(//\)$' \| \
  1385. X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
  1386. $as_echo X"$mf" |
  1387. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1388. s//\1/
  1389. q
  1390. }
  1391. /^X\(\/\/\)[^/].*/{
  1392. s//\1/
  1393. q
  1394. }
  1395. /^X\(\/\/\)$/{
  1396. s//\1/
  1397. q
  1398. }
  1399. /^X\(\/\).*/{
  1400. s//\1/
  1401. q
  1402. }
  1403. s/.*/./; q'`
  1404. else
  1405. continue
  1406. fi
  1407. # Extract the definition of DEPDIR, am__include, and am__quote
  1408. # from the Makefile without running `make'.
  1409. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  1410. test -z "$DEPDIR" && continue
  1411. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  1412. test -z "am__include" && continue
  1413. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  1414. # When using ansi2knr, U may be empty or an underscore; expand it
  1415. U=`sed -n 's/^U = //p' < "$mf"`
  1416. # Find all dependency output files, they are included files with
  1417. # $(DEPDIR) in their names. We invoke sed twice because it is the
  1418. # simplest approach to changing $(DEPDIR) to its actual value in the
  1419. # expansion.
  1420. for file in `sed -n "
  1421. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  1422. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
  1423. # Make sure the directory exists.
  1424. test -f "$dirpart/$file" && continue
  1425. fdir=`$as_dirname -- "$file" ||
  1426. $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1427. X"$file" : 'X\(//\)[^/]' \| \
  1428. X"$file" : 'X\(//\)$' \| \
  1429. X"$file" : 'X\(/\)' \| . 2>/dev/null ||
  1430. $as_echo X"$file" |
  1431. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1432. s//\1/
  1433. q
  1434. }
  1435. /^X\(\/\/\)[^/].*/{
  1436. s//\1/
  1437. q
  1438. }
  1439. /^X\(\/\/\)$/{
  1440. s//\1/
  1441. q
  1442. }
  1443. /^X\(\/\).*/{
  1444. s//\1/
  1445. q
  1446. }
  1447. s/.*/./; q'`
  1448. { as_dir=$dirpart/$fdir
  1449. case $as_dir in #(
  1450. -*) as_dir=./$as_dir;;
  1451. esac
  1452. test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
  1453. as_dirs=
  1454. while :; do
  1455. case $as_dir in #(
  1456. *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
  1457. *) as_qdir=$as_dir;;
  1458. esac
  1459. as_dirs="'$as_qdir' $as_dirs"
  1460. as_dir=`$as_dirname -- "$as_dir" ||
  1461. $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1462. X"$as_dir" : 'X\(//\)[^/]' \| \
  1463. X"$as_dir" : 'X\(//\)$' \| \
  1464. X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
  1465. $as_echo X"$as_dir" |
  1466. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1467. s//\1/
  1468. q
  1469. }
  1470. /^X\(\/\/\)[^/].*/{
  1471. s//\1/
  1472. q
  1473. }
  1474. /^X\(\/\/\)$/{
  1475. s//\1/
  1476. q
  1477. }
  1478. /^X\(\/\).*/{
  1479. s//\1/
  1480. q
  1481. }
  1482. s/.*/./; q'`
  1483. test -d "$as_dir" && break
  1484. done
  1485. test -z "$as_dirs" || eval "mkdir $as_dirs"
  1486. } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
  1487. $as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
  1488. { (exit 1); exit 1; }; }; }
  1489. # echo "creating $dirpart/$file"
  1490. echo '# dummy' > "$dirpart/$file"
  1491. done
  1492. done
  1493. }
  1494. ;;
  1495. "libtool":C)
  1496. # See if we are running on zsh, and set the options which allow our
  1497. # commands through without removal of \ escapes.
  1498. if test -n "${ZSH_VERSION+set}" ; then
  1499. setopt NO_GLOB_SUBST
  1500. fi
  1501. cfgfile="${ofile}T"
  1502. trap "$RM \"$cfgfile\"; exit 1" 1 2 15
  1503. $RM "$cfgfile"
  1504. cat <<_LT_EOF >> "$cfgfile"
  1505. #! $SHELL
  1506. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  1507. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  1508. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1509. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  1510. #
  1511. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  1512. # 2006, 2007, 2008 Free Software Foundation, Inc.
  1513. # Written by Gordon Matzigkeit, 1996
  1514. #
  1515. # This file is part of GNU Libtool.
  1516. #
  1517. # GNU Libtool is free software; you can redistribute it and/or
  1518. # modify it under the terms of the GNU General Public License as
  1519. # published by the Free Software Foundation; either version 2 of
  1520. # the License, or (at your option) any later version.
  1521. #
  1522. # As a special exception to the GNU General Public License,
  1523. # if you distribute this file as part of a program or library that
  1524. # is built using GNU Libtool, you may include this file under the
  1525. # same distribution terms that you use for the rest of that program.
  1526. #
  1527. # GNU Libtool is distributed in the hope that it will be useful,
  1528. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  1529. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1530. # GNU General Public License for more details.
  1531. #
  1532. # You should have received a copy of the GNU General Public License
  1533. # along with GNU Libtool; see the file COPYING. If not, a copy
  1534. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  1535. # obtained by writing to the Free Software Foundation, Inc.,
  1536. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  1537. # The names of the tagged configurations supported by this script.
  1538. available_tags=""
  1539. # ### BEGIN LIBTOOL CONFIG
  1540. # Assembler program.
  1541. AS=$AS
  1542. # DLL creation program.
  1543. DLLTOOL=$DLLTOOL
  1544. # Object dumper program.
  1545. OBJDUMP=$OBJDUMP
  1546. # Which release of libtool.m4 was used?
  1547. macro_version=$macro_version
  1548. macro_revision=$macro_revision
  1549. # Whether or not to build shared libraries.
  1550. build_libtool_libs=$enable_shared
  1551. # Whether or not to build static libraries.
  1552. build_old_libs=$enable_static
  1553. # What type of objects to build.
  1554. pic_mode=$pic_mode
  1555. # Whether or not to optimize for fast installation.
  1556. fast_install=$enable_fast_install
  1557. # The host system.
  1558. host_alias=$host_alias
  1559. host=$host
  1560. host_os=$host_os
  1561. # The build system.
  1562. build_alias=$build_alias
  1563. build=$build
  1564. build_os=$build_os
  1565. # A sed program that does not truncate output.
  1566. SED=$lt_SED
  1567. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  1568. Xsed="\$SED -e 1s/^X//"
  1569. # A grep program that handles long lines.
  1570. GREP=$lt_GREP
  1571. # An ERE matcher.
  1572. EGREP=$lt_EGREP
  1573. # A literal string matcher.
  1574. FGREP=$lt_FGREP
  1575. # A BSD- or MS-compatible name lister.
  1576. NM=$lt_NM
  1577. # Whether we need soft or hard links.
  1578. LN_S=$lt_LN_S
  1579. # What is the maximum length of a command?
  1580. max_cmd_len=$max_cmd_len
  1581. # Object file suffix (normally "o").
  1582. objext=$ac_objext
  1583. # Executable file suffix (normally "").
  1584. exeext=$exeext
  1585. # whether the shell understands "unset".
  1586. lt_unset=$lt_unset
  1587. # turn spaces into newlines.
  1588. SP2NL=$lt_lt_SP2NL
  1589. # turn newlines into spaces.
  1590. NL2SP=$lt_lt_NL2SP
  1591. # How to create reloadable object files.
  1592. reload_flag=$lt_reload_flag
  1593. reload_cmds=$lt_reload_cmds
  1594. # Method to check whether dependent libraries are shared objects.
  1595. deplibs_check_method=$lt_deplibs_check_method
  1596. # Command to use when deplibs_check_method == "file_magic".
  1597. file_magic_cmd=$lt_file_magic_cmd
  1598. # The archiver.
  1599. AR=$lt_AR
  1600. AR_FLAGS=$lt_AR_FLAGS
  1601. # A symbol stripping program.
  1602. STRIP=$lt_STRIP
  1603. # Commands used to install an old-style archive.
  1604. RANLIB=$lt_RANLIB
  1605. old_postinstall_cmds=$lt_old_postinstall_cmds
  1606. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  1607. # A C compiler.
  1608. LTCC=$lt_CC
  1609. # LTCC compiler flags.
  1610. LTCFLAGS=$lt_CFLAGS
  1611. # Take the output of nm and produce a listing of raw symbols and C names.
  1612. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  1613. # Transform the output of nm in a proper C declaration.
  1614. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  1615. # Transform the output of nm in a C name address pair.
  1616. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  1617. # Transform the output of nm in a C name address pair when lib prefix is needed.
  1618. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
  1619. # The name of the directory that contains temporary libtool files.
  1620. objdir=$objdir
  1621. # Shell to use when invoking shell scripts.
  1622. SHELL=$lt_SHELL
  1623. # An echo program that does not interpret backslashes.
  1624. ECHO=$lt_ECHO
  1625. # Used to examine libraries when file_magic_cmd begins with "file".
  1626. MAGIC_CMD=$MAGIC_CMD
  1627. # Must we lock files when doing compilation?
  1628. need_locks=$lt_need_locks
  1629. # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
  1630. DSYMUTIL=$lt_DSYMUTIL
  1631. # Tool to change global to local symbols on Mac OS X.
  1632. NMEDIT=$lt_NMEDIT
  1633. # Tool to manipulate fat objects and archives on Mac OS X.
  1634. LIPO=$lt_LIPO
  1635. # ldd/readelf like tool for Mach-O binaries on Mac OS X.
  1636. OTOOL=$lt_OTOOL
  1637. # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
  1638. OTOOL64=$lt_OTOOL64
  1639. # Old archive suffix (normally "a").
  1640. libext=$libext
  1641. # Shared library suffix (normally ".so").
  1642. shrext_cmds=$lt_shrext_cmds
  1643. # The commands to extract the exported symbol list from a shared archive.
  1644. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  1645. # Variables whose values should be saved in libtool wrapper scripts and
  1646. # restored at link time.
  1647. variables_saved_for_relink=$lt_variables_saved_for_relink
  1648. # Do we need the "lib" prefix for modules?
  1649. need_lib_prefix=$need_lib_prefix
  1650. # Do we need a version for libraries?
  1651. need_version=$need_version
  1652. # Library versioning type.
  1653. version_type=$version_type
  1654. # Shared library runtime path variable.
  1655. runpath_var=$runpath_var
  1656. # Shared library path variable.
  1657. shlibpath_var=$shlibpath_var
  1658. # Is shlibpath searched before the hard-coded library search path?
  1659. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  1660. # Format of library name prefix.
  1661. libname_spec=$lt_libname_spec
  1662. # List of archive names. First name is the real one, the rest are links.
  1663. # The last name is the one that the linker finds with -lNAME
  1664. library_names_spec=$lt_library_names_spec
  1665. # The coded name of the library, if different from the real name.
  1666. soname_spec=$lt_soname_spec
  1667. # Command to use after installation of a shared archive.
  1668. postinstall_cmds=$lt_postinstall_cmds
  1669. # Command to use after uninstallation of a shared archive.
  1670. postuninstall_cmds=$lt_postuninstall_cmds
  1671. # Commands used to finish a libtool library installation in a directory.
  1672. finish_cmds=$lt_finish_cmds
  1673. # As "finish_cmds", except a single script fragment to be evaled but
  1674. # not shown.
  1675. finish_eval=$lt_finish_eval
  1676. # Whether we should hardcode library paths into libraries.
  1677. hardcode_into_libs=$hardcode_into_libs
  1678. # Compile-time system search path for libraries.
  1679. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  1680. # Run-time system search path for libraries.
  1681. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  1682. # Whether dlopen is supported.
  1683. dlopen_support=$enable_dlopen
  1684. # Whether dlopen of programs is supported.
  1685. dlopen_self=$enable_dlopen_self
  1686. # Whether dlopen of statically linked programs is supported.
  1687. dlopen_self_static=$enable_dlopen_self_static
  1688. # Commands to strip libraries.
  1689. old_striplib=$lt_old_striplib
  1690. striplib=$lt_striplib
  1691. # The linker used to build libraries.
  1692. LD=$lt_LD
  1693. # Commands used to build an old-style archive.
  1694. old_archive_cmds=$lt_old_archive_cmds
  1695. # A language specific compiler.
  1696. CC=$lt_compiler
  1697. # Is the compiler the GNU compiler?
  1698. with_gcc=$GCC
  1699. # Compiler flag to turn off builtin functions.
  1700. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
  1701. # How to pass a linker flag through the compiler.
  1702. wl=$lt_lt_prog_compiler_wl
  1703. # Additional compiler flags for building library objects.
  1704. pic_flag=$lt_lt_prog_compiler_pic
  1705. # Compiler flag to prevent dynamic linking.
  1706. link_static_flag=$lt_lt_prog_compiler_static
  1707. # Does compiler simultaneously support -c and -o options?
  1708. compiler_c_o=$lt_lt_cv_prog_compiler_c_o
  1709. # Whether or not to add -lc for building shared libraries.
  1710. build_libtool_need_lc=$archive_cmds_need_lc
  1711. # Whether or not to disallow shared libs when runtime libs are static.
  1712. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
  1713. # Compiler flag to allow reflexive dlopens.
  1714. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
  1715. # Compiler flag to generate shared objects directly from archives.
  1716. whole_archive_flag_spec=$lt_whole_archive_flag_spec
  1717. # Whether the compiler copes with passing no objects directly.
  1718. compiler_needs_object=$lt_compiler_needs_object
  1719. # Create an old-style archive from a shared archive.
  1720. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
  1721. # Create a temporary old-style archive to link instead of a shared archive.
  1722. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
  1723. # Commands used to build a shared archive.
  1724. archive_cmds=$lt_archive_cmds
  1725. archive_expsym_cmds=$lt_archive_expsym_cmds
  1726. # Commands used to build a loadable module if different from building
  1727. # a shared archive.
  1728. module_cmds=$lt_module_cmds
  1729. module_expsym_cmds=$lt_module_expsym_cmds
  1730. # Whether we are building with GNU ld or not.
  1731. with_gnu_ld=$lt_with_gnu_ld
  1732. # Flag that allows shared libraries with undefined symbols to be built.
  1733. allow_undefined_flag=$lt_allow_undefined_flag
  1734. # Flag that enforces no undefined symbols.
  1735. no_undefined_flag=$lt_no_undefined_flag
  1736. # Flag to hardcode \$libdir into a binary during linking.
  1737. # This must work even if \$libdir does not exist
  1738. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
  1739. # If ld is used when linking, flag to hardcode \$libdir into a binary
  1740. # during linking. This must work even if \$libdir does not exist.
  1741. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
  1742. # Whether we need a single "-rpath" flag with a separated argument.
  1743. hardcode_libdir_separator=$lt_hardcode_libdir_separator
  1744. # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
  1745. # DIR into the resulting binary.
  1746. hardcode_direct=$hardcode_direct
  1747. # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
  1748. # DIR into the resulting binary and the resulting library dependency is
  1749. # "absolute",i.e impossible to change by setting \${shlibpath_var} if the
  1750. # library is relocated.
  1751. hardcode_direct_absolute=$hardcode_direct_absolute
  1752. # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  1753. # into the resulting binary.
  1754. hardcode_minus_L=$hardcode_minus_L
  1755. # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  1756. # into the resulting binary.
  1757. hardcode_shlibpath_var=$hardcode_shlibpath_var
  1758. # Set to "yes" if building a shared library automatically hardcodes DIR
  1759. # into the library and all subsequent libraries and executables linked
  1760. # against it.
  1761. hardcode_automatic=$hardcode_automatic
  1762. # Set to yes if linker adds runtime paths of dependent libraries
  1763. # to runtime path list.
  1764. inherit_rpath=$inherit_rpath
  1765. # Whether libtool must link a program against all its dependency libraries.
  1766. link_all_deplibs=$link_all_deplibs
  1767. # Fix the shell variable \$srcfile for the compiler.
  1768. fix_srcfile_path=$lt_fix_srcfile_path
  1769. # Set to "yes" if exported symbols are required.
  1770. always_export_symbols=$always_export_symbols
  1771. # The commands to list exported symbols.
  1772. export_symbols_cmds=$lt_export_symbols_cmds
  1773. # Symbols that should not be listed in the preloaded symbols.
  1774. exclude_expsyms=$lt_exclude_expsyms
  1775. # Symbols that must always be exported.
  1776. include_expsyms=$lt_include_expsyms
  1777. # Commands necessary for linking programs (against libraries) with templates.
  1778. prelink_cmds=$lt_prelink_cmds
  1779. # Specify filename containing input files.
  1780. file_list_spec=$lt_file_list_spec
  1781. # How to hardcode a shared library path into an executable.
  1782. hardcode_action=$hardcode_action
  1783. # ### END LIBTOOL CONFIG
  1784. _LT_EOF
  1785. case $host_os in
  1786. aix3*)
  1787. cat <<\_LT_EOF >> "$cfgfile"
  1788. # AIX sometimes has problems with the GCC collect2 program. For some
  1789. # reason, if we set the COLLECT_NAMES environment variable, the problems
  1790. # vanish in a puff of smoke.
  1791. if test "X${COLLECT_NAMES+set}" != Xset; then
  1792. COLLECT_NAMES=
  1793. export COLLECT_NAMES
  1794. fi
  1795. _LT_EOF
  1796. ;;
  1797. esac
  1798. ltmain="$ac_aux_dir/ltmain.sh"
  1799. # We use sed instead of cat because bash on DJGPP gets confused if
  1800. # if finds mixed CR/LF and LF-only lines. Since sed operates in
  1801. # text mode, it properly converts lines to CR/LF. This bash problem
  1802. # is reportedly fixed, but why not run on old versions too?
  1803. sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
  1804. || (rm -f "$cfgfile"; exit 1)
  1805. case $xsi_shell in
  1806. yes)
  1807. cat << \_LT_EOF >> "$cfgfile"
  1808. # func_dirname file append nondir_replacement
  1809. # Compute the dirname of FILE. If nonempty, add APPEND to the result,
  1810. # otherwise set result to NONDIR_REPLACEMENT.
  1811. func_dirname ()
  1812. {
  1813. case ${1} in
  1814. */*) func_dirname_result="${1%/*}${2}" ;;
  1815. * ) func_dirname_result="${3}" ;;
  1816. esac
  1817. }
  1818. # func_basename file
  1819. func_basename ()
  1820. {
  1821. func_basename_result="${1##*/}"
  1822. }
  1823. # func_dirname_and_basename file append nondir_replacement
  1824. # perform func_basename and func_dirname in a single function
  1825. # call:
  1826. # dirname: Compute the dirname of FILE. If nonempty,
  1827. # add APPEND to the result, otherwise set result
  1828. # to NONDIR_REPLACEMENT.
  1829. # value returned in "$func_dirname_result"
  1830. # basename: Compute filename of FILE.
  1831. # value retuned in "$func_basename_result"
  1832. # Implementation must be kept synchronized with func_dirname
  1833. # and func_basename. For efficiency, we do not delegate to
  1834. # those functions but instead duplicate the functionality here.
  1835. func_dirname_and_basename ()
  1836. {
  1837. case ${1} in
  1838. */*) func_dirname_result="${1%/*}${2}" ;;
  1839. * ) func_dirname_result="${3}" ;;
  1840. esac
  1841. func_basename_result="${1##*/}"
  1842. }
  1843. # func_stripname prefix suffix name
  1844. # strip PREFIX and SUFFIX off of NAME.
  1845. # PREFIX and SUFFIX must not contain globbing or regex special
  1846. # characters, hashes, percent signs, but SUFFIX may contain a leading
  1847. # dot (in which case that matches only a dot).
  1848. func_stripname ()
  1849. {
  1850. # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
  1851. # positional parameters, so assign one to ordinary parameter first.
  1852. func_stripname_result=${3}
  1853. func_stripname_result=${func_stripname_result#"${1}"}
  1854. func_stripname_result=${func_stripname_result%"${2}"}
  1855. }
  1856. # func_opt_split
  1857. func_opt_split ()
  1858. {
  1859. func_opt_split_opt=${1%%=*}
  1860. func_opt_split_arg=${1#*=}
  1861. }
  1862. # func_lo2o object
  1863. func_lo2o ()
  1864. {
  1865. case ${1} in
  1866. *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
  1867. *) func_lo2o_result=${1} ;;
  1868. esac
  1869. }
  1870. # func_xform libobj-or-source
  1871. func_xform ()
  1872. {
  1873. func_xform_result=${1%.*}.lo
  1874. }
  1875. # func_arith arithmetic-term...
  1876. func_arith ()
  1877. {
  1878. func_arith_result=$(( $* ))
  1879. }
  1880. # func_len string
  1881. # STRING may not start with a hyphen.
  1882. func_len ()
  1883. {
  1884. func_len_result=${#1}
  1885. }
  1886. _LT_EOF
  1887. ;;
  1888. *) # Bourne compatible functions.
  1889. cat << \_LT_EOF >> "$cfgfile"
  1890. # func_dirname file append nondir_replacement
  1891. # Compute the dirname of FILE. If nonempty, add APPEND to the result,
  1892. # otherwise set result to NONDIR_REPLACEMENT.
  1893. func_dirname ()
  1894. {
  1895. # Extract subdirectory from the argument.
  1896. func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
  1897. if test "X$func_dirname_result" = "X${1}"; then
  1898. func_dirname_result="${3}"
  1899. else
  1900. func_dirname_result="$func_dirname_result${2}"
  1901. fi
  1902. }
  1903. # func_basename file
  1904. func_basename ()
  1905. {
  1906. func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
  1907. }
  1908. # func_stripname prefix suffix name
  1909. # strip PREFIX and SUFFIX off of NAME.
  1910. # PREFIX and SUFFIX must not contain globbing or regex special
  1911. # characters, hashes, percent signs, but SUFFIX may contain a leading
  1912. # dot (in which case that matches only a dot).
  1913. # func_strip_suffix prefix name
  1914. func_stripname ()
  1915. {
  1916. case ${2} in
  1917. .*) func_stripname_result=`$ECHO "X${3}" \
  1918. | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
  1919. *) func_stripname_result=`$ECHO "X${3}" \
  1920. | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
  1921. esac
  1922. }
  1923. # sed scripts:
  1924. my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
  1925. my_sed_long_arg='1s/^-[^=]*=//'
  1926. # func_opt_split
  1927. func_opt_split ()
  1928. {
  1929. func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
  1930. func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
  1931. }
  1932. # func_lo2o object
  1933. func_lo2o ()
  1934. {
  1935. func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
  1936. }
  1937. # func_xform libobj-or-source
  1938. func_xform ()
  1939. {
  1940. func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'`
  1941. }
  1942. # func_arith arithmetic-term...
  1943. func_arith ()
  1944. {
  1945. func_arith_result=`expr "$@"`
  1946. }
  1947. # func_len string
  1948. # STRING may not start with a hyphen.
  1949. func_len ()
  1950. {
  1951. func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
  1952. }
  1953. _LT_EOF
  1954. esac
  1955. case $lt_shell_append in
  1956. yes)
  1957. cat << \_LT_EOF >> "$cfgfile"
  1958. # func_append var value
  1959. # Append VALUE to the end of shell variable VAR.
  1960. func_append ()
  1961. {
  1962. eval "$1+=\$2"
  1963. }
  1964. _LT_EOF
  1965. ;;
  1966. *)
  1967. cat << \_LT_EOF >> "$cfgfile"
  1968. # func_append var value
  1969. # Append VALUE to the end of shell variable VAR.
  1970. func_append ()
  1971. {
  1972. eval "$1=\$$1\$2"
  1973. }
  1974. _LT_EOF
  1975. ;;
  1976. esac
  1977. sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
  1978. || (rm -f "$cfgfile"; exit 1)
  1979. mv -f "$cfgfile" "$ofile" ||
  1980. (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  1981. chmod +x "$ofile"
  1982. ;;
  1983. esac
  1984. done # for ac_tag
  1985. { (exit 0); exit 0; }