Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

config.status 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952
  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 lodel $as_me 0.1, 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 lodel/buildconf.py.am lodel/Makefile lodel/auth/Makefile lodel/editorial_model/Makefile lodel/editorial_model/translator/Makefile lodel/leapi/Makefile lodel/leapi/datahandlers/Makefile lodel/plugin/Makefile lodel/settings/Makefile lodel/utils/Makefile progs/Makefile progs/slim/Makefile lodel/plugins/Makefile lodelsites/Makefile"
  355. ac_cs_usage="\
  356. \`$as_me' instantiates files and other configuration actions
  357. from templates according to the current configuration. Unless the files
  358. and actions are specified as TAGs, all are instantiated by default.
  359. Usage: $0 [OPTION]... [TAG]...
  360. -h, --help print this help, then exit
  361. -V, --version print version number and configuration settings, then exit
  362. --config print configuration, then exit
  363. -q, --quiet, --silent
  364. do not print progress messages
  365. -d, --debug don't remove temporary files
  366. --recheck update $as_me by reconfiguring in the same conditions
  367. --file=FILE[:TEMPLATE]
  368. instantiate the configuration file FILE
  369. Configuration files:
  370. $config_files
  371. Report bugs to <contact@openedition.org>."
  372. ac_cs_config="'--sysconfdir=/etc' '--localstatedir=/var' '--prefix=/usr'"
  373. ac_cs_version="\
  374. lodel config.status 0.1
  375. configured by ./configure, generated by GNU Autoconf 2.69,
  376. with options \"$ac_cs_config\"
  377. Copyright (C) 2012 Free Software Foundation, Inc.
  378. This config.status script is free software; the Free Software Foundation
  379. gives unlimited permission to copy, distribute and modify it."
  380. ac_pwd='/home/hicham/projects/lodel2'
  381. srcdir='.'
  382. INSTALL='/usr/bin/install -c'
  383. MKDIR_P='/bin/mkdir -p'
  384. AWK='mawk'
  385. test -n "$AWK" || AWK=awk
  386. # The default lists apply if the user does not specify any file.
  387. ac_need_defaults=:
  388. while test $# != 0
  389. do
  390. case $1 in
  391. --*=?*)
  392. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  393. ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  394. ac_shift=:
  395. ;;
  396. --*=)
  397. ac_option=`expr "X$1" : 'X\([^=]*\)='`
  398. ac_optarg=
  399. ac_shift=:
  400. ;;
  401. *)
  402. ac_option=$1
  403. ac_optarg=$2
  404. ac_shift=shift
  405. ;;
  406. esac
  407. case $ac_option in
  408. # Handling of the options.
  409. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  410. ac_cs_recheck=: ;;
  411. --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  412. $as_echo "$ac_cs_version"; exit ;;
  413. --config | --confi | --conf | --con | --co | --c )
  414. $as_echo "$ac_cs_config"; exit ;;
  415. --debug | --debu | --deb | --de | --d | -d )
  416. debug=: ;;
  417. --file | --fil | --fi | --f )
  418. $ac_shift
  419. case $ac_optarg in
  420. *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  421. '') as_fn_error $? "missing file argument" ;;
  422. esac
  423. as_fn_append CONFIG_FILES " '$ac_optarg'"
  424. ac_need_defaults=false;;
  425. --he | --h | --help | --hel | -h )
  426. $as_echo "$ac_cs_usage"; exit ;;
  427. -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  428. | -silent | --silent | --silen | --sile | --sil | --si | --s)
  429. ac_cs_silent=: ;;
  430. # This is an error.
  431. -*) as_fn_error $? "unrecognized option: \`$1'
  432. Try \`$0 --help' for more information." ;;
  433. *) as_fn_append ac_config_targets " $1"
  434. ac_need_defaults=false ;;
  435. esac
  436. shift
  437. done
  438. ac_configure_extra_args=
  439. if $ac_cs_silent; then
  440. exec 6>/dev/null
  441. ac_configure_extra_args="$ac_configure_extra_args --silent"
  442. fi
  443. if $ac_cs_recheck; then
  444. set X /bin/bash './configure' '--sysconfdir=/etc' '--localstatedir=/var' '--prefix=/usr' $ac_configure_extra_args --no-create --no-recursion
  445. shift
  446. $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
  447. CONFIG_SHELL='/bin/bash'
  448. export CONFIG_SHELL
  449. exec "$@"
  450. fi
  451. exec 5>>config.log
  452. {
  453. echo
  454. sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  455. ## Running $as_me. ##
  456. _ASBOX
  457. $as_echo "$ac_log"
  458. } >&5
  459. # Handling of arguments.
  460. for ac_config_target in $ac_config_targets
  461. do
  462. case $ac_config_target in
  463. "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  464. "lodel/buildconf.py.am") CONFIG_FILES="$CONFIG_FILES lodel/buildconf.py.am" ;;
  465. "lodel/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/Makefile" ;;
  466. "lodel/auth/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/auth/Makefile" ;;
  467. "lodel/editorial_model/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/editorial_model/Makefile" ;;
  468. "lodel/editorial_model/translator/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/editorial_model/translator/Makefile" ;;
  469. "lodel/leapi/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/leapi/Makefile" ;;
  470. "lodel/leapi/datahandlers/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/leapi/datahandlers/Makefile" ;;
  471. "lodel/plugin/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/plugin/Makefile" ;;
  472. "lodel/settings/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/settings/Makefile" ;;
  473. "lodel/utils/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/utils/Makefile" ;;
  474. "progs/Makefile") CONFIG_FILES="$CONFIG_FILES progs/Makefile" ;;
  475. "progs/slim/Makefile") CONFIG_FILES="$CONFIG_FILES progs/slim/Makefile" ;;
  476. "lodel/plugins/Makefile") CONFIG_FILES="$CONFIG_FILES lodel/plugins/Makefile" ;;
  477. "lodelsites/Makefile") CONFIG_FILES="$CONFIG_FILES lodelsites/Makefile" ;;
  478. *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
  479. esac
  480. done
  481. # If the user did not use the arguments to specify the items to instantiate,
  482. # then the envvar interface is used. Set only those that are not.
  483. # We use the long form for the default assignment because of an extremely
  484. # bizarre bug on SunOS 4.1.3.
  485. if $ac_need_defaults; then
  486. test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  487. fi
  488. # Have a temporary directory for convenience. Make it in the build tree
  489. # simply because there is no reason against having it here, and in addition,
  490. # creating and moving files from /tmp can sometimes cause problems.
  491. # Hook for its removal unless debugging.
  492. # Note that there is a small window in which the directory will not be cleaned:
  493. # after its creation but before its name has been assigned to `$tmp'.
  494. $debug ||
  495. {
  496. tmp= ac_tmp=
  497. trap 'exit_status=$?
  498. : "${ac_tmp:=$tmp}"
  499. { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
  500. ' 0
  501. trap 'as_fn_exit 1' 1 2 13 15
  502. }
  503. # Create a (secure) tmp directory for tmp files.
  504. {
  505. tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  506. test -d "$tmp"
  507. } ||
  508. {
  509. tmp=./conf$$-$RANDOM
  510. (umask 077 && mkdir "$tmp")
  511. } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
  512. ac_tmp=$tmp
  513. # Set up the scripts for CONFIG_FILES section.
  514. # No need to generate them if there are no CONFIG_FILES.
  515. # This happens for instance with `./config.status config.h'.
  516. if test -n "$CONFIG_FILES"; then
  517. ac_cr=`echo X | tr X '\015'`
  518. # On cygwin, bash can eat \r inside `` if the user requested igncr.
  519. # But we know of no other shell where ac_cr would be empty at this
  520. # point, so we can use a bashism as a fallback.
  521. if test "x$ac_cr" = x; then
  522. eval ac_cr=\$\'\\r\'
  523. fi
  524. ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  525. if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  526. ac_cs_awk_cr='\\r'
  527. else
  528. ac_cs_awk_cr=$ac_cr
  529. fi
  530. echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
  531. cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
  532. S["LTLIBOBJS"]=""
  533. S["LIBOBJS"]=""
  534. S["DOXYPY"]="doxypy"
  535. S["GRAPHVIZ"]="dot"
  536. S["DOXYGEN"]="doxygen"
  537. S["DOCOK"]="OK"
  538. S["PYMONGO"]="False"
  539. S["WEBUI"]="False"
  540. S["SITEPACKAGES"]=""
  541. S["pkgpyexecdir"]="${pyexecdir}/lodel"
  542. S["pyexecdir"]="${exec_prefix}/lib/python3/dist-packages"
  543. S["pkgpythondir"]="${pythondir}/lodel"
  544. S["pythondir"]="${prefix}/lib/python3/dist-packages"
  545. S["PYTHON_PLATFORM"]="linux"
  546. S["PYTHON_EXEC_PREFIX"]="${exec_prefix}"
  547. S["PYTHON_PREFIX"]="${prefix}"
  548. S["PYTHON_VERSION"]="3.5"
  549. S["PYTHON"]="/usr/bin/python3"
  550. S["LN_S"]="ln -s"
  551. S["AM_BACKSLASH"]="\\"
  552. S["AM_DEFAULT_VERBOSITY"]="1"
  553. S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)"
  554. S["AM_V"]="$(V)"
  555. S["am__untar"]="$${TAR-tar} xf -"
  556. S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
  557. S["AMTAR"]="$${TAR-tar}"
  558. S["am__leading_dot"]="."
  559. S["SET_MAKE"]=""
  560. S["AWK"]="mawk"
  561. S["mkdir_p"]="$(MKDIR_P)"
  562. S["MKDIR_P"]="/bin/mkdir -p"
  563. S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
  564. S["STRIP"]=""
  565. S["install_sh"]="${SHELL} /home/hicham/projects/lodel2/install-sh"
  566. S["MAKEINFO"]="${SHELL} /home/hicham/projects/lodel2/missing makeinfo"
  567. S["AUTOHEADER"]="${SHELL} /home/hicham/projects/lodel2/missing autoheader"
  568. S["AUTOMAKE"]="${SHELL} /home/hicham/projects/lodel2/missing automake-1.15"
  569. S["AUTOCONF"]="${SHELL} /home/hicham/projects/lodel2/missing autoconf"
  570. S["ACLOCAL"]="${SHELL} /home/hicham/projects/lodel2/missing aclocal-1.15"
  571. S["VERSION"]="0.1"
  572. S["PACKAGE"]="lodel"
  573. S["CYGPATH_W"]="echo"
  574. S["am__isrc"]=""
  575. S["INSTALL_DATA"]="${INSTALL} -m 644"
  576. S["INSTALL_SCRIPT"]="${INSTALL}"
  577. S["INSTALL_PROGRAM"]="${INSTALL}"
  578. S["target_alias"]=""
  579. S["host_alias"]=""
  580. S["build_alias"]=""
  581. S["LIBS"]=""
  582. S["ECHO_T"]=""
  583. S["ECHO_N"]="-n"
  584. S["ECHO_C"]=""
  585. S["DEFS"]="-DPACKAGE_NAME=\\\"lodel\\\" -DPACKAGE_TARNAME=\\\"lodel\\\" -DPACKAGE_VERSION=\\\"0.1\\\" -DPACKAGE_STRING=\\\"lodel\\ 0.1\\\" -DPACKAGE_BUGREPORT=\\\"contact@openedi"\
  586. "tion.org\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"lodel\\\" -DVERSION=\\\"0.1\\\""
  587. S["mandir"]="${datarootdir}/man"
  588. S["localedir"]="${datarootdir}/locale"
  589. S["libdir"]="${exec_prefix}/lib"
  590. S["psdir"]="${docdir}"
  591. S["pdfdir"]="${docdir}"
  592. S["dvidir"]="${docdir}"
  593. S["htmldir"]="${docdir}"
  594. S["infodir"]="${datarootdir}/info"
  595. S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
  596. S["oldincludedir"]="/usr/include"
  597. S["includedir"]="${prefix}/include"
  598. S["runstatedir"]="${localstatedir}/run"
  599. S["localstatedir"]="/var"
  600. S["sharedstatedir"]="${prefix}/com"
  601. S["sysconfdir"]="/etc"
  602. S["datadir"]="${datarootdir}"
  603. S["datarootdir"]="${prefix}/share"
  604. S["libexecdir"]="${exec_prefix}/libexec"
  605. S["sbindir"]="${exec_prefix}/sbin"
  606. S["bindir"]="${exec_prefix}/bin"
  607. S["program_transform_name"]="s,x,x,"
  608. S["prefix"]="/usr"
  609. S["exec_prefix"]="${prefix}"
  610. S["PACKAGE_URL"]=""
  611. S["PACKAGE_BUGREPORT"]="contact@openedition.org"
  612. S["PACKAGE_STRING"]="lodel 0.1"
  613. S["PACKAGE_VERSION"]="0.1"
  614. S["PACKAGE_TARNAME"]="lodel"
  615. S["PACKAGE_NAME"]="lodel"
  616. S["PATH_SEPARATOR"]=":"
  617. S["SHELL"]="/bin/bash"
  618. _ACAWK
  619. cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
  620. for (key in S) S_is_set[key] = 1
  621. FS = ""
  622. }
  623. {
  624. line = $ 0
  625. nfields = split(line, field, "@")
  626. substed = 0
  627. len = length(field[1])
  628. for (i = 2; i < nfields; i++) {
  629. key = field[i]
  630. keylen = length(key)
  631. if (S_is_set[key]) {
  632. value = S[key]
  633. line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  634. len += length(value) + length(field[++i])
  635. substed = 1
  636. } else
  637. len += 1 + keylen
  638. }
  639. print line
  640. }
  641. _ACAWK
  642. if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  643. sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  644. else
  645. cat
  646. fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
  647. || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
  648. fi # test -n "$CONFIG_FILES"
  649. eval set X " :F $CONFIG_FILES "
  650. shift
  651. for ac_tag
  652. do
  653. case $ac_tag in
  654. :[FHLC]) ac_mode=$ac_tag; continue;;
  655. esac
  656. case $ac_mode$ac_tag in
  657. :[FHL]*:*);;
  658. :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
  659. :[FH]-) ac_tag=-:-;;
  660. :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  661. esac
  662. ac_save_IFS=$IFS
  663. IFS=:
  664. set x $ac_tag
  665. IFS=$ac_save_IFS
  666. shift
  667. ac_file=$1
  668. shift
  669. case $ac_mode in
  670. :L) ac_source=$1;;
  671. :[FH])
  672. ac_file_inputs=
  673. for ac_f
  674. do
  675. case $ac_f in
  676. -) ac_f="$ac_tmp/stdin";;
  677. *) # Look for the file first in the build tree, then in the source tree
  678. # (if the path is not absolute). The absolute path cannot be DOS-style,
  679. # because $ac_f cannot contain `:'.
  680. test -f "$ac_f" ||
  681. case $ac_f in
  682. [\\/$]*) false;;
  683. *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  684. esac ||
  685. as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
  686. esac
  687. case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  688. as_fn_append ac_file_inputs " '$ac_f'"
  689. done
  690. # Let's still pretend it is `configure' which instantiates (i.e., don't
  691. # use $as_me), people would be surprised to read:
  692. # /* config.h. Generated by config.status. */
  693. configure_input='Generated from '`
  694. $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  695. `' by configure.'
  696. if test x"$ac_file" != x-; then
  697. configure_input="$ac_file. $configure_input"
  698. { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
  699. $as_echo "$as_me: creating $ac_file" >&6;}
  700. fi
  701. # Neutralize special characters interpreted by sed in replacement strings.
  702. case $configure_input in #(
  703. *\&* | *\|* | *\\* )
  704. ac_sed_conf_input=`$as_echo "$configure_input" |
  705. sed 's/[\\\\&|]/\\\\&/g'`;; #(
  706. *) ac_sed_conf_input=$configure_input;;
  707. esac
  708. case $ac_tag in
  709. *:-:* | *:-) cat >"$ac_tmp/stdin" \
  710. || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
  711. esac
  712. ;;
  713. esac
  714. ac_dir=`$as_dirname -- "$ac_file" ||
  715. $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  716. X"$ac_file" : 'X\(//\)[^/]' \| \
  717. X"$ac_file" : 'X\(//\)$' \| \
  718. X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
  719. $as_echo X"$ac_file" |
  720. sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  721. s//\1/
  722. q
  723. }
  724. /^X\(\/\/\)[^/].*/{
  725. s//\1/
  726. q
  727. }
  728. /^X\(\/\/\)$/{
  729. s//\1/
  730. q
  731. }
  732. /^X\(\/\).*/{
  733. s//\1/
  734. q
  735. }
  736. s/.*/./; q'`
  737. as_dir="$ac_dir"; as_fn_mkdir_p
  738. ac_builddir=.
  739. case "$ac_dir" in
  740. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  741. *)
  742. ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  743. # A ".." for each directory in $ac_dir_suffix.
  744. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  745. case $ac_top_builddir_sub in
  746. "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  747. *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  748. esac ;;
  749. esac
  750. ac_abs_top_builddir=$ac_pwd
  751. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  752. # for backward compatibility:
  753. ac_top_builddir=$ac_top_build_prefix
  754. case $srcdir in
  755. .) # We are building in place.
  756. ac_srcdir=.
  757. ac_top_srcdir=$ac_top_builddir_sub
  758. ac_abs_top_srcdir=$ac_pwd ;;
  759. [\\/]* | ?:[\\/]* ) # Absolute name.
  760. ac_srcdir=$srcdir$ac_dir_suffix;
  761. ac_top_srcdir=$srcdir
  762. ac_abs_top_srcdir=$srcdir ;;
  763. *) # Relative name.
  764. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  765. ac_top_srcdir=$ac_top_build_prefix$srcdir
  766. ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  767. esac
  768. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  769. case $ac_mode in
  770. :F)
  771. #
  772. # CONFIG_FILE
  773. #
  774. case $INSTALL in
  775. [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
  776. *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  777. esac
  778. ac_MKDIR_P=$MKDIR_P
  779. case $MKDIR_P in
  780. [\\/$]* | ?:[\\/]* ) ;;
  781. */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
  782. esac
  783. # If the template does not know about datarootdir, expand it.
  784. # FIXME: This hack should be removed a few years after 2.60.
  785. ac_datarootdir_hack=; ac_datarootdir_seen=
  786. ac_sed_dataroot='
  787. /datarootdir/ {
  788. p
  789. q
  790. }
  791. /@datadir@/p
  792. /@docdir@/p
  793. /@infodir@/p
  794. /@localedir@/p
  795. /@mandir@/p'
  796. case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
  797. *datarootdir*) ac_datarootdir_seen=yes;;
  798. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  799. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  800. $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  801. ac_datarootdir_hack='
  802. s&@datadir@&${datarootdir}&g
  803. s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
  804. s&@infodir@&${datarootdir}/info&g
  805. s&@localedir@&${datarootdir}/locale&g
  806. s&@mandir@&${datarootdir}/man&g
  807. s&\${datarootdir}&${prefix}/share&g' ;;
  808. esac
  809. ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
  810. h
  811. s///
  812. s/^/:/
  813. s/[ ]*$/:/
  814. s/:\$(srcdir):/:/g
  815. s/:\${srcdir}:/:/g
  816. s/:@srcdir@:/:/g
  817. s/^:*//
  818. s/:*$//
  819. x
  820. s/\(=[ ]*\).*/\1/
  821. G
  822. s/\n//
  823. s/^[^=]*=[ ]*$//
  824. }
  825. :t
  826. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  827. s|@configure_input@|$ac_sed_conf_input|;t t
  828. s&@top_builddir@&$ac_top_builddir_sub&;t t
  829. s&@top_build_prefix@&$ac_top_build_prefix&;t t
  830. s&@srcdir@&$ac_srcdir&;t t
  831. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  832. s&@top_srcdir@&$ac_top_srcdir&;t t
  833. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  834. s&@builddir@&$ac_builddir&;t t
  835. s&@abs_builddir@&$ac_abs_builddir&;t t
  836. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  837. s&@INSTALL@&$ac_INSTALL&;t t
  838. s&@MKDIR_P@&$ac_MKDIR_P&;t t
  839. $ac_datarootdir_hack
  840. "
  841. eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
  842. >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  843. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  844. { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
  845. { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
  846. "$ac_tmp/out"`; test -z "$ac_out"; } &&
  847. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  848. which seems to be undefined. Please make sure it is defined" >&5
  849. $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  850. which seems to be undefined. Please make sure it is defined" >&2;}
  851. rm -f "$ac_tmp/stdin"
  852. case $ac_file in
  853. -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
  854. *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
  855. esac \
  856. || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  857. ;;
  858. esac
  859. done # for ac_tag
  860. as_fn_exit 0