config.status 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. #! /bin/bash
  2. # Generated by configure.
  3. # Run this file to recreate the current configuration.
  4. # Compiler output produced by configure, useful for debugging
  5. # configure, is in config.log if it exists.
  6. debug=false
  7. ac_cs_recheck=false
  8. ac_cs_silent=false
  9. SHELL=${CONFIG_SHELL-/bin/bash}
  10. export SHELL
  11. ## -------------------- ##
  12. ## M4sh Initialization. ##
  13. ## -------------------- ##
  14. # Be more Bourne compatible
  15. DUALCASE=1; export DUALCASE # for MKS sh
  16. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
  17. emulate sh
  18. NULLCMD=:
  19. # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  20. # is contrary to our usage. Disable this feature.
  21. alias -g '${1+"$@"}'='"$@"'
  22. setopt NO_GLOB_SUBST
  23. else
  24. case `(set -o) 2>/dev/null` in #(
  25. *posix*) :
  26. set -o posix ;; #(
  27. *) :
  28. ;;
  29. esac
  30. fi
  31. as_nl='
  32. '
  33. export as_nl
  34. # Printing a long string crashes Solaris 7 /usr/bin/printf.
  35. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  36. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  37. as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  38. # Prefer a ksh shell builtin over an external printf program on Solaris,
  39. # but without wasting forks for bash or zsh.
  40. if test -z "$BASH_VERSION$ZSH_VERSION" \
  41. && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  42. as_echo='print -r --'
  43. as_echo_n='print -rn --'
  44. elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  45. as_echo='printf %s\n'
  46. as_echo_n='printf %s'
  47. else
  48. if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  49. as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  50. as_echo_n='/usr/ucb/echo -n'
  51. else
  52. as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
  53. as_echo_n_body='eval
  54. arg=$1;
  55. case $arg in #(
  56. *"$as_nl"*)
  57. expr "X$arg" : "X\\(.*\\)$as_nl";
  58. arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
  59. esac;
  60. expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
  61. '
  62. export as_echo_n_body
  63. as_echo_n='sh -c $as_echo_n_body as_echo'
  64. fi
  65. export as_echo_body
  66. as_echo='sh -c $as_echo_body as_echo'
  67. fi
  68. # The user is always right.
  69. if test "${PATH_SEPARATOR+set}" != set; then
  70. PATH_SEPARATOR=:
  71. (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  72. (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  73. PATH_SEPARATOR=';'
  74. }
  75. fi
  76. # IFS
  77. # We need space, tab and new line, in precisely that order. Quoting is
  78. # there to prevent editors from complaining about space-tab.
  79. # (If _AS_PATH_WALK were called with IFS unset, it would disable word
  80. # splitting by setting IFS to empty value.)
  81. IFS=" "" $as_nl"
  82. # Find who we are. Look in the path if we contain no directory separator.
  83. as_myself=
  84. case $0 in #((
  85. *[\\/]* ) as_myself=$0 ;;
  86. *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  87. for as_dir in $PATH
  88. do
  89. IFS=$as_save_IFS
  90. test -z "$as_dir" && as_dir=.
  91. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  92. done
  93. IFS=$as_save_IFS
  94. ;;
  95. esac
  96. # We did not find ourselves, most probably we were run as `sh COMMAND'
  97. # in which case we are not to be found in the path.
  98. if test "x$as_myself" = x; then
  99. as_myself=$0
  100. fi
  101. if test ! -f "$as_myself"; then
  102. $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  103. exit 1
  104. fi
  105. # Unset variables that we do not need and which cause bugs (e.g. in
  106. # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
  107. # suppresses any "Segmentation fault" message there. '((' could
  108. # trigger a bug in pdksh 5.2.14.
  109. for as_var in BASH_ENV ENV MAIL MAILPATH
  110. do eval test x\${$as_var+set} = xset \
  111. && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
  112. done
  113. PS1='$ '
  114. PS2='> '
  115. PS4='+ '
  116. # NLS nuisances.
  117. LC_ALL=C
  118. export LC_ALL
  119. LANGUAGE=C
  120. export LANGUAGE
  121. # CDPATH.
  122. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  123. # as_fn_error STATUS ERROR [LINENO LOG_FD]
  124. # ----------------------------------------
  125. # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  126. # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  127. # script with STATUS, using 1 if that was 0.
  128. as_fn_error ()
  129. {
  130. as_status=$1; test $as_status -eq 0 && as_status=1
  131. if test "$4"; then
  132. as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  133. $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
  134. fi
  135. $as_echo "$as_me: error: $2" >&2
  136. as_fn_exit $as_status
  137. } # as_fn_error
  138. # as_fn_set_status STATUS
  139. # -----------------------
  140. # Set $? to STATUS, without forking.
  141. as_fn_set_status ()
  142. {
  143. return $1
  144. } # as_fn_set_status
  145. # as_fn_exit STATUS
  146. # -----------------
  147. # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
  148. as_fn_exit ()
  149. {
  150. set +e
  151. as_fn_set_status $1
  152. exit $1
  153. } # as_fn_exit
  154. # as_fn_unset VAR
  155. # ---------------
  156. # Portably unset VAR.
  157. as_fn_unset ()
  158. {
  159. { eval $1=; unset $1;}
  160. }
  161. as_unset=as_fn_unset
  162. # as_fn_append VAR VALUE
  163. # ----------------------
  164. # Append the text in VALUE to the end of the definition contained in VAR. Take
  165. # advantage of any shell optimizations that allow amortized linear growth over
  166. # repeated appends, instead of the typical quadratic growth present in naive
  167. # implementations.
  168. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
  169. eval 'as_fn_append ()
  170. {
  171. eval $1+=\$2
  172. }'
  173. else
  174. as_fn_append ()
  175. {
  176. eval $1=\$$1\$2
  177. }
  178. fi # as_fn_append
  179. # as_fn_arith ARG...
  180. # ------------------
  181. # Perform arithmetic evaluation on the ARGs, and store the result in the
  182. # global $as_val. Take advantage of shells that can avoid forks. The arguments
  183. # must be portable across $(()) and expr.
  184. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  185. eval 'as_fn_arith ()
  186. {
  187. as_val=$(( $* ))
  188. }'
  189. else
  190. as_fn_arith ()
  191. {
  192. as_val=`expr "$@" || test $? -eq 1`
  193. }
  194. fi # as_fn_arith
  195. if expr a : '\(a\)' >/dev/null 2>&1 &&
  196. test "X`expr 00001 : '.*\(...\)'`" = X001; then
  197. as_expr=expr
  198. else
  199. as_expr=false
  200. fi
  201. if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  202. as_basename=basename
  203. else
  204. as_basename=false
  205. fi
  206. if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  207. as_dirname=dirname
  208. else
  209. as_dirname=false
  210. fi
  211. as_me=`$as_basename -- "$0" ||
  212. $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  213. X"$0" : 'X\(//\)$' \| \
  214. X"$0" : 'X\(/\)' \| . 2>/dev/null ||
  215. $as_echo X/"$0" |
  216. sed '/^.*\/\([^/][^/]*\)\/*$/{
  217. s//\1/
  218. q
  219. }
  220. /^X\/\(\/\/\)$/{
  221. s//\1/
  222. q
  223. }
  224. /^X\/\(\/\).*/{
  225. s//\1/
  226. q
  227. }
  228. s/.*/./; q'`
  229. # Avoid depending upon Character Ranges.
  230. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  231. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  232. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  233. as_cr_digits='0123456789'
  234. as_cr_alnum=$as_cr_Letters$as_cr_digits
  235. ECHO_C= ECHO_N= ECHO_T=
  236. case `echo -n x` in #(((((
  237. -n*)
  238. case `echo 'xy\c'` in
  239. *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  240. xy) ECHO_C='\c';;
  241. *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
  242. ECHO_T=' ';;
  243. esac;;
  244. *)
  245. ECHO_N='-n';;
  246. esac
  247. rm -f conf$$ conf$$.exe conf$$.file
  248. if test -d conf$$.dir; then
  249. rm -f conf$$.dir/conf$$.file
  250. else
  251. rm -f conf$$.dir
  252. mkdir conf$$.dir 2>/dev/null
  253. fi
  254. if (echo >conf$$.file) 2>/dev/null; then
  255. if ln -s conf$$.file conf$$ 2>/dev/null; then
  256. as_ln_s='ln -s'
  257. # ... but there are two gotchas:
  258. # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  259. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  260. # In both cases, we have to default to `cp -pR'.
  261. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  262. as_ln_s='cp -pR'
  263. elif ln conf$$.file conf$$ 2>/dev/null; then
  264. as_ln_s=ln
  265. else
  266. as_ln_s='cp -pR'
  267. fi
  268. else
  269. as_ln_s='cp -pR'
  270. fi
  271. rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  272. rmdir conf$$.dir 2>/dev/null
  273. # as_fn_mkdir_p
  274. # -------------
  275. # Create "$as_dir" as a directory, including parents if necessary.
  276. as_fn_mkdir_p ()
  277. {
  278. case $as_dir in #(
  279. -*) as_dir=./$as_dir;;
  280. esac
  281. test -d "$as_dir" || eval $as_mkdir_p || {
  282. as_dirs=
  283. while :; do
  284. case $as_dir in #(
  285. *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
  286. *) as_qdir=$as_dir;;
  287. esac
  288. as_dirs="'$as_qdir' $as_dirs"
  289. as_dir=`$as_dirname -- "$as_dir" ||
  290. $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  291. X"$as_dir" : 'X\(//\)[^/]' \| \
  292. X"$as_dir" : 'X\(//\)$' \| \
  293. X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
  294. $as_echo X"$as_dir" |
  295. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  296. s//\1/
  297. q
  298. }
  299. /^X\(\/\/\)[^/].*/{
  300. s//\1/
  301. q
  302. }
  303. /^X\(\/\/\)$/{
  304. s//\1/
  305. q
  306. }
  307. /^X\(\/\).*/{
  308. s//\1/
  309. q
  310. }
  311. s/.*/./; q'`
  312. test -d "$as_dir" && break
  313. done
  314. test -z "$as_dirs" || eval "mkdir $as_dirs"
  315. } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
  316. } # as_fn_mkdir_p
  317. if mkdir -p . 2>/dev/null; then
  318. as_mkdir_p='mkdir -p "$as_dir"'
  319. else
  320. test -d ./-p && rmdir ./-p
  321. as_mkdir_p=false
  322. fi
  323. # as_fn_executable_p FILE
  324. # -----------------------
  325. # Test if FILE is an executable regular file.
  326. as_fn_executable_p ()
  327. {
  328. test -f "$1" && test -x "$1"
  329. } # as_fn_executable_p
  330. as_test_x='test -x'
  331. as_executable_p=as_fn_executable_p
  332. # Sed expression to map a string onto a valid CPP name.
  333. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  334. # Sed expression to map a string onto a valid variable name.
  335. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  336. exec 6>&1
  337. ## ----------------------------------- ##
  338. ## Main body of $CONFIG_STATUS script. ##
  339. ## ----------------------------------- ##
  340. # Save the log message, to keep $0 and so on meaningful, and to
  341. # report actual input values of CONFIG_FILES etc. instead of their
  342. # values after options handling.
  343. ac_log="
  344. This file was extended by LZO $as_me 2.09, which was
  345. generated by GNU Autoconf 2.69. Invocation command line was
  346. CONFIG_FILES = $CONFIG_FILES
  347. CONFIG_HEADERS = $CONFIG_HEADERS
  348. CONFIG_LINKS = $CONFIG_LINKS
  349. CONFIG_COMMANDS = $CONFIG_COMMANDS
  350. $ $0 $@
  351. on `(hostname || uname -n) 2>/dev/null | sed 1q`
  352. "
  353. # Files that config.status was made for.
  354. config_files=" Makefile"
  355. config_headers=" config.h:config.hin"
  356. config_commands=" depfiles libtool"
  357. ac_cs_usage="\
  358. \`$as_me' instantiates files and other configuration actions
  359. from templates according to the current configuration. Unless the files
  360. and actions are specified as TAGs, all are instantiated by default.
  361. Usage: $0 [OPTION]... [TAG]...
  362. -h, --help print this help, then exit
  363. -V, --version print version number and configuration settings, then exit
  364. --config print configuration, then exit
  365. -q, --quiet, --silent
  366. do not print progress messages
  367. -d, --debug don't remove temporary files
  368. --recheck update $as_me by reconfiguring in the same conditions
  369. --file=FILE[:TEMPLATE]
  370. instantiate the configuration file FILE
  371. --header=FILE[:TEMPLATE]
  372. instantiate the configuration header FILE
  373. Configuration files:
  374. $config_files
  375. Configuration headers:
  376. $config_headers
  377. Configuration commands:
  378. $config_commands
  379. Report bugs to <markus@oberhumer.com>.
  380. LZO home page: <http://www.oberhumer.com/opensource/lzo/>."
  381. ac_cs_config="'--host=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' '--prefix=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/release' 'host_alias=arm-linux-gnueabihf'"
  382. ac_cs_version="\
  383. LZO config.status 2.09
  384. configured by ./configure, generated by GNU Autoconf 2.69,
  385. with options \"$ac_cs_config\"
  386. Copyright (C) 2012 Free Software Foundation, Inc.
  387. This config.status script is free software; the Free Software Foundation
  388. gives unlimited permission to copy, distribute and modify it."
  389. ac_pwd='/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09'
  390. srcdir='.'
  391. INSTALL='/usr/bin/install -c'
  392. MKDIR_P='/bin/mkdir -p'
  393. AWK='gawk'
  394. test -n "$AWK" || AWK=awk
  395. # The default lists apply if the user does not specify any file.
  396. ac_need_defaults=:
  397. while test $# != 0
  398. do
  399. case $1 in
  400. --*=?*)
  401. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  402. ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  403. ac_shift=:
  404. ;;
  405. --*=)
  406. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  407. ac_optarg=
  408. ac_shift=:
  409. ;;
  410. *)
  411. ac_option=$1
  412. ac_optarg=$2
  413. ac_shift=shift
  414. ;;
  415. esac
  416. case $ac_option in
  417. # Handling of the options.
  418. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  419. ac_cs_recheck=: ;;
  420. --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  421. $as_echo "$ac_cs_version"; exit ;;
  422. --config | --confi | --conf | --con | --co | --c )
  423. $as_echo "$ac_cs_config"; exit ;;
  424. --debug | --debu | --deb | --de | --d | -d )
  425. debug=: ;;
  426. --file | --fil | --fi | --f )
  427. $ac_shift
  428. case $ac_optarg in
  429. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  430. '') as_fn_error $? "missing file argument" ;;
  431. esac
  432. as_fn_append CONFIG_FILES " '$ac_optarg'"
  433. ac_need_defaults=false;;
  434. --header | --heade | --head | --hea )
  435. $ac_shift
  436. case $ac_optarg in
  437. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  438. esac
  439. as_fn_append CONFIG_HEADERS " '$ac_optarg'"
  440. ac_need_defaults=false;;
  441. --he | --h)
  442. # Conflict between --help and --header
  443. as_fn_error $? "ambiguous option: \`$1'
  444. Try \`$0 --help' for more information.";;
  445. --help | --hel | -h )
  446. $as_echo "$ac_cs_usage"; exit ;;
  447. -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  448. | -silent | --silent | --silen | --sile | --sil | --si | --s)
  449. ac_cs_silent=: ;;
  450. # This is an error.
  451. -*) as_fn_error $? "unrecognized option: \`$1'
  452. Try \`$0 --help' for more information." ;;
  453. *) as_fn_append ac_config_targets " $1"
  454. ac_need_defaults=false ;;
  455. esac
  456. shift
  457. done
  458. ac_configure_extra_args=
  459. if $ac_cs_silent; then
  460. exec 6>/dev/null
  461. ac_configure_extra_args="$ac_configure_extra_args --silent"
  462. fi
  463. if $ac_cs_recheck; then
  464. set X /bin/bash './configure' '--host=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' '--prefix=/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/release' 'host_alias=arm-linux-gnueabihf' $ac_configure_extra_args --no-create --no-recursion
  465. shift
  466. $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
  467. CONFIG_SHELL='/bin/bash'
  468. export CONFIG_SHELL
  469. exec "$@"
  470. fi
  471. exec 5>>config.log
  472. {
  473. echo
  474. sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  475. ## Running $as_me. ##
  476. _ASBOX
  477. $as_echo "$ac_log"
  478. } >&5
  479. #
  480. # INIT-COMMANDS
  481. #
  482. AMDEP_TRUE="" ac_aux_dir="autoconf"
  483. # The HP-UX ksh and POSIX shell print the target directory to stdout
  484. # if CDPATH is set.
  485. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  486. sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
  487. double_quote_subst='s/\(["`\\]\)/\\\1/g'
  488. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
  489. enable_static='yes'
  490. enable_shared='no'
  491. macro_version='2.4.2.418'
  492. macro_revision='2.4.2.418'
  493. pic_mode='default'
  494. enable_fast_install='needless'
  495. SHELL='/bin/bash'
  496. ECHO='printf %s\n'
  497. PATH_SEPARATOR=':'
  498. host_alias='arm-linux-gnueabihf'
  499. host='arm-unknown-linux-gnueabihf'
  500. host_os='linux-gnueabihf'
  501. build_alias=''
  502. build='x86_64-unknown-linux-gnu'
  503. build_os='linux-gnu'
  504. SED='/bin/sed'
  505. Xsed='/bin/sed -e 1s/^X//'
  506. GREP='/bin/grep'
  507. EGREP='/bin/grep -E'
  508. FGREP='/bin/grep -F'
  509. 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'
  510. NM='nm'
  511. LN_S='ln -s'
  512. max_cmd_len='1572864'
  513. ac_objext='o'
  514. exeext=''
  515. lt_unset='unset'
  516. lt_SP2NL='tr \040 \012'
  517. lt_NL2SP='tr \015\012 \040\040'
  518. lt_cv_to_host_file_cmd='func_convert_file_noop'
  519. lt_cv_to_tool_file_cmd='func_convert_file_noop'
  520. reload_flag=' -r'
  521. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  522. OBJDUMP='objdump'
  523. deplibs_check_method='pass_all'
  524. file_magic_cmd='$MAGIC_CMD'
  525. file_magic_glob=''
  526. want_nocaseglob='no'
  527. DLLTOOL='false'
  528. sharedlib_from_linklib_cmd='printf %s\n'
  529. AR='ar'
  530. AR_FLAGS='cru'
  531. archiver_list_spec='@'
  532. STRIP='strip'
  533. RANLIB='ranlib'
  534. old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'
  535. old_postuninstall_cmds=''
  536. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
  537. lock_old_archive_extraction='no'
  538. 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'
  539. CFLAGS='-g -O2'
  540. 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'
  541. GCC='yes'
  542. 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'\'''
  543. lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
  544. lt_cv_sys_global_symbol_to_import=''
  545. lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\'''
  546. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\'''
  547. lt_cv_nm_interface='BSD nm'
  548. nm_file_list_spec='@'
  549. lt_sysroot=''
  550. objdir='.libs'
  551. MAGIC_CMD='file'
  552. lt_prog_compiler_no_builtin_flag=' -fno-builtin'
  553. lt_prog_compiler_pic=' -fPIC -DPIC'
  554. lt_prog_compiler_wl='-Wl,'
  555. lt_prog_compiler_static='-static'
  556. lt_cv_prog_compiler_c_o='yes'
  557. need_locks='no'
  558. MANIFEST_TOOL=':'
  559. DSYMUTIL=''
  560. NMEDIT=''
  561. LIPO=''
  562. OTOOL=''
  563. OTOOL64=''
  564. libext='a'
  565. shrext_cmds='.so'
  566. extract_expsyms_cmds=''
  567. archive_cmds_need_lc='yes'
  568. enable_shared_with_static_runtimes='no'
  569. export_dynamic_flag_spec='$wl--export-dynamic'
  570. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive'
  571. compiler_needs_object='no'
  572. old_archive_from_new_cmds=''
  573. old_archive_from_expsyms_cmds=''
  574. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
  575. archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
  576. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  577. echo "local: *; };" >> $output_objdir/$libname.ver~
  578. $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
  579. module_cmds=''
  580. module_expsym_cmds=''
  581. with_gnu_ld='yes'
  582. allow_undefined_flag=''
  583. no_undefined_flag=''
  584. hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
  585. hardcode_libdir_separator=''
  586. hardcode_direct='no'
  587. hardcode_direct_absolute='no'
  588. hardcode_minus_L='no'
  589. hardcode_shlibpath_var='unsupported'
  590. hardcode_automatic='no'
  591. inherit_rpath='no'
  592. link_all_deplibs='unknown'
  593. always_export_symbols='no'
  594. export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  595. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
  596. include_expsyms=''
  597. prelink_cmds=''
  598. postlink_cmds=''
  599. file_list_spec=''
  600. variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
  601. need_lib_prefix='no'
  602. need_version='no'
  603. version_type='linux'
  604. runpath_var='LD_RUN_PATH'
  605. shlibpath_var='LD_LIBRARY_PATH'
  606. shlibpath_overrides_runpath='no'
  607. libname_spec='lib$name'
  608. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
  609. soname_spec='$libname$release$shared_ext$major'
  610. install_override_mode=''
  611. postinstall_cmds=''
  612. postuninstall_cmds=''
  613. finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
  614. finish_eval=''
  615. hardcode_into_libs='yes'
  616. 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 '
  617. 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 '
  618. hardcode_action='immediate'
  619. enable_dlopen='unknown'
  620. enable_dlopen_self='unknown'
  621. enable_dlopen_self_static='unknown'
  622. old_striplib='strip --strip-debug'
  623. striplib='strip --strip-unneeded'
  624. 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'
  625. LTCFLAGS='-g -O2'
  626. 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'
  627. # A function that is used when there is no print builtin or printf.
  628. func_fallback_echo ()
  629. {
  630. eval 'cat <<_LTECHO_EOF
  631. $1
  632. _LTECHO_EOF'
  633. }
  634. # Quote evaled strings.
  635. for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface 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
  636. case `eval \\$ECHO \\""\\$$var"\\"` in
  637. *[\\\`\"\$]*)
  638. eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes
  639. ;;
  640. *)
  641. eval "lt_$var=\\\"\$$var\\\""
  642. ;;
  643. esac
  644. done
  645. # Double-quote double-evaled strings.
  646. 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
  647. case `eval \\$ECHO \\""\\$$var"\\"` in
  648. *[\\\`\"\$]*)
  649. eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes
  650. ;;
  651. *)
  652. eval "lt_$var=\\\"\$$var\\\""
  653. ;;
  654. esac
  655. done
  656. ac_aux_dir='autoconf'
  657. # See if we are running on zsh, and set the options that allow our
  658. # commands through without removal of \ escapes INIT.
  659. if test -n "${ZSH_VERSION+set}"; then
  660. setopt NO_GLOB_SUBST
  661. fi
  662. PACKAGE='lzo'
  663. VERSION='2.09'
  664. RM='rm -f'
  665. ofile='libtool'
  666. # Handling of arguments.
  667. for ac_config_target in $ac_config_targets
  668. do
  669. case $ac_config_target in
  670. "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
  671. "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.hin" ;;
  672. "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
  673. "Makefile") CONFIG_FILES="$CONFIG_FILES 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_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  684. test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  685. fi
  686. # Have a temporary directory for convenience. Make it in the build tree
  687. # simply because there is no reason against having it here, and in addition,
  688. # creating and moving files from /tmp can sometimes cause problems.
  689. # Hook for its removal unless debugging.
  690. # Note that there is a small window in which the directory will not be cleaned:
  691. # after its creation but before its name has been assigned to `$tmp'.
  692. $debug ||
  693. {
  694. tmp= ac_tmp=
  695. trap 'exit_status=$?
  696. : "${ac_tmp:=$tmp}"
  697. { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
  698. ' 0
  699. trap 'as_fn_exit 1' 1 2 13 15
  700. }
  701. # Create a (secure) tmp directory for tmp files.
  702. {
  703. tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  704. test -d "$tmp"
  705. } ||
  706. {
  707. tmp=./conf$$-$RANDOM
  708. (umask 077 && mkdir "$tmp")
  709. } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
  710. ac_tmp=$tmp
  711. # Set up the scripts for CONFIG_FILES section.
  712. # No need to generate them if there are no CONFIG_FILES.
  713. # This happens for instance with `./config.status config.h'.
  714. if test -n "$CONFIG_FILES"; then
  715. ac_cr=`echo X | tr X '\015'`
  716. # On cygwin, bash can eat \r inside `` if the user requested igncr.
  717. # But we know of no other shell where ac_cr would be empty at this
  718. # point, so we can use a bashism as a fallback.
  719. if test "x$ac_cr" = x; then
  720. eval ac_cr=\$\'\\r\'
  721. fi
  722. ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  723. if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  724. ac_cs_awk_cr='\\r'
  725. else
  726. ac_cs_awk_cr=$ac_cr
  727. fi
  728. echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
  729. cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
  730. S["am__EXEEXT_FALSE"]=""
  731. S["am__EXEEXT_TRUE"]="#"
  732. S["LTLIBOBJS"]=""
  733. S["LIBOBJS"]=""
  734. S["LZO_USE_ASM_i386_obj_elf32_FALSE"]=""
  735. S["LZO_USE_ASM_i386_obj_elf32_TRUE"]="#"
  736. S["LZO_USE_ASM_i386_src_gas_FALSE"]=""
  737. S["LZO_USE_ASM_i386_src_gas_TRUE"]="#"
  738. S["OTOOL64"]=""
  739. S["OTOOL"]=""
  740. S["LIPO"]=""
  741. S["NMEDIT"]=""
  742. S["DSYMUTIL"]=""
  743. S["MANIFEST_TOOL"]=":"
  744. S["RANLIB"]="ranlib"
  745. S["DLLTOOL"]="false"
  746. S["OBJDUMP"]="objdump"
  747. S["LN_S"]="ln -s"
  748. S["NM"]="nm"
  749. S["ac_ct_DUMPBIN"]="link -dump"
  750. S["DUMPBIN"]=":"
  751. 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"
  752. S["FGREP"]="/bin/grep -F"
  753. S["SED"]="/bin/sed"
  754. S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
  755. S["AM_BACKSLASH"]="\\"
  756. S["AM_DEFAULT_VERBOSITY"]="0"
  757. S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)"
  758. S["AM_V"]="$(V)"
  759. S["am__fastdepCC_FALSE"]="#"
  760. S["am__fastdepCC_TRUE"]=""
  761. S["CCDEPMODE"]="depmode=gcc3"
  762. S["am__untar"]="$${TAR-tar} xf -"
  763. S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
  764. S["AMTAR"]="$${TAR-tar}"
  765. S["SET_MAKE"]=""
  766. S["AWK"]="gawk"
  767. S["mkdir_p"]="$(MKDIR_P)"
  768. S["MKDIR_P"]="/bin/mkdir -p"
  769. S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
  770. S["STRIP"]="strip"
  771. S["install_sh"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/autoconf/install-sh"
  772. S["MAKEINFO"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/autoconf/missing makeinfo"
  773. S["AUTOHEADER"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/autoconf/missing autoheader"
  774. S["AUTOMAKE"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/autoconf/missing automake-1.15"
  775. S["AUTOCONF"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/autoconf/missing autoconf"
  776. S["ACLOCAL"]="${SHELL} /opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/autoconf/missing aclocal-1.15"
  777. S["VERSION"]="2.09"
  778. S["PACKAGE"]="lzo"
  779. S["CYGPATH_W"]="echo"
  780. S["am__isrc"]=""
  781. S["INSTALL_DATA"]="${INSTALL} -m 644"
  782. S["INSTALL_SCRIPT"]="${INSTALL}"
  783. S["INSTALL_PROGRAM"]="${INSTALL}"
  784. S["EGREP"]="/bin/grep -E"
  785. S["GREP"]="/bin/grep"
  786. 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"
  787. S["am__fastdepCCAS_FALSE"]="#"
  788. S["am__fastdepCCAS_TRUE"]=""
  789. S["CCASDEPMODE"]="depmode=gcc3"
  790. S["am__nodep"]="_no"
  791. S["AMDEPBACKSLASH"]="\\"
  792. S["AMDEP_FALSE"]="#"
  793. S["AMDEP_TRUE"]=""
  794. S["am__quote"]=""
  795. S["am__include"]="include"
  796. S["DEPDIR"]=".deps"
  797. S["am__leading_dot"]="."
  798. S["CCASFLAGS"]="-g -O2"
  799. S["CCAS"]="/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc"
  800. S["ac_ct_AR"]="ar"
  801. S["AR"]="ar"
  802. S["OBJEXT"]="o"
  803. S["EXEEXT"]=""
  804. S["ac_ct_CC"]=""
  805. S["CPPFLAGS"]=""
  806. S["LDFLAGS"]=""
  807. S["CFLAGS"]="-g -O2"
  808. 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"
  809. S["MAINT"]="#"
  810. S["MAINTAINER_MODE_FALSE"]=""
  811. S["MAINTAINER_MODE_TRUE"]="#"
  812. S["target_os"]="linux-gnueabihf"
  813. S["target_vendor"]="unknown"
  814. S["target_cpu"]="arm"
  815. S["target"]="arm-unknown-linux-gnueabihf"
  816. S["host_os"]="linux-gnueabihf"
  817. S["host_vendor"]="unknown"
  818. S["host_cpu"]="arm"
  819. S["host"]="arm-unknown-linux-gnueabihf"
  820. S["build_os"]="linux-gnu"
  821. S["build_vendor"]="unknown"
  822. S["build_cpu"]="x86_64"
  823. S["build"]="x86_64-unknown-linux-gnu"
  824. S["target_alias"]=""
  825. S["host_alias"]="arm-linux-gnueabihf"
  826. S["build_alias"]=""
  827. S["LIBS"]=""
  828. S["ECHO_T"]=""
  829. S["ECHO_N"]="-n"
  830. S["ECHO_C"]=""
  831. S["DEFS"]="-DLZO_HAVE_CONFIG_H=1"
  832. S["mandir"]="${datarootdir}/man"
  833. S["localedir"]="${datarootdir}/locale"
  834. S["libdir"]="${exec_prefix}/lib"
  835. S["psdir"]="${docdir}"
  836. S["pdfdir"]="${docdir}"
  837. S["dvidir"]="${docdir}"
  838. S["htmldir"]="${docdir}"
  839. S["infodir"]="${datarootdir}/info"
  840. S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
  841. S["oldincludedir"]="/usr/include"
  842. S["includedir"]="${prefix}/include"
  843. S["localstatedir"]="${prefix}/var"
  844. S["sharedstatedir"]="${prefix}/com"
  845. S["sysconfdir"]="${prefix}/etc"
  846. S["datadir"]="${datarootdir}"
  847. S["datarootdir"]="${prefix}/share"
  848. S["libexecdir"]="${exec_prefix}/libexec"
  849. S["sbindir"]="${exec_prefix}/sbin"
  850. S["bindir"]="${exec_prefix}/bin"
  851. S["program_transform_name"]="s,x,x,"
  852. S["prefix"]="/opt/ti-processor-sdk-linux-am335x-evm-04.02.00.09/EVSE/GPL/lzo-2.09/release"
  853. S["exec_prefix"]="${prefix}"
  854. S["PACKAGE_URL"]="http://www.oberhumer.com/opensource/lzo/"
  855. S["PACKAGE_BUGREPORT"]="markus@oberhumer.com"
  856. S["PACKAGE_STRING"]="LZO 2.09"
  857. S["PACKAGE_VERSION"]="2.09"
  858. S["PACKAGE_TARNAME"]="lzo"
  859. S["PACKAGE_NAME"]="LZO"
  860. S["PATH_SEPARATOR"]=":"
  861. S["SHELL"]="/bin/bash"
  862. _ACAWK
  863. cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
  864. for (key in S) S_is_set[key] = 1
  865. FS = ""
  866. }
  867. {
  868. line = $ 0
  869. nfields = split(line, field, "@")
  870. substed = 0
  871. len = length(field[1])
  872. for (i = 2; i < nfields; i++) {
  873. key = field[i]
  874. keylen = length(key)
  875. if (S_is_set[key]) {
  876. value = S[key]
  877. line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  878. len += length(value) + length(field[++i])
  879. substed = 1
  880. } else
  881. len += 1 + keylen
  882. }
  883. print line
  884. }
  885. _ACAWK
  886. if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  887. sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  888. else
  889. cat
  890. fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
  891. || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
  892. fi # test -n "$CONFIG_FILES"
  893. # Set up the scripts for CONFIG_HEADERS section.
  894. # No need to generate them if there are no CONFIG_HEADERS.
  895. # This happens for instance with `./config.status Makefile'.
  896. if test -n "$CONFIG_HEADERS"; then
  897. cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
  898. BEGIN {
  899. D["PACKAGE_NAME"]=" \"LZO\""
  900. D["PACKAGE_TARNAME"]=" \"lzo\""
  901. D["PACKAGE_VERSION"]=" \"2.09\""
  902. D["PACKAGE_STRING"]=" \"LZO 2.09\""
  903. D["PACKAGE_BUGREPORT"]=" \"markus@oberhumer.com\""
  904. D["PACKAGE_URL"]=" \"http://www.oberhumer.com/opensource/lzo/\""
  905. D["STDC_HEADERS"]=" 1"
  906. D["HAVE_SYS_TYPES_H"]=" 1"
  907. D["HAVE_SYS_STAT_H"]=" 1"
  908. D["HAVE_STDLIB_H"]=" 1"
  909. D["HAVE_STRING_H"]=" 1"
  910. D["HAVE_MEMORY_H"]=" 1"
  911. D["HAVE_STRINGS_H"]=" 1"
  912. D["HAVE_INTTYPES_H"]=" 1"
  913. D["HAVE_STDINT_H"]=" 1"
  914. D["HAVE_UNISTD_H"]=" 1"
  915. D["LZO_ABI_LITTLE_ENDIAN"]=" 1"
  916. D["_FILE_OFFSET_BITS"]=" 64"
  917. D["PACKAGE"]=" \"lzo\""
  918. D["VERSION"]=" \"2.09\""
  919. D["HAVE_DLFCN_H"]=" 1"
  920. D["LT_OBJDIR"]=" \".libs/\""
  921. D["TIME_WITH_SYS_TIME"]=" 1"
  922. D["HAVE_ASSERT_H"]=" 1"
  923. D["HAVE_CTYPE_H"]=" 1"
  924. D["HAVE_DIRENT_H"]=" 1"
  925. D["HAVE_ERRNO_H"]=" 1"
  926. D["HAVE_FCNTL_H"]=" 1"
  927. D["HAVE_FLOAT_H"]=" 1"
  928. D["HAVE_LIMITS_H"]=" 1"
  929. D["HAVE_MALLOC_H"]=" 1"
  930. D["HAVE_MEMORY_H"]=" 1"
  931. D["HAVE_SETJMP_H"]=" 1"
  932. D["HAVE_SIGNAL_H"]=" 1"
  933. D["HAVE_STDARG_H"]=" 1"
  934. D["HAVE_STDDEF_H"]=" 1"
  935. D["HAVE_STDINT_H"]=" 1"
  936. D["HAVE_STDIO_H"]=" 1"
  937. D["HAVE_STDLIB_H"]=" 1"
  938. D["HAVE_STRING_H"]=" 1"
  939. D["HAVE_STRINGS_H"]=" 1"
  940. D["HAVE_TIME_H"]=" 1"
  941. D["HAVE_UNISTD_H"]=" 1"
  942. D["HAVE_UTIME_H"]=" 1"
  943. D["HAVE_SYS_MMAN_H"]=" 1"
  944. D["HAVE_SYS_RESOURCE_H"]=" 1"
  945. D["HAVE_SYS_STAT_H"]=" 1"
  946. D["HAVE_SYS_TIME_H"]=" 1"
  947. D["HAVE_SYS_TYPES_H"]=" 1"
  948. D["HAVE_SYS_WAIT_H"]=" 1"
  949. D["RETSIGTYPE"]=" void"
  950. D["SIZEOF_SHORT"]=" 2"
  951. D["SIZEOF_INT"]=" 4"
  952. D["SIZEOF_LONG"]=" 4"
  953. D["SIZEOF_LONG_LONG"]=" 8"
  954. D["SIZEOF___INT16"]=" 0"
  955. D["SIZEOF___INT32"]=" 0"
  956. D["SIZEOF___INT64"]=" 0"
  957. D["SIZEOF_VOID_P"]=" 4"
  958. D["SIZEOF_SIZE_T"]=" 4"
  959. D["SIZEOF_PTRDIFF_T"]=" 4"
  960. D["SIZEOF___INT32"]=" 0"
  961. D["SIZEOF_INTMAX_T"]=" 8"
  962. D["SIZEOF_UINTMAX_T"]=" 8"
  963. D["SIZEOF_INTPTR_T"]=" 4"
  964. D["SIZEOF_UINTPTR_T"]=" 4"
  965. D["SIZEOF_FLOAT"]=" 4"
  966. D["SIZEOF_DOUBLE"]=" 8"
  967. D["SIZEOF_LONG_DOUBLE"]=" 8"
  968. D["SIZEOF_DEV_T"]=" 8"
  969. D["SIZEOF_FPOS_T"]=" 16"
  970. D["SIZEOF_MODE_T"]=" 4"
  971. D["SIZEOF_OFF_T"]=" 8"
  972. D["SIZEOF_SSIZE_T"]=" 4"
  973. D["SIZEOF_TIME_T"]=" 4"
  974. D["HAVE_ACCESS"]=" 1"
  975. D["HAVE_ATEXIT"]=" 1"
  976. D["HAVE_ATOI"]=" 1"
  977. D["HAVE_ATOL"]=" 1"
  978. D["HAVE_CHMOD"]=" 1"
  979. D["HAVE_CHOWN"]=" 1"
  980. D["HAVE_CLOCK_GETCPUCLOCKID"]=" 1"
  981. D["HAVE_CLOCK_GETRES"]=" 1"
  982. D["HAVE_CLOCK_GETTIME"]=" 1"
  983. D["HAVE_CTIME"]=" 1"
  984. D["HAVE_DIFFTIME"]=" 1"
  985. D["HAVE_FSTAT"]=" 1"
  986. D["HAVE_GETENV"]=" 1"
  987. D["HAVE_GETPAGESIZE"]=" 1"
  988. D["HAVE_GETRUSAGE"]=" 1"
  989. D["HAVE_GETTIMEOFDAY"]=" 1"
  990. D["HAVE_GMTIME"]=" 1"
  991. D["HAVE_ISATTY"]=" 1"
  992. D["HAVE_LOCALTIME"]=" 1"
  993. D["HAVE_LONGJMP"]=" 1"
  994. D["HAVE_LSTAT"]=" 1"
  995. D["HAVE_MEMCMP"]=" 1"
  996. D["HAVE_MEMCPY"]=" 1"
  997. D["HAVE_MEMMOVE"]=" 1"
  998. D["HAVE_MEMSET"]=" 1"
  999. D["HAVE_MKDIR"]=" 1"
  1000. D["HAVE_MKTIME"]=" 1"
  1001. D["HAVE_MMAP"]=" 1"
  1002. D["HAVE_MPROTECT"]=" 1"
  1003. D["HAVE_MUNMAP"]=" 1"
  1004. D["HAVE_QSORT"]=" 1"
  1005. D["HAVE_RAISE"]=" 1"
  1006. D["HAVE_RMDIR"]=" 1"
  1007. D["HAVE_SETJMP"]=" 1"
  1008. D["HAVE_SIGNAL"]=" 1"
  1009. D["HAVE_SNPRINTF"]=" 1"
  1010. D["HAVE_STRCASECMP"]=" 1"
  1011. D["HAVE_STRCHR"]=" 1"
  1012. D["HAVE_STRDUP"]=" 1"
  1013. D["HAVE_STRERROR"]=" 1"
  1014. D["HAVE_STRFTIME"]=" 1"
  1015. D["HAVE_STRNCASECMP"]=" 1"
  1016. D["HAVE_STRRCHR"]=" 1"
  1017. D["HAVE_STRSTR"]=" 1"
  1018. D["HAVE_TIME"]=" 1"
  1019. D["HAVE_UMASK"]=" 1"
  1020. D["HAVE_UTIME"]=" 1"
  1021. D["HAVE_VSNPRINTF"]=" 1"
  1022. for (key in D) D_is_set[key] = 1
  1023. FS = ""
  1024. }
  1025. /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
  1026. line = $ 0
  1027. split(line, arg, " ")
  1028. if (arg[1] == "#") {
  1029. defundef = arg[2]
  1030. mac1 = arg[3]
  1031. } else {
  1032. defundef = substr(arg[1], 2)
  1033. mac1 = arg[2]
  1034. }
  1035. split(mac1, mac2, "(") #)
  1036. macro = mac2[1]
  1037. prefix = substr(line, 1, index(line, defundef) - 1)
  1038. if (D_is_set[macro]) {
  1039. # Preserve the white space surrounding the "#".
  1040. print prefix "define", macro P[macro] D[macro]
  1041. next
  1042. } else {
  1043. # Replace #undef with comments. This is necessary, for example,
  1044. # in the case of _POSIX_SOURCE, which is predefined and required
  1045. # on some systems where configure will not decide to define it.
  1046. if (defundef == "undef") {
  1047. print "/*", prefix defundef, macro, "*/"
  1048. next
  1049. }
  1050. }
  1051. }
  1052. { print }
  1053. _ACAWK
  1054. as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
  1055. fi # test -n "$CONFIG_HEADERS"
  1056. eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
  1057. shift
  1058. for ac_tag
  1059. do
  1060. case $ac_tag in
  1061. :[FHLC]) ac_mode=$ac_tag; continue;;
  1062. esac
  1063. case $ac_mode$ac_tag in
  1064. :[FHL]*:*);;
  1065. :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
  1066. :[FH]-) ac_tag=-:-;;
  1067. :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  1068. esac
  1069. ac_save_IFS=$IFS
  1070. IFS=:
  1071. set x $ac_tag
  1072. IFS=$ac_save_IFS
  1073. shift
  1074. ac_file=$1
  1075. shift
  1076. case $ac_mode in
  1077. :L) ac_source=$1;;
  1078. :[FH])
  1079. ac_file_inputs=
  1080. for ac_f
  1081. do
  1082. case $ac_f in
  1083. -) ac_f="$ac_tmp/stdin";;
  1084. *) # Look for the file first in the build tree, then in the source tree
  1085. # (if the path is not absolute). The absolute path cannot be DOS-style,
  1086. # because $ac_f cannot contain `:'.
  1087. test -f "$ac_f" ||
  1088. case $ac_f in
  1089. [\\/$]*) false;;
  1090. *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  1091. esac ||
  1092. as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
  1093. esac
  1094. case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  1095. as_fn_append ac_file_inputs " '$ac_f'"
  1096. done
  1097. # Let's still pretend it is `configure' which instantiates (i.e., don't
  1098. # use $as_me), people would be surprised to read:
  1099. # /* config.h. Generated by config.status. */
  1100. configure_input='Generated from '`
  1101. $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  1102. `' by configure.'
  1103. if test x"$ac_file" != x-; then
  1104. configure_input="$ac_file. $configure_input"
  1105. { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
  1106. $as_echo "$as_me: creating $ac_file" >&6;}
  1107. fi
  1108. # Neutralize special characters interpreted by sed in replacement strings.
  1109. case $configure_input in #(
  1110. *\&* | *\|* | *\\* )
  1111. ac_sed_conf_input=`$as_echo "$configure_input" |
  1112. sed 's/[\\\\&|]/\\\\&/g'`;; #(
  1113. *) ac_sed_conf_input=$configure_input;;
  1114. esac
  1115. case $ac_tag in
  1116. *:-:* | *:-) cat >"$ac_tmp/stdin" \
  1117. || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
  1118. esac
  1119. ;;
  1120. esac
  1121. ac_dir=`$as_dirname -- "$ac_file" ||
  1122. $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1123. X"$ac_file" : 'X\(//\)[^/]' \| \
  1124. X"$ac_file" : 'X\(//\)$' \| \
  1125. X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
  1126. $as_echo X"$ac_file" |
  1127. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1128. s//\1/
  1129. q
  1130. }
  1131. /^X\(\/\/\)[^/].*/{
  1132. s//\1/
  1133. q
  1134. }
  1135. /^X\(\/\/\)$/{
  1136. s//\1/
  1137. q
  1138. }
  1139. /^X\(\/\).*/{
  1140. s//\1/
  1141. q
  1142. }
  1143. s/.*/./; q'`
  1144. as_dir="$ac_dir"; as_fn_mkdir_p
  1145. ac_builddir=.
  1146. case "$ac_dir" in
  1147. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1148. *)
  1149. ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  1150. # A ".." for each directory in $ac_dir_suffix.
  1151. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  1152. case $ac_top_builddir_sub in
  1153. "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1154. *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  1155. esac ;;
  1156. esac
  1157. ac_abs_top_builddir=$ac_pwd
  1158. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  1159. # for backward compatibility:
  1160. ac_top_builddir=$ac_top_build_prefix
  1161. case $srcdir in
  1162. .) # We are building in place.
  1163. ac_srcdir=.
  1164. ac_top_srcdir=$ac_top_builddir_sub
  1165. ac_abs_top_srcdir=$ac_pwd ;;
  1166. [\\/]* | ?:[\\/]* ) # Absolute name.
  1167. ac_srcdir=$srcdir$ac_dir_suffix;
  1168. ac_top_srcdir=$srcdir
  1169. ac_abs_top_srcdir=$srcdir ;;
  1170. *) # Relative name.
  1171. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  1172. ac_top_srcdir=$ac_top_build_prefix$srcdir
  1173. ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  1174. esac
  1175. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  1176. case $ac_mode in
  1177. :F)
  1178. #
  1179. # CONFIG_FILE
  1180. #
  1181. case $INSTALL in
  1182. [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
  1183. *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  1184. esac
  1185. ac_MKDIR_P=$MKDIR_P
  1186. case $MKDIR_P in
  1187. [\\/$]* | ?:[\\/]* ) ;;
  1188. */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
  1189. esac
  1190. # If the template does not know about datarootdir, expand it.
  1191. # FIXME: This hack should be removed a few years after 2.60.
  1192. ac_datarootdir_hack=; ac_datarootdir_seen=
  1193. ac_sed_dataroot='
  1194. /datarootdir/ {
  1195. p
  1196. q
  1197. }
  1198. /@datadir@/p
  1199. /@docdir@/p
  1200. /@infodir@/p
  1201. /@localedir@/p
  1202. /@mandir@/p'
  1203. case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
  1204. *datarootdir*) ac_datarootdir_seen=yes;;
  1205. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  1206. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  1207. $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  1208. ac_datarootdir_hack='
  1209. s&@datadir@&${datarootdir}&g
  1210. s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
  1211. s&@infodir@&${datarootdir}/info&g
  1212. s&@localedir@&${datarootdir}/locale&g
  1213. s&@mandir@&${datarootdir}/man&g
  1214. s&\${datarootdir}&${prefix}/share&g' ;;
  1215. esac
  1216. ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
  1217. h
  1218. s///
  1219. s/^/:/
  1220. s/[ ]*$/:/
  1221. s/:\$(srcdir):/:/g
  1222. s/:\${srcdir}:/:/g
  1223. s/:@srcdir@:/:/g
  1224. s/^:*//
  1225. s/:*$//
  1226. x
  1227. s/\(=[ ]*\).*/\1/
  1228. G
  1229. s/\n//
  1230. s/^[^=]*=[ ]*$//
  1231. }
  1232. :t
  1233. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  1234. s|@configure_input@|$ac_sed_conf_input|;t t
  1235. s&@top_builddir@&$ac_top_builddir_sub&;t t
  1236. s&@top_build_prefix@&$ac_top_build_prefix&;t t
  1237. s&@srcdir@&$ac_srcdir&;t t
  1238. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  1239. s&@top_srcdir@&$ac_top_srcdir&;t t
  1240. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  1241. s&@builddir@&$ac_builddir&;t t
  1242. s&@abs_builddir@&$ac_abs_builddir&;t t
  1243. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  1244. s&@INSTALL@&$ac_INSTALL&;t t
  1245. s&@MKDIR_P@&$ac_MKDIR_P&;t t
  1246. $ac_datarootdir_hack
  1247. "
  1248. eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
  1249. >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1250. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  1251. { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
  1252. { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
  1253. "$ac_tmp/out"`; test -z "$ac_out"; } &&
  1254. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1255. which seems to be undefined. Please make sure it is defined" >&5
  1256. $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  1257. which seems to be undefined. Please make sure it is defined" >&2;}
  1258. rm -f "$ac_tmp/stdin"
  1259. case $ac_file in
  1260. -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
  1261. *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
  1262. esac \
  1263. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1264. ;;
  1265. :H)
  1266. #
  1267. # CONFIG_HEADER
  1268. #
  1269. if test x"$ac_file" != x-; then
  1270. {
  1271. $as_echo "/* $configure_input */" \
  1272. && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
  1273. } >"$ac_tmp/config.h" \
  1274. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1275. if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
  1276. { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
  1277. $as_echo "$as_me: $ac_file is unchanged" >&6;}
  1278. else
  1279. rm -f "$ac_file"
  1280. mv "$ac_tmp/config.h" "$ac_file" \
  1281. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  1282. fi
  1283. else
  1284. $as_echo "/* $configure_input */" \
  1285. && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
  1286. || as_fn_error $? "could not create -" "$LINENO" 5
  1287. fi
  1288. # Compute "$ac_file"'s index in $config_headers.
  1289. _am_arg="$ac_file"
  1290. _am_stamp_count=1
  1291. for _am_header in $config_headers :; do
  1292. case $_am_header in
  1293. $_am_arg | $_am_arg:* )
  1294. break ;;
  1295. * )
  1296. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  1297. esac
  1298. done
  1299. echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
  1300. $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1301. X"$_am_arg" : 'X\(//\)[^/]' \| \
  1302. X"$_am_arg" : 'X\(//\)$' \| \
  1303. X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
  1304. $as_echo X"$_am_arg" |
  1305. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1306. s//\1/
  1307. q
  1308. }
  1309. /^X\(\/\/\)[^/].*/{
  1310. s//\1/
  1311. q
  1312. }
  1313. /^X\(\/\/\)$/{
  1314. s//\1/
  1315. q
  1316. }
  1317. /^X\(\/\).*/{
  1318. s//\1/
  1319. q
  1320. }
  1321. s/.*/./; q'`/stamp-h$_am_stamp_count
  1322. ;;
  1323. :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
  1324. $as_echo "$as_me: executing $ac_file commands" >&6;}
  1325. ;;
  1326. esac
  1327. case $ac_file$ac_mode in
  1328. "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
  1329. # Older Autoconf quotes --file arguments for eval, but not when files
  1330. # are listed without --file. Let's play safe and only enable the eval
  1331. # if we detect the quoting.
  1332. case $CONFIG_FILES in
  1333. *\'*) eval set x "$CONFIG_FILES" ;;
  1334. *) set x $CONFIG_FILES ;;
  1335. esac
  1336. shift
  1337. for mf
  1338. do
  1339. # Strip MF so we end up with the name of the file.
  1340. mf=`echo "$mf" | sed -e 's/:.*$//'`
  1341. # Check whether this is an Automake generated Makefile or not.
  1342. # We used to match only the files named 'Makefile.in', but
  1343. # some people rename them; so instead we look at the file content.
  1344. # Grep'ing the first line is not enough: some people post-process
  1345. # each Makefile.in and add a new line on top of each file to say so.
  1346. # Grep'ing the whole file is not good either: AIX grep has a line
  1347. # limit of 2048, but all sed's we know have understand at least 4000.
  1348. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  1349. dirpart=`$as_dirname -- "$mf" ||
  1350. $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1351. X"$mf" : 'X\(//\)[^/]' \| \
  1352. X"$mf" : 'X\(//\)$' \| \
  1353. X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
  1354. $as_echo X"$mf" |
  1355. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1356. s//\1/
  1357. q
  1358. }
  1359. /^X\(\/\/\)[^/].*/{
  1360. s//\1/
  1361. q
  1362. }
  1363. /^X\(\/\/\)$/{
  1364. s//\1/
  1365. q
  1366. }
  1367. /^X\(\/\).*/{
  1368. s//\1/
  1369. q
  1370. }
  1371. s/.*/./; q'`
  1372. else
  1373. continue
  1374. fi
  1375. # Extract the definition of DEPDIR, am__include, and am__quote
  1376. # from the Makefile without running 'make'.
  1377. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  1378. test -z "$DEPDIR" && continue
  1379. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  1380. test -z "$am__include" && continue
  1381. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  1382. # Find all dependency output files, they are included files with
  1383. # $(DEPDIR) in their names. We invoke sed twice because it is the
  1384. # simplest approach to changing $(DEPDIR) to its actual value in the
  1385. # expansion.
  1386. for file in `sed -n "
  1387. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  1388. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
  1389. # Make sure the directory exists.
  1390. test -f "$dirpart/$file" && continue
  1391. fdir=`$as_dirname -- "$file" ||
  1392. $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1393. X"$file" : 'X\(//\)[^/]' \| \
  1394. X"$file" : 'X\(//\)$' \| \
  1395. X"$file" : 'X\(/\)' \| . 2>/dev/null ||
  1396. $as_echo X"$file" |
  1397. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1398. s//\1/
  1399. q
  1400. }
  1401. /^X\(\/\/\)[^/].*/{
  1402. s//\1/
  1403. q
  1404. }
  1405. /^X\(\/\/\)$/{
  1406. s//\1/
  1407. q
  1408. }
  1409. /^X\(\/\).*/{
  1410. s//\1/
  1411. q
  1412. }
  1413. s/.*/./; q'`
  1414. as_dir=$dirpart/$fdir; as_fn_mkdir_p
  1415. # echo "creating $dirpart/$file"
  1416. echo '# dummy' > "$dirpart/$file"
  1417. done
  1418. done
  1419. }
  1420. ;;
  1421. "libtool":C)
  1422. # See if we are running on zsh, and set the options that allow our
  1423. # commands through without removal of \ escapes.
  1424. if test -n "${ZSH_VERSION+set}"; then
  1425. setopt NO_GLOB_SUBST
  1426. fi
  1427. cfgfile=${ofile}T
  1428. trap "$RM \"$cfgfile\"; exit 1" 1 2 15
  1429. $RM "$cfgfile"
  1430. cat <<_LT_EOF >> "$cfgfile"
  1431. #! $SHELL
  1432. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  1433. # Generated automatically by $as_me ($PACKAGE) $VERSION
  1434. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1435. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  1436. #
  1437. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  1438. # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
  1439. # Foundation, Inc.
  1440. # Written by Gordon Matzigkeit, 1996
  1441. #
  1442. # This file is part of GNU Libtool.
  1443. #
  1444. # GNU Libtool is free software; you can redistribute it and/or
  1445. # modify it under the terms of the GNU General Public License as
  1446. # published by the Free Software Foundation; either version 2 of
  1447. # the License, or (at your option) any later version.
  1448. #
  1449. # As a special exception to the GNU General Public License,
  1450. # if you distribute this file as part of a program or library that
  1451. # is built using GNU Libtool, you may include this file under the
  1452. # same distribution terms that you use for the rest of that program.
  1453. #
  1454. # GNU Libtool is distributed in the hope that it will be useful,
  1455. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  1456. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1457. # GNU General Public License for more details.
  1458. #
  1459. # You should have received a copy of the GNU General Public License
  1460. # along with GNU Libtool; see the file COPYING. If not, a copy
  1461. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  1462. # obtained by writing to the Free Software Foundation, Inc.,
  1463. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  1464. # The names of the tagged configurations supported by this script.
  1465. available_tags=''
  1466. # ### BEGIN LIBTOOL CONFIG
  1467. # Whether or not to build static libraries.
  1468. build_old_libs=$enable_static
  1469. # Whether or not to build shared libraries.
  1470. build_libtool_libs=$enable_shared
  1471. # Which release of libtool.m4 was used?
  1472. macro_version=$macro_version
  1473. macro_revision=$macro_revision
  1474. # What type of objects to build.
  1475. pic_mode=$pic_mode
  1476. # Whether or not to optimize for fast installation.
  1477. fast_install=$enable_fast_install
  1478. # Shell to use when invoking shell scripts.
  1479. SHELL=$lt_SHELL
  1480. # An echo program that protects backslashes.
  1481. ECHO=$lt_ECHO
  1482. # The PATH separator for the build system.
  1483. PATH_SEPARATOR=$lt_PATH_SEPARATOR
  1484. # The host system.
  1485. host_alias=$host_alias
  1486. host=$host
  1487. host_os=$host_os
  1488. # The build system.
  1489. build_alias=$build_alias
  1490. build=$build
  1491. build_os=$build_os
  1492. # A sed program that does not truncate output.
  1493. SED=$lt_SED
  1494. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  1495. Xsed="\$SED -e 1s/^X//"
  1496. # A grep program that handles long lines.
  1497. GREP=$lt_GREP
  1498. # An ERE matcher.
  1499. EGREP=$lt_EGREP
  1500. # A literal string matcher.
  1501. FGREP=$lt_FGREP
  1502. # A BSD- or MS-compatible name lister.
  1503. NM=$lt_NM
  1504. # Whether we need soft or hard links.
  1505. LN_S=$lt_LN_S
  1506. # What is the maximum length of a command?
  1507. max_cmd_len=$max_cmd_len
  1508. # Object file suffix (normally "o").
  1509. objext=$ac_objext
  1510. # Executable file suffix (normally "").
  1511. exeext=$exeext
  1512. # whether the shell understands "unset".
  1513. lt_unset=$lt_unset
  1514. # turn spaces into newlines.
  1515. SP2NL=$lt_lt_SP2NL
  1516. # turn newlines into spaces.
  1517. NL2SP=$lt_lt_NL2SP
  1518. # convert \$build file names to \$host format.
  1519. to_host_file_cmd=$lt_cv_to_host_file_cmd
  1520. # convert \$build files to toolchain format.
  1521. to_tool_file_cmd=$lt_cv_to_tool_file_cmd
  1522. # An object symbol dumper.
  1523. OBJDUMP=$lt_OBJDUMP
  1524. # Method to check whether dependent libraries are shared objects.
  1525. deplibs_check_method=$lt_deplibs_check_method
  1526. # Command to use when deplibs_check_method = "file_magic".
  1527. file_magic_cmd=$lt_file_magic_cmd
  1528. # How to find potential files when deplibs_check_method = "file_magic".
  1529. file_magic_glob=$lt_file_magic_glob
  1530. # Find potential files using nocaseglob when deplibs_check_method = "file_magic".
  1531. want_nocaseglob=$lt_want_nocaseglob
  1532. # DLL creation program.
  1533. DLLTOOL=$lt_DLLTOOL
  1534. # Command to associate shared and link libraries.
  1535. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
  1536. # The archiver.
  1537. AR=$lt_AR
  1538. # Flags to create an archive.
  1539. AR_FLAGS=$lt_AR_FLAGS
  1540. # How to feed a file listing to the archiver.
  1541. archiver_list_spec=$lt_archiver_list_spec
  1542. # A symbol stripping program.
  1543. STRIP=$lt_STRIP
  1544. # Commands used to install an old-style archive.
  1545. RANLIB=$lt_RANLIB
  1546. old_postinstall_cmds=$lt_old_postinstall_cmds
  1547. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  1548. # Whether to use a lock for old archive extraction.
  1549. lock_old_archive_extraction=$lock_old_archive_extraction
  1550. # A C compiler.
  1551. LTCC=$lt_CC
  1552. # LTCC compiler flags.
  1553. LTCFLAGS=$lt_CFLAGS
  1554. # Take the output of nm and produce a listing of raw symbols and C names.
  1555. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  1556. # Transform the output of nm in a proper C declaration.
  1557. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  1558. # Transform the output of nm into a list of symbols to manually relocate.
  1559. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import
  1560. # Transform the output of nm in a C name address pair.
  1561. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  1562. # Transform the output of nm in a C name address pair when lib prefix is needed.
  1563. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
  1564. # The name lister interface.
  1565. nm_interface=$lt_lt_cv_nm_interface
  1566. # Specify filename containing input files for \$NM.
  1567. nm_file_list_spec=$lt_nm_file_list_spec
  1568. # The root where to search for dependent libraries,and where our libraries should be installed.
  1569. lt_sysroot=$lt_sysroot
  1570. # The name of the directory that contains temporary libtool files.
  1571. objdir=$objdir
  1572. # Used to examine libraries when file_magic_cmd begins with "file".
  1573. MAGIC_CMD=$MAGIC_CMD
  1574. # Must we lock files when doing compilation?
  1575. need_locks=$lt_need_locks
  1576. # Manifest tool.
  1577. MANIFEST_TOOL=$lt_MANIFEST_TOOL
  1578. # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
  1579. DSYMUTIL=$lt_DSYMUTIL
  1580. # Tool to change global to local symbols on Mac OS X.
  1581. NMEDIT=$lt_NMEDIT
  1582. # Tool to manipulate fat objects and archives on Mac OS X.
  1583. LIPO=$lt_LIPO
  1584. # ldd/readelf like tool for Mach-O binaries on Mac OS X.
  1585. OTOOL=$lt_OTOOL
  1586. # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
  1587. OTOOL64=$lt_OTOOL64
  1588. # Old archive suffix (normally "a").
  1589. libext=$libext
  1590. # Shared library suffix (normally ".so").
  1591. shrext_cmds=$lt_shrext_cmds
  1592. # The commands to extract the exported symbol list from a shared archive.
  1593. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  1594. # Variables whose values should be saved in libtool wrapper scripts and
  1595. # restored at link time.
  1596. variables_saved_for_relink=$lt_variables_saved_for_relink
  1597. # Do we need the "lib" prefix for modules?
  1598. need_lib_prefix=$need_lib_prefix
  1599. # Do we need a version for libraries?
  1600. need_version=$need_version
  1601. # Library versioning type.
  1602. version_type=$version_type
  1603. # Shared library runtime path variable.
  1604. runpath_var=$runpath_var
  1605. # Shared library path variable.
  1606. shlibpath_var=$shlibpath_var
  1607. # Is shlibpath searched before the hard-coded library search path?
  1608. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  1609. # Format of library name prefix.
  1610. libname_spec=$lt_libname_spec
  1611. # List of archive names. First name is the real one, the rest are links.
  1612. # The last name is the one that the linker finds with -lNAME
  1613. library_names_spec=$lt_library_names_spec
  1614. # The coded name of the library, if different from the real name.
  1615. soname_spec=$lt_soname_spec
  1616. # Permission mode override for installation of shared libraries.
  1617. install_override_mode=$lt_install_override_mode
  1618. # Command to use after installation of a shared archive.
  1619. postinstall_cmds=$lt_postinstall_cmds
  1620. # Command to use after uninstallation of a shared archive.
  1621. postuninstall_cmds=$lt_postuninstall_cmds
  1622. # Commands used to finish a libtool library installation in a directory.
  1623. finish_cmds=$lt_finish_cmds
  1624. # As "finish_cmds", except a single script fragment to be evaled but
  1625. # not shown.
  1626. finish_eval=$lt_finish_eval
  1627. # Whether we should hardcode library paths into libraries.
  1628. hardcode_into_libs=$hardcode_into_libs
  1629. # Compile-time system search path for libraries.
  1630. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  1631. # Run-time system search path for libraries.
  1632. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  1633. # Whether dlopen is supported.
  1634. dlopen_support=$enable_dlopen
  1635. # Whether dlopen of programs is supported.
  1636. dlopen_self=$enable_dlopen_self
  1637. # Whether dlopen of statically linked programs is supported.
  1638. dlopen_self_static=$enable_dlopen_self_static
  1639. # Commands to strip libraries.
  1640. old_striplib=$lt_old_striplib
  1641. striplib=$lt_striplib
  1642. # The linker used to build libraries.
  1643. LD=$lt_LD
  1644. # How to create reloadable object files.
  1645. reload_flag=$lt_reload_flag
  1646. reload_cmds=$lt_reload_cmds
  1647. # Commands used to build an old-style archive.
  1648. old_archive_cmds=$lt_old_archive_cmds
  1649. # A language specific compiler.
  1650. CC=$lt_compiler
  1651. # Is the compiler the GNU compiler?
  1652. with_gcc=$GCC
  1653. # Compiler flag to turn off builtin functions.
  1654. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
  1655. # Additional compiler flags for building library objects.
  1656. pic_flag=$lt_lt_prog_compiler_pic
  1657. # How to pass a linker flag through the compiler.
  1658. wl=$lt_lt_prog_compiler_wl
  1659. # Compiler flag to prevent dynamic linking.
  1660. link_static_flag=$lt_lt_prog_compiler_static
  1661. # Does compiler simultaneously support -c and -o options?
  1662. compiler_c_o=$lt_lt_cv_prog_compiler_c_o
  1663. # Whether or not to add -lc for building shared libraries.
  1664. build_libtool_need_lc=$archive_cmds_need_lc
  1665. # Whether or not to disallow shared libs when runtime libs are static.
  1666. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
  1667. # Compiler flag to allow reflexive dlopens.
  1668. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
  1669. # Compiler flag to generate shared objects directly from archives.
  1670. whole_archive_flag_spec=$lt_whole_archive_flag_spec
  1671. # Whether the compiler copes with passing no objects directly.
  1672. compiler_needs_object=$lt_compiler_needs_object
  1673. # Create an old-style archive from a shared archive.
  1674. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
  1675. # Create a temporary old-style archive to link instead of a shared archive.
  1676. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
  1677. # Commands used to build a shared archive.
  1678. archive_cmds=$lt_archive_cmds
  1679. archive_expsym_cmds=$lt_archive_expsym_cmds
  1680. # Commands used to build a loadable module if different from building
  1681. # a shared archive.
  1682. module_cmds=$lt_module_cmds
  1683. module_expsym_cmds=$lt_module_expsym_cmds
  1684. # Whether we are building with GNU ld or not.
  1685. with_gnu_ld=$lt_with_gnu_ld
  1686. # Flag that allows shared libraries with undefined symbols to be built.
  1687. allow_undefined_flag=$lt_allow_undefined_flag
  1688. # Flag that enforces no undefined symbols.
  1689. no_undefined_flag=$lt_no_undefined_flag
  1690. # Flag to hardcode \$libdir into a binary during linking.
  1691. # This must work even if \$libdir does not exist
  1692. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
  1693. # Whether we need a single "-rpath" flag with a separated argument.
  1694. hardcode_libdir_separator=$lt_hardcode_libdir_separator
  1695. # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
  1696. # DIR into the resulting binary.
  1697. hardcode_direct=$hardcode_direct
  1698. # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
  1699. # DIR into the resulting binary and the resulting library dependency is
  1700. # "absolute",i.e impossible to change by setting \$shlibpath_var if the
  1701. # library is relocated.
  1702. hardcode_direct_absolute=$hardcode_direct_absolute
  1703. # Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  1704. # into the resulting binary.
  1705. hardcode_minus_L=$hardcode_minus_L
  1706. # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  1707. # into the resulting binary.
  1708. hardcode_shlibpath_var=$hardcode_shlibpath_var
  1709. # Set to "yes" if building a shared library automatically hardcodes DIR
  1710. # into the library and all subsequent libraries and executables linked
  1711. # against it.
  1712. hardcode_automatic=$hardcode_automatic
  1713. # Set to yes if linker adds runtime paths of dependent libraries
  1714. # to runtime path list.
  1715. inherit_rpath=$inherit_rpath
  1716. # Whether libtool must link a program against all its dependency libraries.
  1717. link_all_deplibs=$link_all_deplibs
  1718. # Set to "yes" if exported symbols are required.
  1719. always_export_symbols=$always_export_symbols
  1720. # The commands to list exported symbols.
  1721. export_symbols_cmds=$lt_export_symbols_cmds
  1722. # Symbols that should not be listed in the preloaded symbols.
  1723. exclude_expsyms=$lt_exclude_expsyms
  1724. # Symbols that must always be exported.
  1725. include_expsyms=$lt_include_expsyms
  1726. # Commands necessary for linking programs (against libraries) with templates.
  1727. prelink_cmds=$lt_prelink_cmds
  1728. # Commands necessary for finishing linking programs.
  1729. postlink_cmds=$lt_postlink_cmds
  1730. # Specify filename containing input files.
  1731. file_list_spec=$lt_file_list_spec
  1732. # How to hardcode a shared library path into an executable.
  1733. hardcode_action=$hardcode_action
  1734. # ### END LIBTOOL CONFIG
  1735. _LT_EOF
  1736. case $host_os in
  1737. aix3*)
  1738. cat <<\_LT_EOF >> "$cfgfile"
  1739. # AIX sometimes has problems with the GCC collect2 program. For some
  1740. # reason, if we set the COLLECT_NAMES environment variable, the problems
  1741. # vanish in a puff of smoke.
  1742. if test set != "${COLLECT_NAMES+set}"; then
  1743. COLLECT_NAMES=
  1744. export COLLECT_NAMES
  1745. fi
  1746. _LT_EOF
  1747. ;;
  1748. esac
  1749. ltmain=$ac_aux_dir/ltmain.sh
  1750. # We use sed instead of cat because bash on DJGPP gets confused if
  1751. # if finds mixed CR/LF and LF-only lines. Since sed operates in
  1752. # text mode, it properly converts lines to CR/LF. This bash problem
  1753. # is reportedly fixed, but why not run on old versions too?
  1754. sed '$q' "$ltmain" >> "$cfgfile" \
  1755. || (rm -f "$cfgfile"; exit 1)
  1756. mv -f "$cfgfile" "$ofile" ||
  1757. (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  1758. chmod +x "$ofile"
  1759. ;;
  1760. esac
  1761. done # for ac_tag
  1762. as_fn_exit 0