configure
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1316k
源码类别:

OpenGL

开发平台:

Visual C++

  1. fi
  2. { echo "$as_me:$LINENO: checking for ANSI C header files" >&5
  3. echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
  4. if test "${ac_cv_header_stdc+set}" = set; then
  5.   echo $ECHO_N "(cached) $ECHO_C" >&6
  6. else
  7.   cat >conftest.$ac_ext <<_ACEOF
  8. /* confdefs.h.  */
  9. _ACEOF
  10. cat confdefs.h >>conftest.$ac_ext
  11. cat >>conftest.$ac_ext <<_ACEOF
  12. /* end confdefs.h.  */
  13. #include <stdlib.h>
  14. #include <stdarg.h>
  15. #include <string.h>
  16. #include <float.h>
  17. int
  18. main ()
  19. {
  20.   ;
  21.   return 0;
  22. }
  23. _ACEOF
  24. rm -f conftest.$ac_objext
  25. if { (ac_try="$ac_compile"
  26. case "(($ac_try" in
  27.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  28.   *) ac_try_echo=$ac_try;;
  29. esac
  30. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  31.   (eval "$ac_compile") 2>conftest.er1
  32.   ac_status=$?
  33.   grep -v '^ *+' conftest.er1 >conftest.err
  34.   rm -f conftest.er1
  35.   cat conftest.err >&5
  36.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  37.   (exit $ac_status); } && {
  38.  test -z "$ac_c_werror_flag" ||
  39.  test ! -s conftest.err
  40.        } && test -s conftest.$ac_objext; then
  41.   ac_cv_header_stdc=yes
  42. else
  43.   echo "$as_me: failed program was:" >&5
  44. sed 's/^/| /' conftest.$ac_ext >&5
  45. ac_cv_header_stdc=no
  46. fi
  47. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  48. if test $ac_cv_header_stdc = yes; then
  49.   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  50.   cat >conftest.$ac_ext <<_ACEOF
  51. /* confdefs.h.  */
  52. _ACEOF
  53. cat confdefs.h >>conftest.$ac_ext
  54. cat >>conftest.$ac_ext <<_ACEOF
  55. /* end confdefs.h.  */
  56. #include <string.h>
  57. _ACEOF
  58. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  59.   $EGREP "memchr" >/dev/null 2>&1; then
  60.   :
  61. else
  62.   ac_cv_header_stdc=no
  63. fi
  64. rm -f conftest*
  65. fi
  66. if test $ac_cv_header_stdc = yes; then
  67.   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  68.   cat >conftest.$ac_ext <<_ACEOF
  69. /* confdefs.h.  */
  70. _ACEOF
  71. cat confdefs.h >>conftest.$ac_ext
  72. cat >>conftest.$ac_ext <<_ACEOF
  73. /* end confdefs.h.  */
  74. #include <stdlib.h>
  75. _ACEOF
  76. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  77.   $EGREP "free" >/dev/null 2>&1; then
  78.   :
  79. else
  80.   ac_cv_header_stdc=no
  81. fi
  82. rm -f conftest*
  83. fi
  84. if test $ac_cv_header_stdc = yes; then
  85.   # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  86.   if test "$cross_compiling" = yes; then
  87.   :
  88. else
  89.   cat >conftest.$ac_ext <<_ACEOF
  90. /* confdefs.h.  */
  91. _ACEOF
  92. cat confdefs.h >>conftest.$ac_ext
  93. cat >>conftest.$ac_ext <<_ACEOF
  94. /* end confdefs.h.  */
  95. #include <ctype.h>
  96. #include <stdlib.h>
  97. #if ((' ' & 0x0FF) == 0x020)
  98. # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  99. # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  100. #else
  101. # define ISLOWER(c) 
  102.    (('a' <= (c) && (c) <= 'i') 
  103.      || ('j' <= (c) && (c) <= 'r') 
  104.      || ('s' <= (c) && (c) <= 'z'))
  105. # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
  106. #endif
  107. #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
  108. int
  109. main ()
  110. {
  111.   int i;
  112.   for (i = 0; i < 256; i++)
  113.     if (XOR (islower (i), ISLOWER (i))
  114. || toupper (i) != TOUPPER (i))
  115.       return 2;
  116.   return 0;
  117. }
  118. _ACEOF
  119. rm -f conftest$ac_exeext
  120. if { (ac_try="$ac_link"
  121. case "(($ac_try" in
  122.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  123.   *) ac_try_echo=$ac_try;;
  124. esac
  125. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  126.   (eval "$ac_link") 2>&5
  127.   ac_status=$?
  128.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  129.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  130.   { (case "(($ac_try" in
  131.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  132.   *) ac_try_echo=$ac_try;;
  133. esac
  134. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  135.   (eval "$ac_try") 2>&5
  136.   ac_status=$?
  137.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  138.   (exit $ac_status); }; }; then
  139.   :
  140. else
  141.   echo "$as_me: program exited with status $ac_status" >&5
  142. echo "$as_me: failed program was:" >&5
  143. sed 's/^/| /' conftest.$ac_ext >&5
  144. ( exit $ac_status )
  145. ac_cv_header_stdc=no
  146. fi
  147. rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  148. fi
  149. fi
  150. fi
  151. { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
  152. echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
  153. if test $ac_cv_header_stdc = yes; then
  154. cat >>confdefs.h <<_ACEOF
  155. #define STDC_HEADERS 1
  156. _ACEOF
  157. fi
  158. for ac_header in byteswap.h
  159. do
  160. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  161. if { as_var=$as_ac_Header; eval "test "${$as_var+set}" = set"; }; then
  162.   { echo "$as_me:$LINENO: checking for $ac_header" >&5
  163. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
  164. if { as_var=$as_ac_Header; eval "test "${$as_var+set}" = set"; }; then
  165.   echo $ECHO_N "(cached) $ECHO_C" >&6
  166. fi
  167. ac_res=`eval echo '${'$as_ac_Header'}'`
  168.        { echo "$as_me:$LINENO: result: $ac_res" >&5
  169. echo "${ECHO_T}$ac_res" >&6; }
  170. else
  171.   # Is the header compilable?
  172. { echo "$as_me:$LINENO: checking $ac_header usability" >&5
  173. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
  174. cat >conftest.$ac_ext <<_ACEOF
  175. /* confdefs.h.  */
  176. _ACEOF
  177. cat confdefs.h >>conftest.$ac_ext
  178. cat >>conftest.$ac_ext <<_ACEOF
  179. /* end confdefs.h.  */
  180. $ac_includes_default
  181. #include <$ac_header>
  182. _ACEOF
  183. rm -f conftest.$ac_objext
  184. if { (ac_try="$ac_compile"
  185. case "(($ac_try" in
  186.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  187.   *) ac_try_echo=$ac_try;;
  188. esac
  189. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  190.   (eval "$ac_compile") 2>conftest.er1
  191.   ac_status=$?
  192.   grep -v '^ *+' conftest.er1 >conftest.err
  193.   rm -f conftest.er1
  194.   cat conftest.err >&5
  195.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  196.   (exit $ac_status); } && {
  197.  test -z "$ac_c_werror_flag" ||
  198.  test ! -s conftest.err
  199.        } && test -s conftest.$ac_objext; then
  200.   ac_header_compiler=yes
  201. else
  202.   echo "$as_me: failed program was:" >&5
  203. sed 's/^/| /' conftest.$ac_ext >&5
  204. ac_header_compiler=no
  205. fi
  206. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  207. { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  208. echo "${ECHO_T}$ac_header_compiler" >&6; }
  209. # Is the header present?
  210. { echo "$as_me:$LINENO: checking $ac_header presence" >&5
  211. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
  212. cat >conftest.$ac_ext <<_ACEOF
  213. /* confdefs.h.  */
  214. _ACEOF
  215. cat confdefs.h >>conftest.$ac_ext
  216. cat >>conftest.$ac_ext <<_ACEOF
  217. /* end confdefs.h.  */
  218. #include <$ac_header>
  219. _ACEOF
  220. if { (ac_try="$ac_cpp conftest.$ac_ext"
  221. case "(($ac_try" in
  222.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  223.   *) ac_try_echo=$ac_try;;
  224. esac
  225. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  226.   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
  227.   ac_status=$?
  228.   grep -v '^ *+' conftest.er1 >conftest.err
  229.   rm -f conftest.er1
  230.   cat conftest.err >&5
  231.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  232.   (exit $ac_status); } >/dev/null && {
  233.  test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  234.  test ! -s conftest.err
  235.        }; then
  236.   ac_header_preproc=yes
  237. else
  238.   echo "$as_me: failed program was:" >&5
  239. sed 's/^/| /' conftest.$ac_ext >&5
  240.   ac_header_preproc=no
  241. fi
  242. rm -f conftest.err conftest.$ac_ext
  243. { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  244. echo "${ECHO_T}$ac_header_preproc" >&6; }
  245. # So?  What about this header?
  246. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  247.   yes:no: )
  248.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  249. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  250.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  251. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  252.     ac_header_preproc=yes
  253.     ;;
  254.   no:yes:* )
  255.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  256. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  257.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  258. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  259.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  260. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  261.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  262. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  263.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  264. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  265.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  266. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  267.     ( cat <<_ASBOX
  268. ## ----------------------------------------------- ##
  269. ## Report this to celestia-developers@lists.sf.net ##
  270. ## ----------------------------------------------- ##
  271. _ASBOX
  272.      ) | sed "s/^/$as_me: WARNING:     /" >&2
  273.     ;;
  274. esac
  275. { echo "$as_me:$LINENO: checking for $ac_header" >&5
  276. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
  277. if { as_var=$as_ac_Header; eval "test "${$as_var+set}" = set"; }; then
  278.   echo $ECHO_N "(cached) $ECHO_C" >&6
  279. else
  280.   eval "$as_ac_Header=$ac_header_preproc"
  281. fi
  282. ac_res=`eval echo '${'$as_ac_Header'}'`
  283.        { echo "$as_me:$LINENO: result: $ac_res" >&5
  284. echo "${ECHO_T}$ac_res" >&6; }
  285. fi
  286. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  287.   cat >>confdefs.h <<_ACEOF
  288. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  289. _ACEOF
  290. fi
  291. done
  292. { echo "$as_me:$LINENO: checking whether byte ordering is bigendian" >&5
  293. echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6; }
  294. if test "${ac_cv_c_bigendian+set}" = set; then
  295.   echo $ECHO_N "(cached) $ECHO_C" >&6
  296. else
  297.   # See if sys/param.h defines the BYTE_ORDER macro.
  298. cat >conftest.$ac_ext <<_ACEOF
  299. /* confdefs.h.  */
  300. _ACEOF
  301. cat confdefs.h >>conftest.$ac_ext
  302. cat >>conftest.$ac_ext <<_ACEOF
  303. /* end confdefs.h.  */
  304. #include <sys/types.h>
  305. #include <sys/param.h>
  306. int
  307. main ()
  308. {
  309. #if  ! (defined BYTE_ORDER && defined BIG_ENDIAN && defined LITTLE_ENDIAN 
  310. && BYTE_ORDER && BIG_ENDIAN && LITTLE_ENDIAN)
  311.  bogus endian macros
  312. #endif
  313.   ;
  314.   return 0;
  315. }
  316. _ACEOF
  317. rm -f conftest.$ac_objext
  318. if { (ac_try="$ac_compile"
  319. case "(($ac_try" in
  320.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  321.   *) ac_try_echo=$ac_try;;
  322. esac
  323. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  324.   (eval "$ac_compile") 2>conftest.er1
  325.   ac_status=$?
  326.   grep -v '^ *+' conftest.er1 >conftest.err
  327.   rm -f conftest.er1
  328.   cat conftest.err >&5
  329.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  330.   (exit $ac_status); } && {
  331.  test -z "$ac_c_werror_flag" ||
  332.  test ! -s conftest.err
  333.        } && test -s conftest.$ac_objext; then
  334.   # It does; now see whether it defined to BIG_ENDIAN or not.
  335. cat >conftest.$ac_ext <<_ACEOF
  336. /* confdefs.h.  */
  337. _ACEOF
  338. cat confdefs.h >>conftest.$ac_ext
  339. cat >>conftest.$ac_ext <<_ACEOF
  340. /* end confdefs.h.  */
  341. #include <sys/types.h>
  342. #include <sys/param.h>
  343. int
  344. main ()
  345. {
  346. #if BYTE_ORDER != BIG_ENDIAN
  347.  not big endian
  348. #endif
  349.   ;
  350.   return 0;
  351. }
  352. _ACEOF
  353. rm -f conftest.$ac_objext
  354. if { (ac_try="$ac_compile"
  355. case "(($ac_try" in
  356.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  357.   *) ac_try_echo=$ac_try;;
  358. esac
  359. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  360.   (eval "$ac_compile") 2>conftest.er1
  361.   ac_status=$?
  362.   grep -v '^ *+' conftest.er1 >conftest.err
  363.   rm -f conftest.er1
  364.   cat conftest.err >&5
  365.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  366.   (exit $ac_status); } && {
  367.  test -z "$ac_c_werror_flag" ||
  368.  test ! -s conftest.err
  369.        } && test -s conftest.$ac_objext; then
  370.   ac_cv_c_bigendian=yes
  371. else
  372.   echo "$as_me: failed program was:" >&5
  373. sed 's/^/| /' conftest.$ac_ext >&5
  374. ac_cv_c_bigendian=no
  375. fi
  376. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  377. else
  378.   echo "$as_me: failed program was:" >&5
  379. sed 's/^/| /' conftest.$ac_ext >&5
  380. # It does not; compile a test program.
  381. if test "$cross_compiling" = yes; then
  382.   # try to guess the endianness by grepping values into an object file
  383.   ac_cv_c_bigendian=unknown
  384.   cat >conftest.$ac_ext <<_ACEOF
  385. /* confdefs.h.  */
  386. _ACEOF
  387. cat confdefs.h >>conftest.$ac_ext
  388. cat >>conftest.$ac_ext <<_ACEOF
  389. /* end confdefs.h.  */
  390. short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
  391. short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
  392. void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; }
  393. short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
  394. short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
  395. void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; }
  396. int
  397. main ()
  398. {
  399.  _ascii (); _ebcdic ();
  400.   ;
  401.   return 0;
  402. }
  403. _ACEOF
  404. rm -f conftest.$ac_objext
  405. if { (ac_try="$ac_compile"
  406. case "(($ac_try" in
  407.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  408.   *) ac_try_echo=$ac_try;;
  409. esac
  410. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  411.   (eval "$ac_compile") 2>conftest.er1
  412.   ac_status=$?
  413.   grep -v '^ *+' conftest.er1 >conftest.err
  414.   rm -f conftest.er1
  415.   cat conftest.err >&5
  416.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  417.   (exit $ac_status); } && {
  418.  test -z "$ac_c_werror_flag" ||
  419.  test ! -s conftest.err
  420.        } && test -s conftest.$ac_objext; then
  421.   if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
  422.   ac_cv_c_bigendian=yes
  423. fi
  424. if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
  425.   if test "$ac_cv_c_bigendian" = unknown; then
  426.     ac_cv_c_bigendian=no
  427.   else
  428.     # finding both strings is unlikely to happen, but who knows?
  429.     ac_cv_c_bigendian=unknown
  430.   fi
  431. fi
  432. else
  433.   echo "$as_me: failed program was:" >&5
  434. sed 's/^/| /' conftest.$ac_ext >&5
  435. fi
  436. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  437. else
  438.   cat >conftest.$ac_ext <<_ACEOF
  439. /* confdefs.h.  */
  440. _ACEOF
  441. cat confdefs.h >>conftest.$ac_ext
  442. cat >>conftest.$ac_ext <<_ACEOF
  443. /* end confdefs.h.  */
  444. $ac_includes_default
  445. int
  446. main ()
  447. {
  448.   /* Are we little or big endian?  From Harbison&Steele.  */
  449.   union
  450.   {
  451.     long int l;
  452.     char c[sizeof (long int)];
  453.   } u;
  454.   u.l = 1;
  455.   return u.c[sizeof (long int) - 1] == 1;
  456.   ;
  457.   return 0;
  458. }
  459. _ACEOF
  460. rm -f conftest$ac_exeext
  461. if { (ac_try="$ac_link"
  462. case "(($ac_try" in
  463.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  464.   *) ac_try_echo=$ac_try;;
  465. esac
  466. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  467.   (eval "$ac_link") 2>&5
  468.   ac_status=$?
  469.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  470.   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
  471.   { (case "(($ac_try" in
  472.   *"* | *`* | *\*) ac_try_echo=$ac_try;;
  473.   *) ac_try_echo=$ac_try;;
  474. esac
  475. eval "echo "$as_me:$LINENO: $ac_try_echo"") >&5
  476.   (eval "$ac_try") 2>&5
  477.   ac_status=$?
  478.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  479.   (exit $ac_status); }; }; then
  480.   ac_cv_c_bigendian=no
  481. else
  482.   echo "$as_me: program exited with status $ac_status" >&5
  483. echo "$as_me: failed program was:" >&5
  484. sed 's/^/| /' conftest.$ac_ext >&5
  485. ( exit $ac_status )
  486. ac_cv_c_bigendian=yes
  487. fi
  488. rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  489. fi
  490. fi
  491. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  492. fi
  493. { echo "$as_me:$LINENO: result: $ac_cv_c_bigendian" >&5
  494. echo "${ECHO_T}$ac_cv_c_bigendian" >&6; }
  495. case $ac_cv_c_bigendian in
  496.   yes)
  497. cat >>confdefs.h <<_ACEOF
  498. #define WORDS_BIGENDIAN 1
  499. _ACEOF
  500.  ;;
  501.   no)
  502.      ;;
  503.   *)
  504.     { { echo "$as_me:$LINENO: error: unknown endianness
  505. presetting ac_cv_c_bigendian=no (or yes) will help" >&5
  506. echo "$as_me: error: unknown endianness
  507. presetting ac_cv_c_bigendian=no (or yes) will help" >&2;}
  508.    { (exit 1); exit 1; }; } ;;
  509. esac
  510. PKGDATADIR='${datadir}'/$PACKAGE
  511. enable_hipparcos="no"
  512. # Check whether --enable-hipparcos-dir was given.
  513. if test "${enable_hipparcos_dir+set}" = set; then
  514.   enableval=$enable_hipparcos_dir; HIPDIR="$enableval"
  515. else
  516.   HIPDIR="$PKGDATADIR"
  517. fi
  518. { echo "$as_me:$LINENO: checking whether we can create a new star database" >&5
  519. echo $ECHO_N "checking whether we can create a new star database... $ECHO_C" >&6; }
  520. if (test -f "$HIPDIR/hip_main.dat"); then
  521. enable_hipparcos="yes"
  522. fi
  523. { echo "$as_me:$LINENO: result: $enable_hipparcos" >&5
  524. echo "${ECHO_T}$enable_hipparcos" >&6; }
  525.  if test "x$enable_hipparcos" = "xyes"; then
  526.   ENABLE_HIPPARCOS_TRUE=
  527.   ENABLE_HIPPARCOS_FALSE='#'
  528. else
  529.   ENABLE_HIPPARCOS_TRUE='#'
  530.   ENABLE_HIPPARCOS_FALSE=
  531. fi
  532. # Check whether --with-lua was given.
  533. if test "${with_lua+set}" = set; then
  534.   withval=$with_lua; enable_lua="$withval"
  535. else
  536.   enable_lua="auto"
  537. fi
  538. if (test "$enable_lua" != "no"); then
  539. LUA_VER=0
  540. pkg_failed=no
  541. { echo "$as_me:$LINENO: checking for LUA" >&5
  542. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  543. if test -n "$PKG_CONFIG"; then
  544.     if test -n "$LUA_CFLAGS"; then
  545.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  546.     else
  547.         if test -n "$PKG_CONFIG" && 
  548.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1.0"") >&5
  549.   ($PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1.0") 2>&5
  550.   ac_status=$?
  551.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  552.   (exit $ac_status); }; then
  553.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua5.1 >= 5.1.0" 2>/dev/null`
  554. else
  555.   pkg_failed=yes
  556. fi
  557.     fi
  558. else
  559. pkg_failed=untried
  560. fi
  561. if test -n "$PKG_CONFIG"; then
  562.     if test -n "$LUA_LIBS"; then
  563.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  564.     else
  565.         if test -n "$PKG_CONFIG" && 
  566.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1.0"") >&5
  567.   ($PKG_CONFIG --exists --print-errors "lua5.1 >= 5.1.0") 2>&5
  568.   ac_status=$?
  569.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  570.   (exit $ac_status); }; then
  571.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua5.1 >= 5.1.0" 2>/dev/null`
  572. else
  573.   pkg_failed=yes
  574. fi
  575.     fi
  576. else
  577. pkg_failed=untried
  578. fi
  579. if test $pkg_failed = yes; then
  580. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  581.         _pkg_short_errors_supported=yes
  582. else
  583.         _pkg_short_errors_supported=no
  584. fi
  585.         if test $_pkg_short_errors_supported = yes; then
  586.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua5.1 >= 5.1.0"`
  587.         else
  588.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua5.1 >= 5.1.0"`
  589.         fi
  590. # Put the nasty error message in config.log where it belongs
  591. echo "$LUA_PKG_ERRORS" >&5
  592. { echo "$as_me:$LINENO: result: no" >&5
  593. echo "${ECHO_T}no" >&6; }
  594. pkg_failed=no
  595. { echo "$as_me:$LINENO: checking for LUA" >&5
  596. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  597. if test -n "$PKG_CONFIG"; then
  598.     if test -n "$LUA_CFLAGS"; then
  599.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  600.     else
  601.         if test -n "$PKG_CONFIG" && 
  602.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.1.0"") >&5
  603.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1.0") 2>&5
  604.   ac_status=$?
  605.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  606.   (exit $ac_status); }; then
  607.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.1.0" 2>/dev/null`
  608. else
  609.   pkg_failed=yes
  610. fi
  611.     fi
  612. else
  613. pkg_failed=untried
  614. fi
  615. if test -n "$PKG_CONFIG"; then
  616.     if test -n "$LUA_LIBS"; then
  617.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  618.     else
  619.         if test -n "$PKG_CONFIG" && 
  620.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.1.0"") >&5
  621.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1.0") 2>&5
  622.   ac_status=$?
  623.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  624.   (exit $ac_status); }; then
  625.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.1.0" 2>/dev/null`
  626. else
  627.   pkg_failed=yes
  628. fi
  629.     fi
  630. else
  631. pkg_failed=untried
  632. fi
  633. if test $pkg_failed = yes; then
  634. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  635.         _pkg_short_errors_supported=yes
  636. else
  637.         _pkg_short_errors_supported=no
  638. fi
  639.         if test $_pkg_short_errors_supported = yes; then
  640.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.1.0"`
  641.         else
  642.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.1.0"`
  643.         fi
  644. # Put the nasty error message in config.log where it belongs
  645. echo "$LUA_PKG_ERRORS" >&5
  646. { echo "$as_me:$LINENO: result: no" >&5
  647. echo "${ECHO_T}no" >&6; }
  648. pkg_failed=no
  649. { echo "$as_me:$LINENO: checking for LUA" >&5
  650. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  651. if test -n "$PKG_CONFIG"; then
  652.     if test -n "$LUA_CFLAGS"; then
  653.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  654.     else
  655.         if test -n "$PKG_CONFIG" && 
  656.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  657.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  658.   ac_status=$?
  659.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  660.   (exit $ac_status); }; then
  661.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  662. else
  663.   pkg_failed=yes
  664. fi
  665.     fi
  666. else
  667. pkg_failed=untried
  668. fi
  669. if test -n "$PKG_CONFIG"; then
  670.     if test -n "$LUA_LIBS"; then
  671.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  672.     else
  673.         if test -n "$PKG_CONFIG" && 
  674.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  675.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  676.   ac_status=$?
  677.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  678.   (exit $ac_status); }; then
  679.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  680. else
  681.   pkg_failed=yes
  682. fi
  683.     fi
  684. else
  685. pkg_failed=untried
  686. fi
  687. if test $pkg_failed = yes; then
  688. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  689.         _pkg_short_errors_supported=yes
  690. else
  691.         _pkg_short_errors_supported=no
  692. fi
  693.         if test $_pkg_short_errors_supported = yes; then
  694.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  695.         else
  696.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  697.         fi
  698. # Put the nasty error message in config.log where it belongs
  699. echo "$LUA_PKG_ERRORS" >&5
  700. { echo "$as_me:$LINENO: result: no" >&5
  701. echo "${ECHO_T}no" >&6; }
  702. pkg_failed=no
  703. { echo "$as_me:$LINENO: checking for LUA" >&5
  704. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  705. if test -n "$PKG_CONFIG"; then
  706.     if test -n "$LUA_CFLAGS"; then
  707.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  708.     else
  709.         if test -n "$PKG_CONFIG" && 
  710.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  711.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  712.   ac_status=$?
  713.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  714.   (exit $ac_status); }; then
  715.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  716. else
  717.   pkg_failed=yes
  718. fi
  719.     fi
  720. else
  721. pkg_failed=untried
  722. fi
  723. if test -n "$PKG_CONFIG"; then
  724.     if test -n "$LUA_LIBS"; then
  725.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  726.     else
  727.         if test -n "$PKG_CONFIG" && 
  728.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  729.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  730.   ac_status=$?
  731.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  732.   (exit $ac_status); }; then
  733.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  734. else
  735.   pkg_failed=yes
  736. fi
  737.     fi
  738. else
  739. pkg_failed=untried
  740. fi
  741. if test $pkg_failed = yes; then
  742. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  743.         _pkg_short_errors_supported=yes
  744. else
  745.         _pkg_short_errors_supported=no
  746. fi
  747.         if test $_pkg_short_errors_supported = yes; then
  748.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  749.         else
  750.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  751.         fi
  752. # Put the nasty error message in config.log where it belongs
  753. echo "$LUA_PKG_ERRORS" >&5
  754. { echo "$as_me:$LINENO: result: no" >&5
  755. echo "${ECHO_T}no" >&6; }
  756.                 { echo "$as_me:$LINENO: result: no" >&5
  757. echo "${ECHO_T}no" >&6; }
  758. elif test $pkg_failed = untried; then
  759. { echo "$as_me:$LINENO: result: no" >&5
  760. echo "${ECHO_T}no" >&6; }
  761. else
  762. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  763. LUA_LIBS=$pkg_cv_LUA_LIBS
  764.         { echo "$as_me:$LINENO: result: yes" >&5
  765. echo "${ECHO_T}yes" >&6; }
  766. LUA_VER=0x050000
  767. fi
  768. elif test $pkg_failed = untried; then
  769. pkg_failed=no
  770. { echo "$as_me:$LINENO: checking for LUA" >&5
  771. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  772. if test -n "$PKG_CONFIG"; then
  773.     if test -n "$LUA_CFLAGS"; then
  774.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  775.     else
  776.         if test -n "$PKG_CONFIG" && 
  777.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  778.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  779.   ac_status=$?
  780.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  781.   (exit $ac_status); }; then
  782.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  783. else
  784.   pkg_failed=yes
  785. fi
  786.     fi
  787. else
  788. pkg_failed=untried
  789. fi
  790. if test -n "$PKG_CONFIG"; then
  791.     if test -n "$LUA_LIBS"; then
  792.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  793.     else
  794.         if test -n "$PKG_CONFIG" && 
  795.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  796.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  797.   ac_status=$?
  798.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  799.   (exit $ac_status); }; then
  800.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  801. else
  802.   pkg_failed=yes
  803. fi
  804.     fi
  805. else
  806. pkg_failed=untried
  807. fi
  808. if test $pkg_failed = yes; then
  809. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  810.         _pkg_short_errors_supported=yes
  811. else
  812.         _pkg_short_errors_supported=no
  813. fi
  814.         if test $_pkg_short_errors_supported = yes; then
  815.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  816.         else
  817.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  818.         fi
  819. # Put the nasty error message in config.log where it belongs
  820. echo "$LUA_PKG_ERRORS" >&5
  821. { echo "$as_me:$LINENO: result: no" >&5
  822. echo "${ECHO_T}no" >&6; }
  823.                 { echo "$as_me:$LINENO: result: no" >&5
  824. echo "${ECHO_T}no" >&6; }
  825. elif test $pkg_failed = untried; then
  826. { echo "$as_me:$LINENO: result: no" >&5
  827. echo "${ECHO_T}no" >&6; }
  828. else
  829. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  830. LUA_LIBS=$pkg_cv_LUA_LIBS
  831.         { echo "$as_me:$LINENO: result: yes" >&5
  832. echo "${ECHO_T}yes" >&6; }
  833. LUA_VER=0x050000
  834. fi
  835. else
  836. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  837. LUA_LIBS=$pkg_cv_LUA_LIBS
  838.         { echo "$as_me:$LINENO: result: yes" >&5
  839. echo "${ECHO_T}yes" >&6; }
  840. LUA_VER=0x050000
  841. fi
  842. elif test $pkg_failed = untried; then
  843. pkg_failed=no
  844. { echo "$as_me:$LINENO: checking for LUA" >&5
  845. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  846. if test -n "$PKG_CONFIG"; then
  847.     if test -n "$LUA_CFLAGS"; then
  848.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  849.     else
  850.         if test -n "$PKG_CONFIG" && 
  851.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  852.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  853.   ac_status=$?
  854.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  855.   (exit $ac_status); }; then
  856.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  857. else
  858.   pkg_failed=yes
  859. fi
  860.     fi
  861. else
  862. pkg_failed=untried
  863. fi
  864. if test -n "$PKG_CONFIG"; then
  865.     if test -n "$LUA_LIBS"; then
  866.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  867.     else
  868.         if test -n "$PKG_CONFIG" && 
  869.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  870.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  871.   ac_status=$?
  872.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  873.   (exit $ac_status); }; then
  874.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  875. else
  876.   pkg_failed=yes
  877. fi
  878.     fi
  879. else
  880. pkg_failed=untried
  881. fi
  882. if test $pkg_failed = yes; then
  883. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  884.         _pkg_short_errors_supported=yes
  885. else
  886.         _pkg_short_errors_supported=no
  887. fi
  888.         if test $_pkg_short_errors_supported = yes; then
  889.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  890.         else
  891.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  892.         fi
  893. # Put the nasty error message in config.log where it belongs
  894. echo "$LUA_PKG_ERRORS" >&5
  895. { echo "$as_me:$LINENO: result: no" >&5
  896. echo "${ECHO_T}no" >&6; }
  897. pkg_failed=no
  898. { echo "$as_me:$LINENO: checking for LUA" >&5
  899. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  900. if test -n "$PKG_CONFIG"; then
  901.     if test -n "$LUA_CFLAGS"; then
  902.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  903.     else
  904.         if test -n "$PKG_CONFIG" && 
  905.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  906.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  907.   ac_status=$?
  908.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  909.   (exit $ac_status); }; then
  910.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  911. else
  912.   pkg_failed=yes
  913. fi
  914.     fi
  915. else
  916. pkg_failed=untried
  917. fi
  918. if test -n "$PKG_CONFIG"; then
  919.     if test -n "$LUA_LIBS"; then
  920.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  921.     else
  922.         if test -n "$PKG_CONFIG" && 
  923.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  924.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  925.   ac_status=$?
  926.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  927.   (exit $ac_status); }; then
  928.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  929. else
  930.   pkg_failed=yes
  931. fi
  932.     fi
  933. else
  934. pkg_failed=untried
  935. fi
  936. if test $pkg_failed = yes; then
  937. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  938.         _pkg_short_errors_supported=yes
  939. else
  940.         _pkg_short_errors_supported=no
  941. fi
  942.         if test $_pkg_short_errors_supported = yes; then
  943.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  944.         else
  945.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  946.         fi
  947. # Put the nasty error message in config.log where it belongs
  948. echo "$LUA_PKG_ERRORS" >&5
  949. { echo "$as_me:$LINENO: result: no" >&5
  950. echo "${ECHO_T}no" >&6; }
  951.                 { echo "$as_me:$LINENO: result: no" >&5
  952. echo "${ECHO_T}no" >&6; }
  953. elif test $pkg_failed = untried; then
  954. { echo "$as_me:$LINENO: result: no" >&5
  955. echo "${ECHO_T}no" >&6; }
  956. else
  957. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  958. LUA_LIBS=$pkg_cv_LUA_LIBS
  959.         { echo "$as_me:$LINENO: result: yes" >&5
  960. echo "${ECHO_T}yes" >&6; }
  961. LUA_VER=0x050000
  962. fi
  963. elif test $pkg_failed = untried; then
  964. pkg_failed=no
  965. { echo "$as_me:$LINENO: checking for LUA" >&5
  966. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  967. if test -n "$PKG_CONFIG"; then
  968.     if test -n "$LUA_CFLAGS"; then
  969.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  970.     else
  971.         if test -n "$PKG_CONFIG" && 
  972.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  973.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  974.   ac_status=$?
  975.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  976.   (exit $ac_status); }; then
  977.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  978. else
  979.   pkg_failed=yes
  980. fi
  981.     fi
  982. else
  983. pkg_failed=untried
  984. fi
  985. if test -n "$PKG_CONFIG"; then
  986.     if test -n "$LUA_LIBS"; then
  987.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  988.     else
  989.         if test -n "$PKG_CONFIG" && 
  990.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  991.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  992.   ac_status=$?
  993.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  994.   (exit $ac_status); }; then
  995.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  996. else
  997.   pkg_failed=yes
  998. fi
  999.     fi
  1000. else
  1001. pkg_failed=untried
  1002. fi
  1003. if test $pkg_failed = yes; then
  1004. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1005.         _pkg_short_errors_supported=yes
  1006. else
  1007.         _pkg_short_errors_supported=no
  1008. fi
  1009.         if test $_pkg_short_errors_supported = yes; then
  1010.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1011.         else
  1012.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1013.         fi
  1014. # Put the nasty error message in config.log where it belongs
  1015. echo "$LUA_PKG_ERRORS" >&5
  1016. { echo "$as_me:$LINENO: result: no" >&5
  1017. echo "${ECHO_T}no" >&6; }
  1018.                 { echo "$as_me:$LINENO: result: no" >&5
  1019. echo "${ECHO_T}no" >&6; }
  1020. elif test $pkg_failed = untried; then
  1021. { echo "$as_me:$LINENO: result: no" >&5
  1022. echo "${ECHO_T}no" >&6; }
  1023. else
  1024. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1025. LUA_LIBS=$pkg_cv_LUA_LIBS
  1026.         { echo "$as_me:$LINENO: result: yes" >&5
  1027. echo "${ECHO_T}yes" >&6; }
  1028. LUA_VER=0x050000
  1029. fi
  1030. else
  1031. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1032. LUA_LIBS=$pkg_cv_LUA_LIBS
  1033.         { echo "$as_me:$LINENO: result: yes" >&5
  1034. echo "${ECHO_T}yes" >&6; }
  1035. LUA_VER=0x050000
  1036. fi
  1037. else
  1038. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1039. LUA_LIBS=$pkg_cv_LUA_LIBS
  1040.         { echo "$as_me:$LINENO: result: yes" >&5
  1041. echo "${ECHO_T}yes" >&6; }
  1042. LUA_VER=0x050100
  1043. fi
  1044. elif test $pkg_failed = untried; then
  1045. pkg_failed=no
  1046. { echo "$as_me:$LINENO: checking for LUA" >&5
  1047. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  1048. if test -n "$PKG_CONFIG"; then
  1049.     if test -n "$LUA_CFLAGS"; then
  1050.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1051.     else
  1052.         if test -n "$PKG_CONFIG" && 
  1053.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.1.0"") >&5
  1054.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1.0") 2>&5
  1055.   ac_status=$?
  1056.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1057.   (exit $ac_status); }; then
  1058.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.1.0" 2>/dev/null`
  1059. else
  1060.   pkg_failed=yes
  1061. fi
  1062.     fi
  1063. else
  1064. pkg_failed=untried
  1065. fi
  1066. if test -n "$PKG_CONFIG"; then
  1067.     if test -n "$LUA_LIBS"; then
  1068.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1069.     else
  1070.         if test -n "$PKG_CONFIG" && 
  1071.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.1.0"") >&5
  1072.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1.0") 2>&5
  1073.   ac_status=$?
  1074.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1075.   (exit $ac_status); }; then
  1076.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.1.0" 2>/dev/null`
  1077. else
  1078.   pkg_failed=yes
  1079. fi
  1080.     fi
  1081. else
  1082. pkg_failed=untried
  1083. fi
  1084. if test $pkg_failed = yes; then
  1085. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1086.         _pkg_short_errors_supported=yes
  1087. else
  1088.         _pkg_short_errors_supported=no
  1089. fi
  1090.         if test $_pkg_short_errors_supported = yes; then
  1091.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.1.0"`
  1092.         else
  1093.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.1.0"`
  1094.         fi
  1095. # Put the nasty error message in config.log where it belongs
  1096. echo "$LUA_PKG_ERRORS" >&5
  1097. { echo "$as_me:$LINENO: result: no" >&5
  1098. echo "${ECHO_T}no" >&6; }
  1099. pkg_failed=no
  1100. { echo "$as_me:$LINENO: checking for LUA" >&5
  1101. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  1102. if test -n "$PKG_CONFIG"; then
  1103.     if test -n "$LUA_CFLAGS"; then
  1104.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1105.     else
  1106.         if test -n "$PKG_CONFIG" && 
  1107.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  1108.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  1109.   ac_status=$?
  1110.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1111.   (exit $ac_status); }; then
  1112.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  1113. else
  1114.   pkg_failed=yes
  1115. fi
  1116.     fi
  1117. else
  1118. pkg_failed=untried
  1119. fi
  1120. if test -n "$PKG_CONFIG"; then
  1121.     if test -n "$LUA_LIBS"; then
  1122.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1123.     else
  1124.         if test -n "$PKG_CONFIG" && 
  1125.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  1126.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  1127.   ac_status=$?
  1128.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1129.   (exit $ac_status); }; then
  1130.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  1131. else
  1132.   pkg_failed=yes
  1133. fi
  1134.     fi
  1135. else
  1136. pkg_failed=untried
  1137. fi
  1138. if test $pkg_failed = yes; then
  1139. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1140.         _pkg_short_errors_supported=yes
  1141. else
  1142.         _pkg_short_errors_supported=no
  1143. fi
  1144.         if test $_pkg_short_errors_supported = yes; then
  1145.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  1146.         else
  1147.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  1148.         fi
  1149. # Put the nasty error message in config.log where it belongs
  1150. echo "$LUA_PKG_ERRORS" >&5
  1151. { echo "$as_me:$LINENO: result: no" >&5
  1152. echo "${ECHO_T}no" >&6; }
  1153. pkg_failed=no
  1154. { echo "$as_me:$LINENO: checking for LUA" >&5
  1155. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  1156. if test -n "$PKG_CONFIG"; then
  1157.     if test -n "$LUA_CFLAGS"; then
  1158.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1159.     else
  1160.         if test -n "$PKG_CONFIG" && 
  1161.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1162.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1163.   ac_status=$?
  1164.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1165.   (exit $ac_status); }; then
  1166.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1167. else
  1168.   pkg_failed=yes
  1169. fi
  1170.     fi
  1171. else
  1172. pkg_failed=untried
  1173. fi
  1174. if test -n "$PKG_CONFIG"; then
  1175.     if test -n "$LUA_LIBS"; then
  1176.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1177.     else
  1178.         if test -n "$PKG_CONFIG" && 
  1179.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1180.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1181.   ac_status=$?
  1182.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1183.   (exit $ac_status); }; then
  1184.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1185. else
  1186.   pkg_failed=yes
  1187. fi
  1188.     fi
  1189. else
  1190. pkg_failed=untried
  1191. fi
  1192. if test $pkg_failed = yes; then
  1193. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1194.         _pkg_short_errors_supported=yes
  1195. else
  1196.         _pkg_short_errors_supported=no
  1197. fi
  1198.         if test $_pkg_short_errors_supported = yes; then
  1199.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1200.         else
  1201.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1202.         fi
  1203. # Put the nasty error message in config.log where it belongs
  1204. echo "$LUA_PKG_ERRORS" >&5
  1205. { echo "$as_me:$LINENO: result: no" >&5
  1206. echo "${ECHO_T}no" >&6; }
  1207.                 { echo "$as_me:$LINENO: result: no" >&5
  1208. echo "${ECHO_T}no" >&6; }
  1209. elif test $pkg_failed = untried; then
  1210. { echo "$as_me:$LINENO: result: no" >&5
  1211. echo "${ECHO_T}no" >&6; }
  1212. else
  1213. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1214. LUA_LIBS=$pkg_cv_LUA_LIBS
  1215.         { echo "$as_me:$LINENO: result: yes" >&5
  1216. echo "${ECHO_T}yes" >&6; }
  1217. LUA_VER=0x050000
  1218. fi
  1219. elif test $pkg_failed = untried; then
  1220. pkg_failed=no
  1221. { echo "$as_me:$LINENO: checking for LUA" >&5
  1222. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  1223. if test -n "$PKG_CONFIG"; then
  1224.     if test -n "$LUA_CFLAGS"; then
  1225.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1226.     else
  1227.         if test -n "$PKG_CONFIG" && 
  1228.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1229.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1230.   ac_status=$?
  1231.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1232.   (exit $ac_status); }; then
  1233.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1234. else
  1235.   pkg_failed=yes
  1236. fi
  1237.     fi
  1238. else
  1239. pkg_failed=untried
  1240. fi
  1241. if test -n "$PKG_CONFIG"; then
  1242.     if test -n "$LUA_LIBS"; then
  1243.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1244.     else
  1245.         if test -n "$PKG_CONFIG" && 
  1246.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1247.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1248.   ac_status=$?
  1249.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1250.   (exit $ac_status); }; then
  1251.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1252. else
  1253.   pkg_failed=yes
  1254. fi
  1255.     fi
  1256. else
  1257. pkg_failed=untried
  1258. fi
  1259. if test $pkg_failed = yes; then
  1260. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1261.         _pkg_short_errors_supported=yes
  1262. else
  1263.         _pkg_short_errors_supported=no
  1264. fi
  1265.         if test $_pkg_short_errors_supported = yes; then
  1266.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1267.         else
  1268.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1269.         fi
  1270. # Put the nasty error message in config.log where it belongs
  1271. echo "$LUA_PKG_ERRORS" >&5
  1272. { echo "$as_me:$LINENO: result: no" >&5
  1273. echo "${ECHO_T}no" >&6; }
  1274.                 { echo "$as_me:$LINENO: result: no" >&5
  1275. echo "${ECHO_T}no" >&6; }
  1276. elif test $pkg_failed = untried; then
  1277. { echo "$as_me:$LINENO: result: no" >&5
  1278. echo "${ECHO_T}no" >&6; }
  1279. else
  1280. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1281. LUA_LIBS=$pkg_cv_LUA_LIBS
  1282.         { echo "$as_me:$LINENO: result: yes" >&5
  1283. echo "${ECHO_T}yes" >&6; }
  1284. LUA_VER=0x050000
  1285. fi
  1286. else
  1287. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1288. LUA_LIBS=$pkg_cv_LUA_LIBS
  1289.         { echo "$as_me:$LINENO: result: yes" >&5
  1290. echo "${ECHO_T}yes" >&6; }
  1291. LUA_VER=0x050000
  1292. fi
  1293. elif test $pkg_failed = untried; then
  1294. pkg_failed=no
  1295. { echo "$as_me:$LINENO: checking for LUA" >&5
  1296. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  1297. if test -n "$PKG_CONFIG"; then
  1298.     if test -n "$LUA_CFLAGS"; then
  1299.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1300.     else
  1301.         if test -n "$PKG_CONFIG" && 
  1302.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  1303.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  1304.   ac_status=$?
  1305.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1306.   (exit $ac_status); }; then
  1307.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  1308. else
  1309.   pkg_failed=yes
  1310. fi
  1311.     fi
  1312. else
  1313. pkg_failed=untried
  1314. fi
  1315. if test -n "$PKG_CONFIG"; then
  1316.     if test -n "$LUA_LIBS"; then
  1317.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1318.     else
  1319.         if test -n "$PKG_CONFIG" && 
  1320.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"") >&5
  1321.   ($PKG_CONFIG --exists --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0") 2>&5
  1322.   ac_status=$?
  1323.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1324.   (exit $ac_status); }; then
  1325.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua50 >= 5.0.0 lua50 < 5.1.0" 2>/dev/null`
  1326. else
  1327.   pkg_failed=yes
  1328. fi
  1329.     fi
  1330. else
  1331. pkg_failed=untried
  1332. fi
  1333. if test $pkg_failed = yes; then
  1334. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1335.         _pkg_short_errors_supported=yes
  1336. else
  1337.         _pkg_short_errors_supported=no
  1338. fi
  1339.         if test $_pkg_short_errors_supported = yes; then
  1340.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  1341.         else
  1342.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua50 >= 5.0.0 lua50 < 5.1.0"`
  1343.         fi
  1344. # Put the nasty error message in config.log where it belongs
  1345. echo "$LUA_PKG_ERRORS" >&5
  1346. { echo "$as_me:$LINENO: result: no" >&5
  1347. echo "${ECHO_T}no" >&6; }
  1348. pkg_failed=no
  1349. { echo "$as_me:$LINENO: checking for LUA" >&5
  1350. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  1351. if test -n "$PKG_CONFIG"; then
  1352.     if test -n "$LUA_CFLAGS"; then
  1353.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1354.     else
  1355.         if test -n "$PKG_CONFIG" && 
  1356.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1357.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1358.   ac_status=$?
  1359.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1360.   (exit $ac_status); }; then
  1361.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1362. else
  1363.   pkg_failed=yes
  1364. fi
  1365.     fi
  1366. else
  1367. pkg_failed=untried
  1368. fi
  1369. if test -n "$PKG_CONFIG"; then
  1370.     if test -n "$LUA_LIBS"; then
  1371.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1372.     else
  1373.         if test -n "$PKG_CONFIG" && 
  1374.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1375.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1376.   ac_status=$?
  1377.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1378.   (exit $ac_status); }; then
  1379.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1380. else
  1381.   pkg_failed=yes
  1382. fi
  1383.     fi
  1384. else
  1385. pkg_failed=untried
  1386. fi
  1387. if test $pkg_failed = yes; then
  1388. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1389.         _pkg_short_errors_supported=yes
  1390. else
  1391.         _pkg_short_errors_supported=no
  1392. fi
  1393.         if test $_pkg_short_errors_supported = yes; then
  1394.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1395.         else
  1396.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1397.         fi
  1398. # Put the nasty error message in config.log where it belongs
  1399. echo "$LUA_PKG_ERRORS" >&5
  1400. { echo "$as_me:$LINENO: result: no" >&5
  1401. echo "${ECHO_T}no" >&6; }
  1402.                 { echo "$as_me:$LINENO: result: no" >&5
  1403. echo "${ECHO_T}no" >&6; }
  1404. elif test $pkg_failed = untried; then
  1405. { echo "$as_me:$LINENO: result: no" >&5
  1406. echo "${ECHO_T}no" >&6; }
  1407. else
  1408. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1409. LUA_LIBS=$pkg_cv_LUA_LIBS
  1410.         { echo "$as_me:$LINENO: result: yes" >&5
  1411. echo "${ECHO_T}yes" >&6; }
  1412. LUA_VER=0x050000
  1413. fi
  1414. elif test $pkg_failed = untried; then
  1415. pkg_failed=no
  1416. { echo "$as_me:$LINENO: checking for LUA" >&5
  1417. echo $ECHO_N "checking for LUA... $ECHO_C" >&6; }
  1418. if test -n "$PKG_CONFIG"; then
  1419.     if test -n "$LUA_CFLAGS"; then
  1420.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1421.     else
  1422.         if test -n "$PKG_CONFIG" && 
  1423.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1424.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1425.   ac_status=$?
  1426.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1427.   (exit $ac_status); }; then
  1428.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1429. else
  1430.   pkg_failed=yes
  1431. fi
  1432.     fi
  1433. else
  1434. pkg_failed=untried
  1435. fi
  1436. if test -n "$PKG_CONFIG"; then
  1437.     if test -n "$LUA_LIBS"; then
  1438.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1439.     else
  1440.         if test -n "$PKG_CONFIG" && 
  1441.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0"") >&5
  1442.   ($PKG_CONFIG --exists --print-errors "lua >= 5.0.0 lua < 5.1.0") 2>&5
  1443.   ac_status=$?
  1444.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1445.   (exit $ac_status); }; then
  1446.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.0.0 lua < 5.1.0" 2>/dev/null`
  1447. else
  1448.   pkg_failed=yes
  1449. fi
  1450.     fi
  1451. else
  1452. pkg_failed=untried
  1453. fi
  1454. if test $pkg_failed = yes; then
  1455. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1456.         _pkg_short_errors_supported=yes
  1457. else
  1458.         _pkg_short_errors_supported=no
  1459. fi
  1460.         if test $_pkg_short_errors_supported = yes; then
  1461.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1462.         else
  1463.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.0.0 lua < 5.1.0"`
  1464.         fi
  1465. # Put the nasty error message in config.log where it belongs
  1466. echo "$LUA_PKG_ERRORS" >&5
  1467. { echo "$as_me:$LINENO: result: no" >&5
  1468. echo "${ECHO_T}no" >&6; }
  1469.                 { echo "$as_me:$LINENO: result: no" >&5
  1470. echo "${ECHO_T}no" >&6; }
  1471. elif test $pkg_failed = untried; then
  1472. { echo "$as_me:$LINENO: result: no" >&5
  1473. echo "${ECHO_T}no" >&6; }
  1474. else
  1475. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1476. LUA_LIBS=$pkg_cv_LUA_LIBS
  1477.         { echo "$as_me:$LINENO: result: yes" >&5
  1478. echo "${ECHO_T}yes" >&6; }
  1479. LUA_VER=0x050000
  1480. fi
  1481. else
  1482. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1483. LUA_LIBS=$pkg_cv_LUA_LIBS
  1484.         { echo "$as_me:$LINENO: result: yes" >&5
  1485. echo "${ECHO_T}yes" >&6; }
  1486. LUA_VER=0x050000
  1487. fi
  1488. else
  1489. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1490. LUA_LIBS=$pkg_cv_LUA_LIBS
  1491.         { echo "$as_me:$LINENO: result: yes" >&5
  1492. echo "${ECHO_T}yes" >&6; }
  1493. LUA_VER=0x050100
  1494. fi
  1495. else
  1496. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1497. LUA_LIBS=$pkg_cv_LUA_LIBS
  1498.         { echo "$as_me:$LINENO: result: yes" >&5
  1499. echo "${ECHO_T}yes" >&6; }
  1500. LUA_VER=0x050100
  1501. fi
  1502. if (test "$LUA_VER" = "0x050000"); then
  1503. pkg_failed=no
  1504. { echo "$as_me:$LINENO: checking for LUALIB" >&5
  1505. echo $ECHO_N "checking for LUALIB... $ECHO_C" >&6; }
  1506. if test -n "$PKG_CONFIG"; then
  1507.     if test -n "$LUALIB_CFLAGS"; then
  1508.         pkg_cv_LUALIB_CFLAGS="$LUALIB_CFLAGS"
  1509.     else
  1510.         if test -n "$PKG_CONFIG" && 
  1511.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lualib50 >= 5.0.0 lualib50 < 5.1.0"") >&5
  1512.   ($PKG_CONFIG --exists --print-errors "lualib50 >= 5.0.0 lualib50 < 5.1.0") 2>&5
  1513.   ac_status=$?
  1514.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1515.   (exit $ac_status); }; then
  1516.   pkg_cv_LUALIB_CFLAGS=`$PKG_CONFIG --cflags "lualib50 >= 5.0.0 lualib50 < 5.1.0" 2>/dev/null`
  1517. else
  1518.   pkg_failed=yes
  1519. fi
  1520.     fi
  1521. else
  1522. pkg_failed=untried
  1523. fi
  1524. if test -n "$PKG_CONFIG"; then
  1525.     if test -n "$LUALIB_LIBS"; then
  1526.         pkg_cv_LUALIB_LIBS="$LUALIB_LIBS"
  1527.     else
  1528.         if test -n "$PKG_CONFIG" && 
  1529.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lualib50 >= 5.0.0 lualib50 < 5.1.0"") >&5
  1530.   ($PKG_CONFIG --exists --print-errors "lualib50 >= 5.0.0 lualib50 < 5.1.0") 2>&5
  1531.   ac_status=$?
  1532.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1533.   (exit $ac_status); }; then
  1534.   pkg_cv_LUALIB_LIBS=`$PKG_CONFIG --libs "lualib50 >= 5.0.0 lualib50 < 5.1.0" 2>/dev/null`
  1535. else
  1536.   pkg_failed=yes
  1537. fi
  1538.     fi
  1539. else
  1540. pkg_failed=untried
  1541. fi
  1542. if test $pkg_failed = yes; then
  1543. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1544.         _pkg_short_errors_supported=yes
  1545. else
  1546.         _pkg_short_errors_supported=no
  1547. fi
  1548.         if test $_pkg_short_errors_supported = yes; then
  1549.         LUALIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lualib50 >= 5.0.0 lualib50 < 5.1.0"`
  1550.         else
  1551.         LUALIB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lualib50 >= 5.0.0 lualib50 < 5.1.0"`
  1552.         fi
  1553. # Put the nasty error message in config.log where it belongs
  1554. echo "$LUALIB_PKG_ERRORS" >&5
  1555. { echo "$as_me:$LINENO: result: no" >&5
  1556. echo "${ECHO_T}no" >&6; }
  1557. pkg_failed=no
  1558. { echo "$as_me:$LINENO: checking for LUALIB" >&5
  1559. echo $ECHO_N "checking for LUALIB... $ECHO_C" >&6; }
  1560. if test -n "$PKG_CONFIG"; then
  1561.     if test -n "$LUALIB_CFLAGS"; then
  1562.         pkg_cv_LUALIB_CFLAGS="$LUALIB_CFLAGS"
  1563.     else
  1564.         if test -n "$PKG_CONFIG" && 
  1565.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0"") >&5
  1566.   ($PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0") 2>&5
  1567.   ac_status=$?
  1568.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1569.   (exit $ac_status); }; then
  1570.   pkg_cv_LUALIB_CFLAGS=`$PKG_CONFIG --cflags "lualib >= 5.0.0 lualib < 5.1.0" 2>/dev/null`
  1571. else
  1572.   pkg_failed=yes
  1573. fi
  1574.     fi
  1575. else
  1576. pkg_failed=untried
  1577. fi
  1578. if test -n "$PKG_CONFIG"; then
  1579.     if test -n "$LUALIB_LIBS"; then
  1580.         pkg_cv_LUALIB_LIBS="$LUALIB_LIBS"
  1581.     else
  1582.         if test -n "$PKG_CONFIG" && 
  1583.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0"") >&5
  1584.   ($PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0") 2>&5
  1585.   ac_status=$?
  1586.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1587.   (exit $ac_status); }; then
  1588.   pkg_cv_LUALIB_LIBS=`$PKG_CONFIG --libs "lualib >= 5.0.0 lualib < 5.1.0" 2>/dev/null`
  1589. else
  1590.   pkg_failed=yes
  1591. fi
  1592.     fi
  1593. else
  1594. pkg_failed=untried
  1595. fi
  1596. if test $pkg_failed = yes; then
  1597. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1598.         _pkg_short_errors_supported=yes
  1599. else
  1600.         _pkg_short_errors_supported=no
  1601. fi
  1602.         if test $_pkg_short_errors_supported = yes; then
  1603.         LUALIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lualib >= 5.0.0 lualib < 5.1.0"`
  1604.         else
  1605.         LUALIB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lualib >= 5.0.0 lualib < 5.1.0"`
  1606.         fi
  1607. # Put the nasty error message in config.log where it belongs
  1608. echo "$LUALIB_PKG_ERRORS" >&5
  1609. { echo "$as_me:$LINENO: result: no" >&5
  1610. echo "${ECHO_T}no" >&6; }
  1611.                 { echo "$as_me:$LINENO: result: no" >&5
  1612. echo "${ECHO_T}no" >&6; }
  1613. elif test $pkg_failed = untried; then
  1614. { echo "$as_me:$LINENO: result: no" >&5
  1615. echo "${ECHO_T}no" >&6; }
  1616. else
  1617. LUALIB_CFLAGS=$pkg_cv_LUALIB_CFLAGS
  1618. LUALIB_LIBS=$pkg_cv_LUALIB_LIBS
  1619.         { echo "$as_me:$LINENO: result: yes" >&5
  1620. echo "${ECHO_T}yes" >&6; }
  1621. :
  1622. fi
  1623. elif test $pkg_failed = untried; then
  1624. pkg_failed=no
  1625. { echo "$as_me:$LINENO: checking for LUALIB" >&5
  1626. echo $ECHO_N "checking for LUALIB... $ECHO_C" >&6; }
  1627. if test -n "$PKG_CONFIG"; then
  1628.     if test -n "$LUALIB_CFLAGS"; then
  1629.         pkg_cv_LUALIB_CFLAGS="$LUALIB_CFLAGS"
  1630.     else
  1631.         if test -n "$PKG_CONFIG" && 
  1632.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0"") >&5
  1633.   ($PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0") 2>&5
  1634.   ac_status=$?
  1635.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1636.   (exit $ac_status); }; then
  1637.   pkg_cv_LUALIB_CFLAGS=`$PKG_CONFIG --cflags "lualib >= 5.0.0 lualib < 5.1.0" 2>/dev/null`
  1638. else
  1639.   pkg_failed=yes
  1640. fi
  1641.     fi
  1642. else
  1643. pkg_failed=untried
  1644. fi
  1645. if test -n "$PKG_CONFIG"; then
  1646.     if test -n "$LUALIB_LIBS"; then
  1647.         pkg_cv_LUALIB_LIBS="$LUALIB_LIBS"
  1648.     else
  1649.         if test -n "$PKG_CONFIG" && 
  1650.     { (echo "$as_me:$LINENO: $PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0"") >&5
  1651.   ($PKG_CONFIG --exists --print-errors "lualib >= 5.0.0 lualib < 5.1.0") 2>&5
  1652.   ac_status=$?
  1653.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1654.   (exit $ac_status); }; then
  1655.   pkg_cv_LUALIB_LIBS=`$PKG_CONFIG --libs "lualib >= 5.0.0 lualib < 5.1.0" 2>/dev/null`
  1656. else
  1657.   pkg_failed=yes
  1658. fi
  1659.     fi
  1660. else
  1661. pkg_failed=untried
  1662. fi
  1663. if test $pkg_failed = yes; then
  1664. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1665.         _pkg_short_errors_supported=yes
  1666. else
  1667.         _pkg_short_errors_supported=no
  1668. fi
  1669.         if test $_pkg_short_errors_supported = yes; then
  1670.         LUALIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lualib >= 5.0.0 lualib < 5.1.0"`
  1671.         else
  1672.         LUALIB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lualib >= 5.0.0 lualib < 5.1.0"`
  1673.         fi
  1674. # Put the nasty error message in config.log where it belongs
  1675. echo "$LUALIB_PKG_ERRORS" >&5
  1676. { echo "$as_me:$LINENO: result: no" >&5
  1677. echo "${ECHO_T}no" >&6; }
  1678.                 { echo "$as_me:$LINENO: result: no" >&5
  1679. echo "${ECHO_T}no" >&6; }
  1680. elif test $pkg_failed = untried; then
  1681. { echo "$as_me:$LINENO: result: no" >&5
  1682. echo "${ECHO_T}no" >&6; }
  1683. else
  1684. LUALIB_CFLAGS=$pkg_cv_LUALIB_CFLAGS
  1685. LUALIB_LIBS=$pkg_cv_LUALIB_LIBS
  1686.         { echo "$as_me:$LINENO: result: yes" >&5
  1687. echo "${ECHO_T}yes" >&6; }
  1688. :
  1689. fi
  1690. else
  1691. LUALIB_CFLAGS=$pkg_cv_LUALIB_CFLAGS
  1692. LUALIB_LIBS=$pkg_cv_LUALIB_LIBS
  1693.         { echo "$as_me:$LINENO: result: yes" >&5
  1694. echo "${ECHO_T}yes" >&6; }
  1695. :
  1696. fi
  1697. fi
  1698. if (test "$LUA_VER" = "0"); then
  1699. if (test "x$enable_lua" != "xauto"); then
  1700. { { echo "$as_me:$LINENO: error: Lua not found (explicitly enabled)!" >&5
  1701. echo "$as_me: error: Lua not found (explicitly enabled)!" >&2;}
  1702.    { (exit 1); exit 1; }; }
  1703. else
  1704. enable_lua="no"
  1705. fi
  1706. else
  1707. enable_lua="yes"
  1708. fi
  1709. fi
  1710. if (test "$enable_lua" = "yes"); then
  1711. CXXFLAGS="$CXXFLAGS $LUA_CFLAGS $LUALIB_CFLAGS -DLUA_VER=$LUA_VER -DCELX"
  1712. LIBS="$LIBS $LUA_LIBS $LUALIB_LIBS"
  1713. fi
  1714.  if test "$enable_lua" != "no"; then
  1715.   ENABLE_CELX_TRUE=
  1716.   ENABLE_CELX_FALSE='#'
  1717. else
  1718.   ENABLE_CELX_TRUE='#'
  1719.   ENABLE_CELX_FALSE=
  1720. fi
  1721. ac_config_files="$ac_config_files Makefile"
  1722. ac_config_files="$ac_config_files src/Makefile"
  1723. ac_config_files="$ac_config_files src/celutil/Makefile"
  1724. ac_config_files="$ac_config_files src/celmath/Makefile"
  1725. ac_config_files="$ac_config_files src/cel3ds/Makefile"
  1726. ac_config_files="$ac_config_files src/celtxf/Makefile"
  1727. ac_config_files="$ac_config_files src/celengine/Makefile"
  1728. ac_config_files="$ac_config_files src/celestia/Makefile"
  1729. ac_config_files="$ac_config_files data/Makefile"
  1730. ac_config_files="$ac_config_files extras/Makefile"
  1731. ac_config_files="$ac_config_files extras-standard/Makefile"
  1732. ac_config_files="$ac_config_files extras-standard/cassini/Makefile"
  1733. ac_config_files="$ac_config_files extras-standard/cassini/models/Makefile"
  1734. ac_config_files="$ac_config_files extras-standard/cassini/data/Makefile"
  1735. ac_config_files="$ac_config_files extras-standard/mir/Makefile"
  1736. ac_config_files="$ac_config_files extras-standard/mir/models/Makefile"
  1737. ac_config_files="$ac_config_files extras-standard/galileo/Makefile"
  1738. ac_config_files="$ac_config_files extras-standard/galileo/models/Makefile"
  1739. ac_config_files="$ac_config_files extras-standard/hubble/Makefile"
  1740. ac_config_files="$ac_config_files extras-standard/hubble/models/Makefile"
  1741. ac_config_files="$ac_config_files extras-standard/iss/Makefile"
  1742. ac_config_files="$ac_config_files extras-standard/iss/models/Makefile"
  1743. ac_config_files="$ac_config_files extras-standard/iss/textures/Makefile"
  1744. ac_config_files="$ac_config_files extras-standard/iss/textures/medres/Makefile"
  1745. ac_config_files="$ac_config_files textures/Makefile"
  1746. ac_config_files="$ac_config_files textures/lores/Makefile"
  1747. ac_config_files="$ac_config_files textures/medres/Makefile"
  1748. ac_config_files="$ac_config_files textures/hires/Makefile"
  1749. ac_config_files="$ac_config_files models/Makefile"
  1750. ac_config_files="$ac_config_files shaders/Makefile"
  1751. ac_config_files="$ac_config_files fonts/Makefile"
  1752. ac_config_files="$ac_config_files src/celestia/res/Makefile"
  1753. ac_config_files="$ac_config_files src/celestia/kde/Makefile"
  1754. ac_config_files="$ac_config_files src/celestia/kde/data/Makefile"
  1755. ac_config_files="$ac_config_files src/celestia/kde/doc/Makefile"
  1756. ac_config_files="$ac_config_files src/celestia/kde/doc/celestia/Makefile"
  1757. ac_config_files="$ac_config_files src/celestia/gtk/Makefile"
  1758. ac_config_files="$ac_config_files src/celestia/gtk/data/Makefile"
  1759. ac_config_files="$ac_config_files po/Makefile.in"
  1760. ac_config_files="$ac_config_files po2/Makefile.in"
  1761. ac_config_files="$ac_config_files locale/Makefile"
  1762. ac_config_files="$ac_config_files scripts/Makefile"
  1763. cat >confcache <<_ACEOF
  1764. # This file is a shell script that caches the results of configure
  1765. # tests run on this system so they can be shared between configure
  1766. # scripts and configure runs, see configure's option --config-cache.
  1767. # It is not useful on other systems.  If it contains results you don't
  1768. # want to keep, you may remove or edit it.
  1769. #
  1770. # config.status only pays attention to the cache file if you give it
  1771. # the --recheck option to rerun configure.
  1772. #
  1773. # `ac_cv_env_foo' variables (set or unset) will be overridden when
  1774. # loading this file, other *unset* `ac_cv_foo' will be assigned the
  1775. # following values.
  1776. _ACEOF
  1777. # The following way of writing the cache mishandles newlines in values,
  1778. # but we know of no workaround that is simple, portable, and efficient.
  1779. # So, we kill variables containing newlines.
  1780. # Ultrix sh set writes to stderr and can't be redirected directly,
  1781. # and sets the high bit in the cache file unless we assign to the vars.
  1782. (
  1783.   for ac_var in `(set) 2>&1 | sed -n 's/^([a-zA-Z_][a-zA-Z0-9_]*)=.*/1/p'`; do
  1784.     eval ac_val=$$ac_var
  1785.     case $ac_val in #(
  1786.     *${as_nl}*)
  1787.       case $ac_var in #(
  1788.       *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
  1789. echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
  1790.       esac
  1791.       case $ac_var in #(
  1792.       _ | IFS | as_nl) ;; #(
  1793.       *) $as_unset $ac_var ;;
  1794.       esac ;;
  1795.     esac
  1796.   done
  1797.   (set) 2>&1 |
  1798.     case $as_nl`(ac_space=' '; set) 2>&1` in #(
  1799.     *${as_nl}ac_space= *)
  1800.       # `set' does not quote correctly, so add quotes (double-quote
  1801.       # substitution turns \\ into \, and sed turns \ into ).
  1802.       sed -n 
  1803. "s/'/'\\''/g;
  1804.   s/^\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\)=\(.*\)/\1='\2'/p"
  1805.       ;; #(
  1806.     *)
  1807.       # `set' quotes correctly as required by POSIX, so do not add quotes.
  1808.       sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
  1809.       ;;
  1810.     esac |
  1811.     sort
  1812. ) |
  1813.   sed '
  1814.      /^ac_cv_env_/b end
  1815.      t clear
  1816.      :clear
  1817.      s/^([^=]*)=(.*[{}].*)$/test "${1+set}" = set || &/
  1818.      t end
  1819.      s/^([^=]*)=(.*)$/1=${1=2}/
  1820.      :end' >>confcache
  1821. if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
  1822.   if test -w "$cache_file"; then
  1823.     test "x$cache_file" != "x/dev/null" &&
  1824.       { echo "$as_me:$LINENO: updating cache $cache_file" >&5
  1825. echo "$as_me: updating cache $cache_file" >&6;}
  1826.     cat confcache >$cache_file
  1827.   else
  1828.     { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
  1829. echo "$as_me: not updating unwritable cache $cache_file" >&6;}
  1830.   fi
  1831. fi
  1832. rm -f confcache
  1833. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  1834. # Let make expand exec_prefix.
  1835. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  1836. DEFS=-DHAVE_CONFIG_H
  1837. ac_libobjs=
  1838. ac_ltlibobjs=
  1839. for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  1840.   # 1. Remove the extension, and $U if already installed.
  1841.   ac_script='s/$U././;s/.o$//;s/.obj$//'
  1842.   ac_i=`echo "$ac_i" | sed "$ac_script"`
  1843.   # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
  1844.   #    will be set to the directory where LIBOBJS objects are built.
  1845.   ac_libobjs="$ac_libobjs ${LIBOBJDIR}$ac_i$U.$ac_objext"
  1846.   ac_ltlibobjs="$ac_ltlibobjs ${LIBOBJDIR}$ac_i"'$U.lo'
  1847. done
  1848. LIBOBJS=$ac_libobjs
  1849. LTLIBOBJS=$ac_ltlibobjs
  1850. if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
  1851.   { { echo "$as_me:$LINENO: error: conditional "AMDEP" was never defined.
  1852. Usually this means the macro was only invoked conditionally." >&5
  1853. echo "$as_me: error: conditional "AMDEP" was never defined.
  1854. Usually this means the macro was only invoked conditionally." >&2;}
  1855.    { (exit 1); exit 1; }; }
  1856. fi
  1857. if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
  1858.   { { echo "$as_me:$LINENO: error: conditional "am__fastdepCC" was never defined.
  1859. Usually this means the macro was only invoked conditionally." >&5
  1860. echo "$as_me: error: conditional "am__fastdepCC" was never defined.
  1861. Usually this means the macro was only invoked conditionally." >&2;}
  1862.    { (exit 1); exit 1; }; }
  1863. fi
  1864. if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
  1865.   { { echo "$as_me:$LINENO: error: conditional "am__fastdepCC" was never defined.
  1866. Usually this means the macro was only invoked conditionally." >&5
  1867. echo "$as_me: error: conditional "am__fastdepCC" was never defined.
  1868. Usually this means the macro was only invoked conditionally." >&2;}
  1869.    { (exit 1); exit 1; }; }
  1870. fi
  1871. if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
  1872.   { { echo "$as_me:$LINENO: error: conditional "am__fastdepCXX" was never defined.
  1873. Usually this means the macro was only invoked conditionally." >&5
  1874. echo "$as_me: error: conditional "am__fastdepCXX" was never defined.
  1875. Usually this means the macro was only invoked conditionally." >&2;}
  1876.    { (exit 1); exit 1; }; }
  1877. fi
  1878. if test -z "${ENABLE_SPICE_TRUE}" && test -z "${ENABLE_SPICE_FALSE}"; then
  1879.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_SPICE" was never defined.
  1880. Usually this means the macro was only invoked conditionally." >&5
  1881. echo "$as_me: error: conditional "ENABLE_SPICE" was never defined.
  1882. Usually this means the macro was only invoked conditionally." >&2;}
  1883.    { (exit 1); exit 1; }; }
  1884. fi
  1885. if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
  1886.   { { echo "$as_me:$LINENO: error: conditional "am__fastdepCC" was never defined.
  1887. Usually this means the macro was only invoked conditionally." >&5
  1888. echo "$as_me: error: conditional "am__fastdepCC" was never defined.
  1889. Usually this means the macro was only invoked conditionally." >&2;}
  1890.    { (exit 1); exit 1; }; }
  1891. fi
  1892. if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
  1893.   { { echo "$as_me:$LINENO: error: conditional "am__fastdepCXX" was never defined.
  1894. Usually this means the macro was only invoked conditionally." >&5
  1895. echo "$as_me: error: conditional "am__fastdepCXX" was never defined.
  1896. Usually this means the macro was only invoked conditionally." >&2;}
  1897.    { (exit 1); exit 1; }; }
  1898. fi
  1899. if test -z "${unsermake_enable_pch_TRUE}" && test -z "${unsermake_enable_pch_FALSE}"; then
  1900.   { { echo "$as_me:$LINENO: error: conditional "unsermake_enable_pch" was never defined.
  1901. Usually this means the macro was only invoked conditionally." >&5
  1902. echo "$as_me: error: conditional "unsermake_enable_pch" was never defined.
  1903. Usually this means the macro was only invoked conditionally." >&2;}
  1904.    { (exit 1); exit 1; }; }
  1905. fi
  1906. if test -z "${ENABLE_GLUT_TRUE}" && test -z "${ENABLE_GLUT_FALSE}"; then
  1907.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_GLUT" was never defined.
  1908. Usually this means the macro was only invoked conditionally." >&5
  1909. echo "$as_me: error: conditional "ENABLE_GLUT" was never defined.
  1910. Usually this means the macro was only invoked conditionally." >&2;}
  1911.    { (exit 1); exit 1; }; }
  1912. fi
  1913. if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then
  1914.   { { echo "$as_me:$LINENO: error: conditional "GCONF_SCHEMAS_INSTALL" was never defined.
  1915. Usually this means the macro was only invoked conditionally." >&5
  1916. echo "$as_me: error: conditional "GCONF_SCHEMAS_INSTALL" was never defined.
  1917. Usually this means the macro was only invoked conditionally." >&2;}
  1918.    { (exit 1); exit 1; }; }
  1919. fi
  1920. if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then
  1921.   { { echo "$as_me:$LINENO: error: conditional "GCONF_SCHEMAS_INSTALL" was never defined.
  1922. Usually this means the macro was only invoked conditionally." >&5
  1923. echo "$as_me: error: conditional "GCONF_SCHEMAS_INSTALL" was never defined.
  1924. Usually this means the macro was only invoked conditionally." >&2;}
  1925.    { (exit 1); exit 1; }; }
  1926. fi
  1927. if test -z "${ENABLE_GTK_TRUE}" && test -z "${ENABLE_GTK_FALSE}"; then
  1928.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_GTK" was never defined.
  1929. Usually this means the macro was only invoked conditionally." >&5
  1930. echo "$as_me: error: conditional "ENABLE_GTK" was never defined.
  1931. Usually this means the macro was only invoked conditionally." >&2;}
  1932.    { (exit 1); exit 1; }; }
  1933. fi
  1934. if test -z "${ENABLE_GNOME_TRUE}" && test -z "${ENABLE_GNOME_FALSE}"; then
  1935.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_GNOME" was never defined.
  1936. Usually this means the macro was only invoked conditionally." >&5
  1937. echo "$as_me: error: conditional "ENABLE_GNOME" was never defined.
  1938. Usually this means the macro was only invoked conditionally." >&2;}
  1939.    { (exit 1); exit 1; }; }
  1940. fi
  1941. if test -z "${include_ARTS_TRUE}" && test -z "${include_ARTS_FALSE}"; then
  1942.   { { echo "$as_me:$LINENO: error: conditional "include_ARTS" was never defined.
  1943. Usually this means the macro was only invoked conditionally." >&5
  1944. echo "$as_me: error: conditional "include_ARTS" was never defined.
  1945. Usually this means the macro was only invoked conditionally." >&2;}
  1946.    { (exit 1); exit 1; }; }
  1947. fi
  1948. if test -z "${include_x11_TRUE}" && test -z "${include_x11_FALSE}"; then
  1949.   { { echo "$as_me:$LINENO: error: conditional "include_x11" was never defined.
  1950. Usually this means the macro was only invoked conditionally." >&5
  1951. echo "$as_me: error: conditional "include_x11" was never defined.
  1952. Usually this means the macro was only invoked conditionally." >&2;}
  1953.    { (exit 1); exit 1; }; }
  1954. fi
  1955. if test -z "${include_ARTS_TRUE}" && test -z "${include_ARTS_FALSE}"; then
  1956.   { { echo "$as_me:$LINENO: error: conditional "include_ARTS" was never defined.
  1957. Usually this means the macro was only invoked conditionally." >&5
  1958. echo "$as_me: error: conditional "include_ARTS" was never defined.
  1959. Usually this means the macro was only invoked conditionally." >&2;}
  1960.    { (exit 1); exit 1; }; }
  1961. fi
  1962. if test -z "${ENABLE_KDE_TRUE}" && test -z "${ENABLE_KDE_FALSE}"; then
  1963.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_KDE" was never defined.
  1964. Usually this means the macro was only invoked conditionally." >&5
  1965. echo "$as_me: error: conditional "ENABLE_KDE" was never defined.
  1966. Usually this means the macro was only invoked conditionally." >&2;}
  1967.    { (exit 1); exit 1; }; }
  1968. fi
  1969. if test -z "${ENABLE_THEORA_TRUE}" && test -z "${ENABLE_THEORA_FALSE}"; then
  1970.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_THEORA" was never defined.
  1971. Usually this means the macro was only invoked conditionally." >&5
  1972. echo "$as_me: error: conditional "ENABLE_THEORA" was never defined.
  1973. Usually this means the macro was only invoked conditionally." >&2;}
  1974.    { (exit 1); exit 1; }; }
  1975. fi
  1976. if test -z "${ENABLE_HIPPARCOS_TRUE}" && test -z "${ENABLE_HIPPARCOS_FALSE}"; then
  1977.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_HIPPARCOS" was never defined.
  1978. Usually this means the macro was only invoked conditionally." >&5
  1979. echo "$as_me: error: conditional "ENABLE_HIPPARCOS" was never defined.
  1980. Usually this means the macro was only invoked conditionally." >&2;}
  1981.    { (exit 1); exit 1; }; }
  1982. fi
  1983. if test -z "${ENABLE_CELX_TRUE}" && test -z "${ENABLE_CELX_FALSE}"; then
  1984.   { { echo "$as_me:$LINENO: error: conditional "ENABLE_CELX" was never defined.
  1985. Usually this means the macro was only invoked conditionally." >&5
  1986. echo "$as_me: error: conditional "ENABLE_CELX" was never defined.
  1987. Usually this means the macro was only invoked conditionally." >&2;}
  1988.    { (exit 1); exit 1; }; }
  1989. fi
  1990. : ${CONFIG_STATUS=./config.status}
  1991. ac_clean_files_save=$ac_clean_files
  1992. ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  1993. { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
  1994. echo "$as_me: creating $CONFIG_STATUS" >&6;}
  1995. cat >$CONFIG_STATUS <<_ACEOF
  1996. #! $SHELL
  1997. # Generated by $as_me.
  1998. # Run this file to recreate the current configuration.
  1999. # Compiler output produced by configure, useful for debugging
  2000. # configure, is in config.log if it exists.
  2001. debug=false
  2002. ac_cs_recheck=false
  2003. ac_cs_silent=false
  2004. SHELL=${CONFIG_SHELL-$SHELL}
  2005. _ACEOF
  2006. cat >>$CONFIG_STATUS <<_ACEOF
  2007. ## --------------------- ##
  2008. ## M4sh Initialization.  ##
  2009. ## --------------------- ##
  2010. # Be more Bourne compatible
  2011. DUALCASE=1; export DUALCASE # for MKS sh
  2012. if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
  2013.   emulate sh
  2014.   NULLCMD=:
  2015.   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
  2016.   # is contrary to our usage.  Disable this feature.
  2017.   alias -g '${1+"$@"}'='"$@"'
  2018.   setopt NO_GLOB_SUBST
  2019. else
  2020.   case `(set -o) 2>/dev/null` in
  2021.   *posix*) set -o posix ;;
  2022. esac
  2023. fi
  2024. # PATH needs CR
  2025. # Avoid depending upon Character Ranges.
  2026. as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  2027. as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  2028. as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  2029. as_cr_digits='0123456789'
  2030. as_cr_alnum=$as_cr_Letters$as_cr_digits
  2031. # The user is always right.
  2032. if test "${PATH_SEPARATOR+set}" != set; then
  2033.   echo "#! /bin/sh" >conf$$.sh
  2034.   echo  "exit 0"   >>conf$$.sh
  2035.   chmod +x conf$$.sh
  2036.   if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
  2037.     PATH_SEPARATOR=';'
  2038.   else
  2039.     PATH_SEPARATOR=:
  2040.   fi
  2041.   rm -f conf$$.sh
  2042. fi
  2043. # Support unset when possible.
  2044. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
  2045.   as_unset=unset
  2046. else
  2047.   as_unset=false
  2048. fi
  2049. # IFS
  2050. # We need space, tab and new line, in precisely that order.  Quoting is
  2051. # there to prevent editors from complaining about space-tab.
  2052. # (If _AS_PATH_WALK were called with IFS unset, it would disable word
  2053. # splitting by setting IFS to empty value.)
  2054. as_nl='
  2055. '
  2056. IFS=" "" $as_nl"
  2057. # Find who we are.  Look in the path if we contain no directory separator.
  2058. case $0 in
  2059.   *[\/]* ) as_myself=$0 ;;
  2060.   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2061. for as_dir in $PATH
  2062. do
  2063.   IFS=$as_save_IFS
  2064.   test -z "$as_dir" && as_dir=.
  2065.   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  2066. done
  2067. IFS=$as_save_IFS
  2068.      ;;
  2069. esac
  2070. # We did not find ourselves, most probably we were run as `sh COMMAND'
  2071. # in which case we are not to be found in the path.
  2072. if test "x$as_myself" = x; then
  2073.   as_myself=$0
  2074. fi
  2075. if test ! -f "$as_myself"; then
  2076.   echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  2077.   { (exit 1); exit 1; }
  2078. fi
  2079. # Work around bugs in pre-3.0 UWIN ksh.
  2080. for as_var in ENV MAIL MAILPATH
  2081. do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
  2082. done
  2083. PS1='$ '
  2084. PS2='> '
  2085. PS4='+ '
  2086. # NLS nuisances.
  2087. for as_var in 
  2088.   LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION 
  2089.   LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER 
  2090.   LC_TELEPHONE LC_TIME
  2091. do
  2092.   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
  2093.     eval $as_var=C; export $as_var
  2094.   else
  2095.     ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
  2096.   fi
  2097. done
  2098. # Required to use basename.
  2099. if expr a : '(a)' >/dev/null 2>&1 &&
  2100.    test "X`expr 00001 : '.*(...)'`" = X001; then
  2101.   as_expr=expr
  2102. else
  2103.   as_expr=false
  2104. fi
  2105. if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  2106.   as_basename=basename
  2107. else
  2108.   as_basename=false
  2109. fi
  2110. # Name of the executable.
  2111. as_me=`$as_basename -- "$0" ||
  2112. $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | 
  2113.  X"$0" : 'X(//)$' | 
  2114.  X"$0" : 'X(/)' | . 2>/dev/null ||
  2115. echo X/"$0" |
  2116.     sed '/^.*/([^/][^/]*)/*$/{
  2117.     s//1/
  2118.     q
  2119.   }
  2120.   /^X/(//)$/{
  2121.     s//1/
  2122.     q
  2123.   }
  2124.   /^X/(/).*/{
  2125.     s//1/
  2126.     q
  2127.   }
  2128.   s/.*/./; q'`
  2129. # CDPATH.
  2130. $as_unset CDPATH
  2131.   as_lineno_1=$LINENO
  2132.   as_lineno_2=$LINENO
  2133.   test "x$as_lineno_1" != "x$as_lineno_2" &&
  2134.   test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
  2135.   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
  2136.   # uniformly replaced by the line number.  The first 'sed' inserts a
  2137.   # line-number line after each line using $LINENO; the second 'sed'
  2138.   # does the real work.  The second script uses 'N' to pair each
  2139.   # line-number line with the line containing $LINENO, and appends
  2140.   # trailing '-' during substitution so that $LINENO is not a special
  2141.   # case at line end.
  2142.   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
  2143.   # scripts with optimization help from Paolo Bonzini.  Blame Lee
  2144.   # E. McMahon (1931-1989) for sed's syntax.  :-)
  2145.   sed -n '
  2146.     p
  2147.     /[$]LINENO/=
  2148.   ' <$as_myself |
  2149.     sed '
  2150.       s/[$]LINENO.*/&-/
  2151.       t lineno
  2152.       b
  2153.       :lineno
  2154.       N
  2155.       :loop
  2156.       s/[$]LINENO([^'$as_cr_alnum'_].*n)(.*)/212/
  2157.       t loop
  2158.       s/-n.*//
  2159.     ' >$as_me.lineno &&
  2160.   chmod +x "$as_me.lineno" ||
  2161.     { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
  2162.    { (exit 1); exit 1; }; }
  2163.   # Don't try to exec as it changes $[0], causing all sort of problems
  2164.   # (the dirname of $[0] is not the place where we might find the
  2165.   # original and so on.  Autoconf is especially sensitive to this).
  2166.   . "./$as_me.lineno"
  2167.   # Exit status is that of the last command.
  2168.   exit
  2169. }
  2170. if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  2171.   as_dirname=dirname
  2172. else
  2173.   as_dirname=false
  2174. fi
  2175. ECHO_C= ECHO_N= ECHO_T=
  2176. case `echo -n x` in
  2177. -n*)
  2178.   case `echo 'xc'` in
  2179.   *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  2180.   *)   ECHO_C='c';;
  2181.   esac;;
  2182. *)
  2183.   ECHO_N='-n';;
  2184. esac
  2185. if expr a : '(a)' >/dev/null 2>&1 &&
  2186.    test "X`expr 00001 : '.*(...)'`" = X001; then
  2187.   as_expr=expr
  2188. else
  2189.   as_expr=false
  2190. fi
  2191. rm -f conf$$ conf$$.exe conf$$.file
  2192. if test -d conf$$.dir; then
  2193.   rm -f conf$$.dir/conf$$.file
  2194. else
  2195.   rm -f conf$$.dir
  2196.   mkdir conf$$.dir
  2197. fi
  2198. echo >conf$$.file
  2199. if ln -s conf$$.file conf$$ 2>/dev/null; then
  2200.   as_ln_s='ln -s'
  2201.   # ... but there are two gotchas:
  2202.   # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  2203.   # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  2204.   # In both cases, we have to default to `cp -p'.
  2205.   ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  2206.     as_ln_s='cp -p'
  2207. elif ln conf$$.file conf$$ 2>/dev/null; then
  2208.   as_ln_s=ln
  2209. else
  2210.   as_ln_s='cp -p'
  2211. fi
  2212. rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  2213. rmdir conf$$.dir 2>/dev/null
  2214. if mkdir -p . 2>/dev/null; then
  2215.   as_mkdir_p=:
  2216. else
  2217.   test -d ./-p && rmdir ./-p
  2218.   as_mkdir_p=false
  2219. fi
  2220. if test -x / >/dev/null 2>&1; then
  2221.   as_test_x='test -x'
  2222. else
  2223.   if ls -dL / >/dev/null 2>&1; then
  2224.     as_ls_L_option=L
  2225.   else
  2226.     as_ls_L_option=
  2227.   fi
  2228.   as_test_x='
  2229.     eval sh -c '''
  2230.       if test -d "$1"; then
  2231.         test -d "$1/.";
  2232.       else
  2233. case $1 in
  2234.         -*)set "./$1";;
  2235. esac;
  2236. case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
  2237. ???[sx]*):;;*)false;;esac;fi
  2238.     ''' sh
  2239.   '
  2240. fi
  2241. as_executable_p=$as_test_x
  2242. # Sed expression to map a string onto a valid CPP name.
  2243. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  2244. # Sed expression to map a string onto a valid variable name.
  2245. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  2246. exec 6>&1
  2247. # Save the log message, to keep $[0] and so on meaningful, and to
  2248. # report actual input values of CONFIG_FILES etc. instead of their
  2249. # values after options handling.
  2250. ac_log="
  2251. This file was extended by celestia $as_me 1.6.0, which was
  2252. generated by GNU Autoconf 2.61.  Invocation command line was
  2253.   CONFIG_FILES    = $CONFIG_FILES
  2254.   CONFIG_HEADERS  = $CONFIG_HEADERS
  2255.   CONFIG_LINKS    = $CONFIG_LINKS
  2256.   CONFIG_COMMANDS = $CONFIG_COMMANDS
  2257.   $ $0 $@
  2258. on `(hostname || uname -n) 2>/dev/null | sed 1q`
  2259. "
  2260. _ACEOF
  2261. cat >>$CONFIG_STATUS <<_ACEOF
  2262. # Files that config.status was made for.
  2263. config_files="$ac_config_files"
  2264. config_headers="$ac_config_headers"
  2265. config_commands="$ac_config_commands"
  2266. _ACEOF
  2267. cat >>$CONFIG_STATUS <<_ACEOF
  2268. ac_cs_usage="
  2269. `$as_me' instantiates files from templates according to the
  2270. current configuration.
  2271. Usage: $0 [OPTIONS] [FILE]...
  2272.   -h, --help       print this help, then exit
  2273.   -V, --version    print version number and configuration settings, then exit
  2274.   -q, --quiet      do not print progress messages
  2275.   -d, --debug      don't remove temporary files
  2276.       --recheck    update $as_me by reconfiguring in the same conditions
  2277.   --file=FILE[:TEMPLATE]
  2278.    instantiate the configuration file FILE
  2279.   --header=FILE[:TEMPLATE]
  2280.    instantiate the configuration header FILE
  2281. Configuration files:
  2282. $config_files
  2283. Configuration headers:
  2284. $config_headers
  2285. Configuration commands:
  2286. $config_commands
  2287. Report bugs to <bug-autoconf@gnu.org>."
  2288. _ACEOF
  2289. cat >>$CONFIG_STATUS <<_ACEOF
  2290. ac_cs_version="\
  2291. celestia config.status 1.6.0
  2292. configured by $0, generated by GNU Autoconf 2.61,
  2293.   with options \"`echo "$ac_configure_args" | sed 's/^ //; s/[\""`$]/\\&/g'`\"
  2294. Copyright (C) 2006 Free Software Foundation, Inc.
  2295. This config.status script is free software; the Free Software Foundation
  2296. gives unlimited permission to copy, distribute and modify it."
  2297. ac_pwd='$ac_pwd'
  2298. srcdir='$srcdir'
  2299. INSTALL='$INSTALL'
  2300. MKDIR_P='$MKDIR_P'
  2301. _ACEOF
  2302. cat >>$CONFIG_STATUS <<_ACEOF
  2303. # If no file are specified by the user, then we need to provide default
  2304. # value.  By we need to know if files were specified by the user.
  2305. ac_need_defaults=:
  2306. while test $# != 0
  2307. do
  2308.   case $1 in
  2309.   --*=*)
  2310.     ac_option=`expr "X$1" : 'X([^=]*)='`
  2311.     ac_optarg=`expr "X$1" : 'X[^=]*=(.*)'`
  2312.     ac_shift=:
  2313.     ;;
  2314.   *)
  2315.     ac_option=$1
  2316.     ac_optarg=$2
  2317.     ac_shift=shift
  2318.     ;;
  2319.   esac
  2320.   case $ac_option in
  2321.   # Handling of the options.
  2322.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  2323.     ac_cs_recheck=: ;;
  2324.   --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  2325.     echo "$ac_cs_version"; exit ;;
  2326.   --debug | --debu | --deb | --de | --d | -d )
  2327.     debug=: ;;
  2328.   --file | --fil | --fi | --f )
  2329.     $ac_shift
  2330.     CONFIG_FILES="$CONFIG_FILES $ac_optarg"
  2331.     ac_need_defaults=false;;
  2332.   --header | --heade | --head | --hea )
  2333.     $ac_shift
  2334.     CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
  2335.     ac_need_defaults=false;;
  2336.   --he | --h)
  2337.     # Conflict between --help and --header
  2338.     { echo "$as_me: error: ambiguous option: $1
  2339. Try `$0 --help' for more information." >&2
  2340.    { (exit 1); exit 1; }; };;
  2341.   --help | --hel | -h )
  2342.     echo "$ac_cs_usage"; exit ;;
  2343.   -q | -quiet | --quiet | --quie | --qui | --qu | --q 
  2344.   | -silent | --silent | --silen | --sile | --sil | --si | --s)
  2345.     ac_cs_silent=: ;;
  2346.   # This is an error.
  2347.   -*) { echo "$as_me: error: unrecognized option: $1
  2348. Try `$0 --help' for more information." >&2
  2349.    { (exit 1); exit 1; }; } ;;
  2350.   *) ac_config_targets="$ac_config_targets $1"
  2351.      ac_need_defaults=false ;;
  2352.   esac
  2353.   shift
  2354. done
  2355. ac_configure_extra_args=
  2356. if $ac_cs_silent; then
  2357.   exec 6>/dev/null
  2358.   ac_configure_extra_args="$ac_configure_extra_args --silent"
  2359. fi
  2360. _ACEOF
  2361. cat >>$CONFIG_STATUS <<_ACEOF
  2362. if $ac_cs_recheck; then
  2363.   echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args $ac_configure_extra_args " --no-create --no-recursion" >&6
  2364.   CONFIG_SHELL=$SHELL
  2365.   export CONFIG_SHELL
  2366.   exec $SHELL "$0"$ac_configure_args $ac_configure_extra_args --no-create --no-recursion
  2367. fi
  2368. _ACEOF
  2369. cat >>$CONFIG_STATUS <<_ACEOF
  2370. exec 5>>config.log
  2371. {
  2372.   echo
  2373.   sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  2374. ## Running $as_me. ##
  2375. _ASBOX
  2376.   echo "$ac_log"
  2377. } >&5
  2378. _ACEOF
  2379. cat >>$CONFIG_STATUS <<_ACEOF
  2380. #
  2381. # INIT-COMMANDS
  2382. #
  2383. # Capture the value of obsolete ALL_LINGUAS because we need it to compute
  2384.     # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it
  2385.     # from automake < 1.5.
  2386.     eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
  2387.     # Capture the value of LINGUAS because we need it to compute CATALOGS.
  2388.     LINGUAS="${LINGUAS-%UNSET%}"
  2389. AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
  2390. _ACEOF
  2391. cat >>$CONFIG_STATUS <<_ACEOF
  2392. # Handling of arguments.
  2393. for ac_config_target in $ac_config_targets
  2394. do
  2395.   case $ac_config_target in
  2396.     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
  2397.     "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;;
  2398.     "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
  2399.     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  2400.     "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
  2401.     "src/celutil/Makefile") CONFIG_FILES="$CONFIG_FILES src/celutil/Makefile" ;;
  2402.     "src/celmath/Makefile") CONFIG_FILES="$CONFIG_FILES src/celmath/Makefile" ;;
  2403.     "src/cel3ds/Makefile") CONFIG_FILES="$CONFIG_FILES src/cel3ds/Makefile" ;;
  2404.     "src/celtxf/Makefile") CONFIG_FILES="$CONFIG_FILES src/celtxf/Makefile" ;;
  2405.     "src/celengine/Makefile") CONFIG_FILES="$CONFIG_FILES src/celengine/Makefile" ;;
  2406.     "src/celestia/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/Makefile" ;;
  2407.     "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;;
  2408.     "extras/Makefile") CONFIG_FILES="$CONFIG_FILES extras/Makefile" ;;
  2409.     "extras-standard/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/Makefile" ;;
  2410.     "extras-standard/cassini/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/cassini/Makefile" ;;
  2411.     "extras-standard/cassini/models/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/cassini/models/Makefile" ;;
  2412.     "extras-standard/cassini/data/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/cassini/data/Makefile" ;;
  2413.     "extras-standard/mir/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/mir/Makefile" ;;
  2414.     "extras-standard/mir/models/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/mir/models/Makefile" ;;
  2415.     "extras-standard/galileo/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/galileo/Makefile" ;;
  2416.     "extras-standard/galileo/models/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/galileo/models/Makefile" ;;
  2417.     "extras-standard/hubble/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/hubble/Makefile" ;;
  2418.     "extras-standard/hubble/models/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/hubble/models/Makefile" ;;
  2419.     "extras-standard/iss/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/iss/Makefile" ;;
  2420.     "extras-standard/iss/models/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/iss/models/Makefile" ;;
  2421.     "extras-standard/iss/textures/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/iss/textures/Makefile" ;;
  2422.     "extras-standard/iss/textures/medres/Makefile") CONFIG_FILES="$CONFIG_FILES extras-standard/iss/textures/medres/Makefile" ;;
  2423.     "textures/Makefile") CONFIG_FILES="$CONFIG_FILES textures/Makefile" ;;
  2424.     "textures/lores/Makefile") CONFIG_FILES="$CONFIG_FILES textures/lores/Makefile" ;;
  2425.     "textures/medres/Makefile") CONFIG_FILES="$CONFIG_FILES textures/medres/Makefile" ;;
  2426.     "textures/hires/Makefile") CONFIG_FILES="$CONFIG_FILES textures/hires/Makefile" ;;
  2427.     "models/Makefile") CONFIG_FILES="$CONFIG_FILES models/Makefile" ;;
  2428.     "shaders/Makefile") CONFIG_FILES="$CONFIG_FILES shaders/Makefile" ;;
  2429.     "fonts/Makefile") CONFIG_FILES="$CONFIG_FILES fonts/Makefile" ;;
  2430.     "src/celestia/res/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/res/Makefile" ;;
  2431.     "src/celestia/kde/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/kde/Makefile" ;;
  2432.     "src/celestia/kde/data/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/kde/data/Makefile" ;;
  2433.     "src/celestia/kde/doc/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/kde/doc/Makefile" ;;
  2434.     "src/celestia/kde/doc/celestia/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/kde/doc/celestia/Makefile" ;;
  2435.     "src/celestia/gtk/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/gtk/Makefile" ;;
  2436.     "src/celestia/gtk/data/Makefile") CONFIG_FILES="$CONFIG_FILES src/celestia/gtk/data/Makefile" ;;
  2437.     "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
  2438.     "po2/Makefile.in") CONFIG_FILES="$CONFIG_FILES po2/Makefile.in" ;;
  2439.     "locale/Makefile") CONFIG_FILES="$CONFIG_FILES locale/Makefile" ;;
  2440.     "scripts/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;;
  2441.   *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  2442. echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
  2443.    { (exit 1); exit 1; }; };;
  2444.   esac
  2445. done
  2446. # If the user did not use the arguments to specify the items to instantiate,
  2447. # then the envvar interface is used.  Set only those that are not.
  2448. # We use the long form for the default assignment because of an extremely
  2449. # bizarre bug on SunOS 4.1.3.
  2450. if $ac_need_defaults; then
  2451.   test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  2452.   test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  2453.   test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
  2454. fi
  2455. # Have a temporary directory for convenience.  Make it in the build tree
  2456. # simply because there is no reason against having it here, and in addition,
  2457. # creating and moving files from /tmp can sometimes cause problems.
  2458. # Hook for its removal unless debugging.
  2459. # Note that there is a small window in which the directory will not be cleaned:
  2460. # after its creation but before its name has been assigned to `$tmp'.
  2461. $debug ||
  2462. {
  2463.   tmp=
  2464.   trap 'exit_status=$?
  2465.   { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
  2466. ' 0
  2467.   trap '{ (exit 1); exit 1; }' 1 2 13 15
  2468. }
  2469. # Create a (secure) tmp directory for tmp files.
  2470. {
  2471.   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  2472.   test -n "$tmp" && test -d "$tmp"
  2473. }  ||
  2474. {
  2475.   tmp=./conf$$-$RANDOM
  2476.   (umask 077 && mkdir "$tmp")
  2477. } ||
  2478. {
  2479.    echo "$me: cannot create a temporary directory in ." >&2
  2480.    { (exit 1); exit 1; }
  2481. }
  2482. #
  2483. # Set up the sed scripts for CONFIG_FILES section.
  2484. #
  2485. # No need to generate the scripts if there are no CONFIG_FILES.
  2486. # This happens for instance when ./config.status config.h
  2487. if test -n "$CONFIG_FILES"; then
  2488. _ACEOF
  2489. ac_delim='%!_!# '
  2490. for ac_last_try in false false false false false :; do
  2491.   cat >conf$$subs.sed <<_ACEOF
  2492. SHELL!$SHELL$ac_delim
  2493. PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
  2494. PACKAGE_NAME!$PACKAGE_NAME$ac_delim
  2495. PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
  2496. PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
  2497. PACKAGE_STRING!$PACKAGE_STRING$ac_delim
  2498. PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
  2499. exec_prefix!$exec_prefix$ac_delim
  2500. prefix!$prefix$ac_delim
  2501. program_transform_name!$program_transform_name$ac_delim
  2502. bindir!$bindir$ac_delim
  2503. sbindir!$sbindir$ac_delim
  2504. libexecdir!$libexecdir$ac_delim
  2505. datarootdir!$datarootdir$ac_delim
  2506. datadir!$datadir$ac_delim
  2507. sysconfdir!$sysconfdir$ac_delim
  2508. sharedstatedir!$sharedstatedir$ac_delim
  2509. localstatedir!$localstatedir$ac_delim
  2510. includedir!$includedir$ac_delim
  2511. oldincludedir!$oldincludedir$ac_delim
  2512. docdir!$docdir$ac_delim
  2513. infodir!$infodir$ac_delim
  2514. htmldir!$htmldir$ac_delim
  2515. dvidir!$dvidir$ac_delim
  2516. pdfdir!$pdfdir$ac_delim
  2517. psdir!$psdir$ac_delim
  2518. libdir!$libdir$ac_delim
  2519. localedir!$localedir$ac_delim
  2520. mandir!$mandir$ac_delim
  2521. DEFS!$DEFS$ac_delim
  2522. ECHO_C!$ECHO_C$ac_delim
  2523. ECHO_N!$ECHO_N$ac_delim
  2524. ECHO_T!$ECHO_T$ac_delim
  2525. LIBS!$LIBS$ac_delim
  2526. build_alias!$build_alias$ac_delim
  2527. host_alias!$host_alias$ac_delim
  2528. target_alias!$target_alias$ac_delim
  2529. build!$build$ac_delim
  2530. build_cpu!$build_cpu$ac_delim
  2531. build_vendor!$build_vendor$ac_delim
  2532. build_os!$build_os$ac_delim
  2533. host!$host$ac_delim
  2534. host_cpu!$host_cpu$ac_delim
  2535. host_vendor!$host_vendor$ac_delim
  2536. host_os!$host_os$ac_delim
  2537. target!$target$ac_delim
  2538. target_cpu!$target_cpu$ac_delim
  2539. target_vendor!$target_vendor$ac_delim
  2540. target_os!$target_os$ac_delim
  2541. INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
  2542. INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
  2543. INSTALL_DATA!$INSTALL_DATA$ac_delim
  2544. am__isrc!$am__isrc$ac_delim
  2545. CYGPATH_W!$CYGPATH_W$ac_delim
  2546. PACKAGE!$PACKAGE$ac_delim
  2547. VERSION!$VERSION$ac_delim
  2548. ACLOCAL!$ACLOCAL$ac_delim
  2549. AUTOCONF!$AUTOCONF$ac_delim
  2550. AUTOMAKE!$AUTOMAKE$ac_delim
  2551. AUTOHEADER!$AUTOHEADER$ac_delim
  2552. MAKEINFO!$MAKEINFO$ac_delim
  2553. install_sh!$install_sh$ac_delim
  2554. STRIP!$STRIP$ac_delim
  2555. INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
  2556. mkdir_p!$mkdir_p$ac_delim
  2557. AWK!$AWK$ac_delim
  2558. SET_MAKE!$SET_MAKE$ac_delim
  2559. am__leading_dot!$am__leading_dot$ac_delim
  2560. AMTAR!$AMTAR$ac_delim
  2561. am__tar!$am__tar$ac_delim
  2562. am__untar!$am__untar$ac_delim
  2563. USE_NLS!$USE_NLS$ac_delim
  2564. GETTEXT_MACRO_VERSION!$GETTEXT_MACRO_VERSION$ac_delim
  2565. MSGFMT!$MSGFMT$ac_delim
  2566. GMSGFMT!$GMSGFMT$ac_delim
  2567. MSGFMT_015!$MSGFMT_015$ac_delim
  2568. GMSGFMT_015!$GMSGFMT_015$ac_delim
  2569. XGETTEXT!$XGETTEXT$ac_delim
  2570. XGETTEXT_015!$XGETTEXT_015$ac_delim
  2571. MSGMERGE!$MSGMERGE$ac_delim
  2572. XGETTEXT_EXTRA_OPTIONS!$XGETTEXT_EXTRA_OPTIONS$ac_delim
  2573. CC!$CC$ac_delim
  2574. CFLAGS!$CFLAGS$ac_delim
  2575. LDFLAGS!$LDFLAGS$ac_delim
  2576. CPPFLAGS!$CPPFLAGS$ac_delim
  2577. ac_ct_CC!$ac_ct_CC$ac_delim
  2578. EXEEXT!$EXEEXT$ac_delim
  2579. OBJEXT!$OBJEXT$ac_delim
  2580. DEPDIR!$DEPDIR$ac_delim
  2581. am__include!$am__include$ac_delim
  2582. am__quote!$am__quote$ac_delim
  2583. AMDEP_TRUE!$AMDEP_TRUE$ac_delim
  2584. AMDEP_FALSE!$AMDEP_FALSE$ac_delim
  2585. AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
  2586. CCDEPMODE!$CCDEPMODE$ac_delim
  2587. am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
  2588. am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
  2589. _ACEOF
  2590.   if test `sed -n "s/.*$ac_delim$/X/p" conf$$subs.sed | grep -c X` = 97; then
  2591.     break
  2592.   elif $ac_last_try; then
  2593.     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
  2594. echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
  2595.    { (exit 1); exit 1; }; }
  2596.   else
  2597.     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  2598.   fi
  2599. done
  2600. ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
  2601. if test -n "$ac_eof"; then
  2602.   ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
  2603.   ac_eof=`expr $ac_eof + 1`
  2604. fi
  2605. cat >>$CONFIG_STATUS <<_ACEOF
  2606. cat >"$tmp/subs-1.sed" <<CEOF$ac_eof
  2607. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  2608. _ACEOF
  2609. sed '
  2610. s/[,\&]/\&/g; s/@/@|#_!!_#|/g
  2611. s/^/s,@/; s/!/@,|#_!!_#|/
  2612. :n
  2613. t n
  2614. s/'"$ac_delim"'$/,g/; t
  2615. s/$/\/; p
  2616. N; s/^.*n//; s/[,\&]/\&/g; s/@/@|#_!!_#|/g; b n
  2617. ' >>$CONFIG_STATUS <conf$$subs.sed
  2618. rm -f conf$$subs.sed
  2619. cat >>$CONFIG_STATUS <<_ACEOF
  2620. CEOF$ac_eof
  2621. _ACEOF
  2622. ac_delim='%!_!# '
  2623. for ac_last_try in false false false false false :; do
  2624.   cat >conf$$subs.sed <<_ACEOF
  2625. INTL_MACOSX_LIBS!$INTL_MACOSX_LIBS$ac_delim
  2626. LIBICONV!$LIBICONV$ac_delim
  2627. LTLIBICONV!$LTLIBICONV$ac_delim
  2628. INTLLIBS!$INTLLIBS$ac_delim
  2629. LIBINTL!$LIBINTL$ac_delim
  2630. LTLIBINTL!$LTLIBINTL$ac_delim
  2631. POSUB!$POSUB$ac_delim
  2632. CXX!$CXX$ac_delim
  2633. CXXFLAGS!$CXXFLAGS$ac_delim
  2634. ac_ct_CXX!$ac_ct_CXX$ac_delim
  2635. CXXDEPMODE!$CXXDEPMODE$ac_delim
  2636. am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim
  2637. am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim
  2638. CPP!$CPP$ac_delim
  2639. CXXCPP!$CXXCPP$ac_delim
  2640. SED!$SED$ac_delim
  2641. GREP!$GREP$ac_delim
  2642. EGREP!$EGREP$ac_delim
  2643. LN_S!$LN_S$ac_delim
  2644. ECHO!$ECHO$ac_delim
  2645. AR!$AR$ac_delim
  2646. RANLIB!$RANLIB$ac_delim
  2647. DSYMUTIL!$DSYMUTIL$ac_delim
  2648. NMEDIT!$NMEDIT$ac_delim
  2649. F77!$F77$ac_delim
  2650. FFLAGS!$FFLAGS$ac_delim
  2651. ac_ct_F77!$ac_ct_F77$ac_delim
  2652. LIBTOOL!$LIBTOOL$ac_delim
  2653. SPICELIB!$SPICELIB$ac_delim
  2654. ENABLE_SPICE_TRUE!$ENABLE_SPICE_TRUE$ac_delim
  2655. ENABLE_SPICE_FALSE!$ENABLE_SPICE_FALSE$ac_delim
  2656. WOVERLOADED_VIRTUAL!$WOVERLOADED_VIRTUAL$ac_delim
  2657. HAVE_GCC_VISIBILITY!$HAVE_GCC_VISIBILITY$ac_delim
  2658. unsermake_enable_pch_TRUE!$unsermake_enable_pch_TRUE$ac_delim
  2659. unsermake_enable_pch_FALSE!$unsermake_enable_pch_FALSE$ac_delim
  2660. USE_EXCEPTIONS!$USE_EXCEPTIONS$ac_delim
  2661. USE_RTTI!$USE_RTTI$ac_delim
  2662. NOOPT_CXXFLAGS!$NOOPT_CXXFLAGS$ac_delim
  2663. NOOPT_CFLAGS!$NOOPT_CFLAGS$ac_delim
  2664. ENABLE_PERMISSIVE_FLAG!$ENABLE_PERMISSIVE_FLAG$ac_delim
  2665. LDFLAGS_AS_NEEDED!$LDFLAGS_AS_NEEDED$ac_delim
  2666. LDFLAGS_NEW_DTAGS!$LDFLAGS_NEW_DTAGS$ac_delim
  2667. KDE_USE_FINAL_TRUE!$KDE_USE_FINAL_TRUE$ac_delim
  2668. KDE_USE_FINAL_FALSE!$KDE_USE_FINAL_FALSE$ac_delim
  2669. KDE_USE_CLOSURE_TRUE!$KDE_USE_CLOSURE_TRUE$ac_delim
  2670. KDE_USE_CLOSURE_FALSE!$KDE_USE_CLOSURE_FALSE$ac_delim
  2671. KDE_NO_UNDEFINED!$KDE_NO_UNDEFINED$ac_delim
  2672. KDE_USE_NMCHECK_TRUE!$KDE_USE_NMCHECK_TRUE$ac_delim
  2673. KDE_USE_NMCHECK_FALSE!$KDE_USE_NMCHECK_FALSE$ac_delim
  2674. XMKMF!$XMKMF$ac_delim
  2675. X_CFLAGS!$X_CFLAGS$ac_delim
  2676. X_PRE_LIBS!$X_PRE_LIBS$ac_delim
  2677. X_LIBS!$X_LIBS$ac_delim
  2678. X_EXTRA_LIBS!$X_EXTRA_LIBS$ac_delim
  2679. PKG_CONFIG!$PKG_CONFIG$ac_delim
  2680. ENABLE_GLUT_TRUE!$ENABLE_GLUT_TRUE$ac_delim
  2681. ENABLE_GLUT_FALSE!$ENABLE_GLUT_FALSE$ac_delim
  2682. GCONF_SCHEMAS_INSTALL_TRUE!$GCONF_SCHEMAS_INSTALL_TRUE$ac_delim
  2683. GCONF_SCHEMAS_INSTALL_FALSE!$GCONF_SCHEMAS_INSTALL_FALSE$ac_delim
  2684. GTK_CFLAGS!$GTK_CFLAGS$ac_delim
  2685. GTK_LIBS!$GTK_LIBS$ac_delim
  2686. GCONF_SCHEMA_CONFIG_SOURCE!$GCONF_SCHEMA_CONFIG_SOURCE$ac_delim
  2687. GCONF_SCHEMA_FILE_DIR!$GCONF_SCHEMA_FILE_DIR$ac_delim
  2688. CAIRO_CFLAGS!$CAIRO_CFLAGS$ac_delim
  2689. CAIRO_LIBS!$CAIRO_LIBS$ac_delim
  2690. ENABLE_GTK_TRUE!$ENABLE_GTK_TRUE$ac_delim
  2691. ENABLE_GTK_FALSE!$ENABLE_GTK_FALSE$ac_delim
  2692. ENABLE_GNOME_TRUE!$ENABLE_GNOME_TRUE$ac_delim
  2693. ENABLE_GNOME_FALSE!$ENABLE_GNOME_FALSE$ac_delim
  2694. include_ARTS_TRUE!$include_ARTS_TRUE$ac_delim
  2695. include_ARTS_FALSE!$include_ARTS_FALSE$ac_delim
  2696. KDE_PLUGIN!$KDE_PLUGIN$ac_delim
  2697. KDE_CHECK_PLUGIN!$KDE_CHECK_PLUGIN$ac_delim
  2698. LIBUTIL!$LIBUTIL$ac_delim
  2699. LIBCOMPAT!$LIBCOMPAT$ac_delim
  2700. LIBCRYPT!$LIBCRYPT$ac_delim
  2701. LIBRESOLV!$LIBRESOLV$ac_delim
  2702. LIB_POLL!$LIB_POLL$ac_delim
  2703. FRAMEWORK_COREAUDIO!$FRAMEWORK_COREAUDIO$ac_delim
  2704. LIBSOCKET!$LIBSOCKET$ac_delim
  2705. LIBUCB!$LIBUCB$ac_delim
  2706. LIBDL!$LIBDL$ac_delim
  2707. KDE_USE_FPIE!$KDE_USE_FPIE$ac_delim
  2708. KDE_USE_PIE!$KDE_USE_PIE$ac_delim
  2709. include_x11_TRUE!$include_x11_TRUE$ac_delim
  2710. include_x11_FALSE!$include_x11_FALSE$ac_delim
  2711. LIB_X11!$LIB_X11$ac_delim
  2712. LIB_XRENDER!$LIB_XRENDER$ac_delim
  2713. LIBSM!$LIBSM$ac_delim
  2714. X_INCLUDES!$X_INCLUDES$ac_delim
  2715. X_LDFLAGS!$X_LDFLAGS$ac_delim
  2716. x_includes!$x_includes$ac_delim
  2717. x_libraries!$x_libraries$ac_delim
  2718. QTE_NORTTI!$QTE_NORTTI$ac_delim
  2719. LIB_XEXT!$LIB_XEXT$ac_delim
  2720. LIBPTHREAD!$LIBPTHREAD$ac_delim
  2721. USE_THREADS!$USE_THREADS$ac_delim
  2722. _ACEOF
  2723.   if test `sed -n "s/.*$ac_delim$/X/p" conf$$subs.sed | grep -c X` = 97; then
  2724.     break
  2725.   elif $ac_last_try; then
  2726.     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
  2727. echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
  2728.    { (exit 1); exit 1; }; }
  2729.   else
  2730.     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  2731.   fi
  2732. done
  2733. ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
  2734. if test -n "$ac_eof"; then
  2735.   ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
  2736.   ac_eof=`expr $ac_eof + 1`
  2737. fi
  2738. cat >>$CONFIG_STATUS <<_ACEOF
  2739. cat >"$tmp/subs-2.sed" <<CEOF$ac_eof
  2740. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  2741. _ACEOF
  2742. sed '
  2743. s/[,\&]/\&/g; s/@/@|#_!!_#|/g
  2744. s/^/s,@/; s/!/@,|#_!!_#|/
  2745. :n
  2746. t n
  2747. s/'"$ac_delim"'$/,g/; t
  2748. s/$/\/; p
  2749. N; s/^.*n//; s/[,\&]/\&/g; s/@/@|#_!!_#|/g; b n
  2750. ' >>$CONFIG_STATUS <conf$$subs.sed
  2751. rm -f conf$$subs.sed
  2752. cat >>$CONFIG_STATUS <<_ACEOF
  2753. CEOF$ac_eof
  2754. _ACEOF
  2755. ac_delim='%!_!# '
  2756. for ac_last_try in false false false false false :; do
  2757.   cat >conf$$subs.sed <<_ACEOF
  2758. KDE_MT_LDFLAGS!$KDE_MT_LDFLAGS$ac_delim
  2759. KDE_MT_LIBS!$KDE_MT_LIBS$ac_delim
  2760. USER_INCLUDES!$USER_INCLUDES$ac_delim
  2761. USER_LDFLAGS!$USER_LDFLAGS$ac_delim
  2762. LIBZ!$LIBZ$ac_delim
  2763. LIBPNG!$LIBPNG$ac_delim
  2764. LIBJPEG!$LIBJPEG$ac_delim
  2765. qt_libraries!$qt_libraries$ac_delim
  2766. qt_includes!$qt_includes$ac_delim
  2767. QT_INCLUDES!$QT_INCLUDES$ac_delim
  2768. QT_LDFLAGS!$QT_LDFLAGS$ac_delim
  2769. PERL!$PERL$ac_delim
  2770. MOC!$MOC$ac_delim
  2771. UIC!$UIC$ac_delim
  2772. UIC_TR!$UIC_TR$ac_delim
  2773. LIB_QT!$LIB_QT$ac_delim
  2774. LIB_QPE!$LIB_QPE$ac_delim
  2775. kde_qtver!$kde_qtver$ac_delim
  2776. KDE_EXTRA_RPATH!$KDE_EXTRA_RPATH$ac_delim
  2777. KDE_RPATH!$KDE_RPATH$ac_delim
  2778. X_RPATH!$X_RPATH$ac_delim
  2779. kde_libraries!$kde_libraries$ac_delim
  2780. kde_includes!$kde_includes$ac_delim
  2781. KDE_LDFLAGS!$KDE_LDFLAGS$ac_delim
  2782. KDE_INCLUDES!$KDE_INCLUDES$ac_delim
  2783. all_includes!$all_includes$ac_delim
  2784. all_libraries!$all_libraries$ac_delim
  2785. AUTODIRS!$AUTODIRS$ac_delim
  2786. MAKEKDEWIDGETS!$MAKEKDEWIDGETS$ac_delim
  2787. KCONFIG_COMPILER!$KCONFIG_COMPILER$ac_delim
  2788. KCFG_DEPENDENCIES!$KCFG_DEPENDENCIES$ac_delim
  2789. DCOPIDLNG!$DCOPIDLNG$ac_delim
  2790. DCOPIDL!$DCOPIDL$ac_delim
  2791. DCOPIDL2CPP!$DCOPIDL2CPP$ac_delim
  2792. DCOP_DEPENDENCIES!$DCOP_DEPENDENCIES$ac_delim
  2793. MCOPIDL!$MCOPIDL$ac_delim
  2794. ARTSCCONFIG!$ARTSCCONFIG$ac_delim
  2795. MEINPROC!$MEINPROC$ac_delim
  2796. KDE_XSL_STYLESHEET!$KDE_XSL_STYLESHEET$ac_delim
  2797. XMLLINT!$XMLLINT$ac_delim
  2798. kde_htmldir!$kde_htmldir$ac_delim
  2799. kde_appsdir!$kde_appsdir$ac_delim
  2800. kde_icondir!$kde_icondir$ac_delim
  2801. kde_sounddir!$kde_sounddir$ac_delim
  2802. kde_datadir!$kde_datadir$ac_delim
  2803. kde_locale!$kde_locale$ac_delim
  2804. kde_confdir!$kde_confdir$ac_delim
  2805. kde_kcfgdir!$kde_kcfgdir$ac_delim
  2806. kde_mimedir!$kde_mimedir$ac_delim
  2807. kde_wallpaperdir!$kde_wallpaperdir$ac_delim
  2808. kde_bindir!$kde_bindir$ac_delim
  2809. xdg_appsdir!$xdg_appsdir$ac_delim
  2810. xdg_menudir!$xdg_menudir$ac_delim
  2811. xdg_directorydir!$xdg_directorydir$ac_delim
  2812. kde_templatesdir!$kde_templatesdir$ac_delim
  2813. kde_servicesdir!$kde_servicesdir$ac_delim
  2814. kde_servicetypesdir!$kde_servicetypesdir$ac_delim
  2815. kde_moduledir!$kde_moduledir$ac_delim
  2816. kdeinitdir!$kdeinitdir$ac_delim
  2817. kde_styledir!$kde_styledir$ac_delim
  2818. kde_widgetdir!$kde_widgetdir$ac_delim
  2819. LIB_KDED!$LIB_KDED$ac_delim
  2820. LIB_KDECORE!$LIB_KDECORE$ac_delim
  2821. LIB_KDEUI!$LIB_KDEUI$ac_delim
  2822. LIB_KIO!$LIB_KIO$ac_delim
  2823. LIB_KJS!$LIB_KJS$ac_delim
  2824. LIB_SMB!$LIB_SMB$ac_delim
  2825. LIB_KAB!$LIB_KAB$ac_delim
  2826. LIB_KABC!$LIB_KABC$ac_delim
  2827. LIB_KHTML!$LIB_KHTML$ac_delim
  2828. LIB_KSPELL!$LIB_KSPELL$ac_delim
  2829. LIB_KPARTS!$LIB_KPARTS$ac_delim
  2830. LIB_KDEPRINT!$LIB_KDEPRINT$ac_delim
  2831. LIB_KUTILS!$LIB_KUTILS$ac_delim
  2832. LIB_KDEPIM!$LIB_KDEPIM$ac_delim
  2833. LIB_KIMPROXY!$LIB_KIMPROXY$ac_delim
  2834. LIB_KNEWSTUFF!$LIB_KNEWSTUFF$ac_delim
  2835. LIB_KDNSSD!$LIB_KDNSSD$ac_delim
  2836. LIB_KUNITTEST!$LIB_KUNITTEST$ac_delim
  2837. LIB_KSYCOCA!$LIB_KSYCOCA$ac_delim
  2838. LIB_KFILE!$LIB_KFILE$ac_delim
  2839. LIB_KFM!$LIB_KFM$ac_delim
  2840. ENABLE_KDE_TRUE!$ENABLE_KDE_TRUE$ac_delim
  2841. ENABLE_KDE_FALSE!$ENABLE_KDE_FALSE$ac_delim
  2842. THEORA_CFLAGS!$THEORA_CFLAGS$ac_delim
  2843. THEORA_LIBS!$THEORA_LIBS$ac_delim
  2844. ENABLE_THEORA_TRUE!$ENABLE_THEORA_TRUE$ac_delim
  2845. ENABLE_THEORA_FALSE!$ENABLE_THEORA_FALSE$ac_delim
  2846. PKGDATADIR!$PKGDATADIR$ac_delim
  2847. HIPDIR!$HIPDIR$ac_delim
  2848. ENABLE_HIPPARCOS_TRUE!$ENABLE_HIPPARCOS_TRUE$ac_delim
  2849. ENABLE_HIPPARCOS_FALSE!$ENABLE_HIPPARCOS_FALSE$ac_delim
  2850. LUA_CFLAGS!$LUA_CFLAGS$ac_delim
  2851. LUA_LIBS!$LUA_LIBS$ac_delim
  2852. LUALIB_CFLAGS!$LUALIB_CFLAGS$ac_delim
  2853. LUALIB_LIBS!$LUALIB_LIBS$ac_delim
  2854. ENABLE_CELX_TRUE!$ENABLE_CELX_TRUE$ac_delim
  2855. _ACEOF
  2856.   if test `sed -n "s/.*$ac_delim$/X/p" conf$$subs.sed | grep -c X` = 97; then
  2857.     break
  2858.   elif $ac_last_try; then
  2859.     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
  2860. echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
  2861.    { (exit 1); exit 1; }; }
  2862.   else
  2863.     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  2864.   fi
  2865. done
  2866. ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
  2867. if test -n "$ac_eof"; then
  2868.   ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
  2869.   ac_eof=`expr $ac_eof + 1`
  2870. fi
  2871. cat >>$CONFIG_STATUS <<_ACEOF
  2872. cat >"$tmp/subs-3.sed" <<CEOF$ac_eof
  2873. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  2874. _ACEOF
  2875. sed '
  2876. s/[,\&]/\&/g; s/@/@|#_!!_#|/g
  2877. s/^/s,@/; s/!/@,|#_!!_#|/
  2878. :n
  2879. t n
  2880. s/'"$ac_delim"'$/,g/; t
  2881. s/$/\/; p
  2882. N; s/^.*n//; s/[,\&]/\&/g; s/@/@|#_!!_#|/g; b n
  2883. ' >>$CONFIG_STATUS <conf$$subs.sed
  2884. rm -f conf$$subs.sed
  2885. cat >>$CONFIG_STATUS <<_ACEOF
  2886. CEOF$ac_eof
  2887. _ACEOF
  2888. ac_delim='%!_!# '
  2889. for ac_last_try in false false false false false :; do
  2890.   cat >conf$$subs.sed <<_ACEOF
  2891. ENABLE_CELX_FALSE!$ENABLE_CELX_FALSE$ac_delim
  2892. LIBOBJS!$LIBOBJS$ac_delim
  2893. LTLIBOBJS!$LTLIBOBJS$ac_delim
  2894. _ACEOF
  2895.   if test `sed -n "s/.*$ac_delim$/X/p" conf$$subs.sed | grep -c X` = 3; then
  2896.     break
  2897.   elif $ac_last_try; then
  2898.     { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
  2899. echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
  2900.    { (exit 1); exit 1; }; }
  2901.   else
  2902.     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  2903.   fi
  2904. done
  2905. ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
  2906. if test -n "$ac_eof"; then
  2907.   ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
  2908.   ac_eof=`expr $ac_eof + 1`
  2909. fi
  2910. cat >>$CONFIG_STATUS <<_ACEOF
  2911. cat >"$tmp/subs-4.sed" <<CEOF$ac_eof
  2912. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
  2913. _ACEOF
  2914. sed '
  2915. s/[,\&]/\&/g; s/@/@|#_!!_#|/g
  2916. s/^/s,@/; s/!/@,|#_!!_#|/
  2917. :n
  2918. t n
  2919. s/'"$ac_delim"'$/,g/; t
  2920. s/$/\/; p
  2921. N; s/^.*n//; s/[,\&]/\&/g; s/@/@|#_!!_#|/g; b n
  2922. ' >>$CONFIG_STATUS <conf$$subs.sed
  2923. rm -f conf$$subs.sed
  2924. cat >>$CONFIG_STATUS <<_ACEOF
  2925. :end
  2926. s/|#_!!_#|//g
  2927. CEOF$ac_eof
  2928. _ACEOF
  2929. # VPATH may cause trouble with some makes, so we remove $(srcdir),
  2930. # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
  2931. # trailing colons and then remove the whole line if VPATH becomes empty
  2932. # (actually we leave an empty line to preserve line numbers).
  2933. if test "x$srcdir" = x.; then
  2934.   ac_vpsub='/^[  ]*VPATH[  ]*=/{
  2935. s/:*$(srcdir):*/:/
  2936. s/:*${srcdir}:*/:/
  2937. s/:*@srcdir@:*/:/
  2938. s/^([^=]*=[  ]*):*/1/
  2939. s/:*$//
  2940. s/^[^=]*=[  ]*$//
  2941. }'
  2942. fi
  2943. cat >>$CONFIG_STATUS <<_ACEOF
  2944. fi # test -n "$CONFIG_FILES"
  2945. for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS
  2946. do
  2947.   case $ac_tag in
  2948.   :[FHLC]) ac_mode=$ac_tag; continue;;
  2949.   esac
  2950.   case $ac_mode$ac_tag in
  2951.   :[FHL]*:*);;
  2952.   :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
  2953. echo "$as_me: error: Invalid tag $ac_tag." >&2;}
  2954.    { (exit 1); exit 1; }; };;
  2955.   :[FH]-) ac_tag=-:-;;
  2956.   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  2957.   esac
  2958.   ac_save_IFS=$IFS
  2959.   IFS=:
  2960.   set x $ac_tag
  2961.   IFS=$ac_save_IFS
  2962.   shift
  2963.   ac_file=$1
  2964.   shift
  2965.   case $ac_mode in
  2966.   :L) ac_source=$1;;
  2967.   :[FH])
  2968.     ac_file_inputs=
  2969.     for ac_f
  2970.     do
  2971.       case $ac_f in
  2972.       -) ac_f="$tmp/stdin";;
  2973.       *) # Look for the file first in the build tree, then in the source tree
  2974.  # (if the path is not absolute).  The absolute path cannot be DOS-style,
  2975.  # because $ac_f cannot contain `:'.
  2976.  test -f "$ac_f" ||
  2977.    case $ac_f in
  2978.    [\/$]*) false;;
  2979.    *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  2980.    esac ||
  2981.    { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
  2982. echo "$as_me: error: cannot find input file: $ac_f" >&2;}
  2983.    { (exit 1); exit 1; }; };;
  2984.       esac
  2985.       ac_file_inputs="$ac_file_inputs $ac_f"
  2986.     done
  2987.     # Let's still pretend it is `configure' which instantiates (i.e., don't
  2988.     # use $as_me), people would be surprised to read:
  2989.     #    /* config.h.  Generated by config.status.  */
  2990.     configure_input="Generated from "`IFS=:
  2991.   echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
  2992.     if test x"$ac_file" != x-; then
  2993.       configure_input="$ac_file.  $configure_input"
  2994.       { echo "$as_me:$LINENO: creating $ac_file" >&5
  2995. echo "$as_me: creating $ac_file" >&6;}
  2996.     fi
  2997.     case $ac_tag in
  2998.     *:-:* | *:-) cat >"$tmp/stdin";;
  2999.     esac
  3000.     ;;
  3001.   esac
  3002.   ac_dir=`$as_dirname -- "$ac_file" ||
  3003. $as_expr X"$ac_file" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3004.  X"$ac_file" : 'X(//)[^/]' | 
  3005.  X"$ac_file" : 'X(//)$' | 
  3006.  X"$ac_file" : 'X(/)' | . 2>/dev/null ||
  3007. echo X"$ac_file" |
  3008.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  3009.     s//1/
  3010.     q
  3011.   }
  3012.   /^X(//)[^/].*/{
  3013.     s//1/
  3014.     q
  3015.   }
  3016.   /^X(//)$/{
  3017.     s//1/
  3018.     q
  3019.   }
  3020.   /^X(/).*/{
  3021.     s//1/
  3022.     q
  3023.   }
  3024.   s/.*/./; q'`
  3025.   { as_dir="$ac_dir"
  3026.   case $as_dir in #(
  3027.   -*) as_dir=./$as_dir;;
  3028.   esac
  3029.   test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
  3030.     as_dirs=
  3031.     while :; do
  3032.       case $as_dir in #(
  3033.       *'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\''/g"`;; #(
  3034.       *) as_qdir=$as_dir;;
  3035.       esac
  3036.       as_dirs="'$as_qdir' $as_dirs"
  3037.       as_dir=`$as_dirname -- "$as_dir" ||
  3038. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3039.  X"$as_dir" : 'X(//)[^/]' | 
  3040.  X"$as_dir" : 'X(//)$' | 
  3041.  X"$as_dir" : 'X(/)' | . 2>/dev/null ||
  3042. echo X"$as_dir" |
  3043.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  3044.     s//1/
  3045.     q
  3046.   }
  3047.   /^X(//)[^/].*/{
  3048.     s//1/
  3049.     q
  3050.   }
  3051.   /^X(//)$/{
  3052.     s//1/
  3053.     q
  3054.   }
  3055.   /^X(/).*/{
  3056.     s//1/
  3057.     q
  3058.   }
  3059.   s/.*/./; q'`
  3060.       test -d "$as_dir" && break
  3061.     done
  3062.     test -z "$as_dirs" || eval "mkdir $as_dirs"
  3063.   } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
  3064. echo "$as_me: error: cannot create directory $as_dir" >&2;}
  3065.    { (exit 1); exit 1; }; }; }
  3066.   ac_builddir=.
  3067. case "$ac_dir" in
  3068. .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  3069. *)
  3070.   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^.[\/],,'`
  3071.   # A ".." for each directory in $ac_dir_suffix.
  3072.   ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\/]*,/..,g;s,/,,'`
  3073.   case $ac_top_builddir_sub in
  3074.   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  3075.   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  3076.   esac ;;
  3077. esac
  3078. ac_abs_top_builddir=$ac_pwd
  3079. ac_abs_builddir=$ac_pwd$ac_dir_suffix
  3080. # for backward compatibility:
  3081. ac_top_builddir=$ac_top_build_prefix
  3082. case $srcdir in
  3083.   .)  # We are building in place.
  3084.     ac_srcdir=.
  3085.     ac_top_srcdir=$ac_top_builddir_sub
  3086.     ac_abs_top_srcdir=$ac_pwd ;;
  3087.   [\/]* | ?:[\/]* )  # Absolute name.
  3088.     ac_srcdir=$srcdir$ac_dir_suffix;
  3089.     ac_top_srcdir=$srcdir
  3090.     ac_abs_top_srcdir=$srcdir ;;
  3091.   *) # Relative name.
  3092.     ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  3093.     ac_top_srcdir=$ac_top_build_prefix$srcdir
  3094.     ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  3095. esac
  3096. ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  3097.   case $ac_mode in
  3098.   :F)
  3099.   #
  3100.   # CONFIG_FILE
  3101.   #
  3102.   case $INSTALL in
  3103.   [\/$]* | ?:[\/]* ) ac_INSTALL=$INSTALL ;;
  3104.   *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  3105.   esac
  3106.   ac_MKDIR_P=$MKDIR_P
  3107.   case $MKDIR_P in
  3108.   [\/$]* | ?:[\/]* ) ;;
  3109.   */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
  3110.   esac
  3111. _ACEOF
  3112. cat >>$CONFIG_STATUS <<_ACEOF
  3113. # If the template does not know about datarootdir, expand it.
  3114. # FIXME: This hack should be removed a few years after 2.60.
  3115. ac_datarootdir_hack=; ac_datarootdir_seen=
  3116. case `sed -n '/datarootdir/ {
  3117.   p
  3118.   q
  3119. }
  3120. /@datadir@/p
  3121. /@docdir@/p
  3122. /@infodir@/p
  3123. /@localedir@/p
  3124. /@mandir@/p
  3125. ' $ac_file_inputs` in
  3126. *datarootdir*) ac_datarootdir_seen=yes;;
  3127. *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  3128.   { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  3129. echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  3130. _ACEOF
  3131. cat >>$CONFIG_STATUS <<_ACEOF
  3132.   ac_datarootdir_hack='
  3133.   s&@datadir@&$datadir&g
  3134.   s&@docdir@&$docdir&g
  3135.   s&@infodir@&$infodir&g
  3136.   s&@localedir@&$localedir&g
  3137.   s&@mandir@&$mandir&g
  3138.     s&\${datarootdir}&$datarootdir&g' ;;
  3139. esac
  3140. _ACEOF
  3141. # Neutralize VPATH when `$srcdir' = `.'.
  3142. # Shell code in configure.ac might set extrasub.
  3143. # FIXME: do we really want to maintain this feature?
  3144. cat >>$CONFIG_STATUS <<_ACEOF
  3145.   sed "$ac_vpsub
  3146. $extrasub
  3147. _ACEOF
  3148. cat >>$CONFIG_STATUS <<_ACEOF
  3149. :t
  3150. /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  3151. s&@configure_input@&$configure_input&;t t
  3152. s&@top_builddir@&$ac_top_builddir_sub&;t t
  3153. s&@srcdir@&$ac_srcdir&;t t
  3154. s&@abs_srcdir@&$ac_abs_srcdir&;t t
  3155. s&@top_srcdir@&$ac_top_srcdir&;t t
  3156. s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  3157. s&@builddir@&$ac_builddir&;t t
  3158. s&@abs_builddir@&$ac_abs_builddir&;t t
  3159. s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  3160. s&@INSTALL@&$ac_INSTALL&;t t
  3161. s&@MKDIR_P@&$ac_MKDIR_P&;t t
  3162. $ac_datarootdir_hack
  3163. " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" | sed -f "$tmp/subs-4.sed" >$tmp/out
  3164. test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  3165.   { ac_out=`sed -n '/${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
  3166.   { ac_out=`sed -n '/^[  ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
  3167.   { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable `datarootdir'
  3168. which seems to be undefined.  Please make sure it is defined." >&5
  3169. echo "$as_me: WARNING: $ac_file contains a reference to the variable `datarootdir'
  3170. which seems to be undefined.  Please make sure it is defined." >&2;}
  3171.   rm -f "$tmp/stdin"
  3172.   case $ac_file in
  3173.   -) cat "$tmp/out"; rm -f "$tmp/out";;
  3174.   *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
  3175.   esac
  3176.  ;;
  3177.   :H)
  3178.   #
  3179.   # CONFIG_HEADER
  3180.   #
  3181. _ACEOF
  3182. # Transform confdefs.h into a sed script `conftest.defines', that
  3183. # substitutes the proper values into config.h.in to produce config.h.
  3184. rm -f conftest.defines conftest.tail
  3185. # First, append a space to every undef/define line, to ease matching.
  3186. echo 's/$/ /' >conftest.defines
  3187. # Then, protect against being on the right side of a sed subst, or in
  3188. # an unquoted here document, in config.status.  If some macros were
  3189. # called several times there might be several #defines for the same
  3190. # symbol, which is useless.  But do not sort them, since the last
  3191. # AC_DEFINE must be honored.
  3192. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
  3193. # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
  3194. # NAME is the cpp macro being defined, VALUE is the value it is being given.
  3195. # PARAMS is the parameter list in the macro definition--in most cases, it's
  3196. # just an empty string.
  3197. ac_dA='s,^\([  #]*\)[^  ]*\([  ]*'
  3198. ac_dB='\)[  (].*,\1define\2'
  3199. ac_dC=' '
  3200. ac_dD=' ,'
  3201. uniq confdefs.h |
  3202.   sed -n '
  3203. t rset
  3204. :rset
  3205. s/^[  ]*#[  ]*define[  ][  ]*//
  3206. t ok
  3207. d
  3208. :ok
  3209. s/[\&,]/\&/g
  3210. s/^('"$ac_word_re"')(([^()]*))[  ]*(.*)/ '"$ac_dA"'1'"$ac_dB"'2'"${ac_dC}"'3'"$ac_dD"'/p
  3211. s/^('"$ac_word_re"')[  ]*(.*)/'"$ac_dA"'1'"$ac_dB$ac_dC"'2'"$ac_dD"'/p
  3212.   ' >>conftest.defines
  3213. # Remove the space that was appended to ease matching.
  3214. # Then replace #undef with comments.  This is necessary, for
  3215. # example, in the case of _POSIX_SOURCE, which is predefined and required
  3216. # on some systems where configure will not decide to define it.
  3217. # (The regexp can be short, since the line contains either #define or #undef.)
  3218. echo 's/ $//
  3219. s,^[  #]*u.*,/* & */,' >>conftest.defines
  3220. # Break up conftest.defines:
  3221. ac_max_sed_lines=50
  3222. # First sed command is:  sed -f defines.sed $ac_file_inputs >"$tmp/out1"
  3223. # Second one is:  sed -f defines.sed "$tmp/out1" >"$tmp/out2"
  3224. # Third one will be:  sed -f defines.sed "$tmp/out2" >"$tmp/out1"
  3225. # et cetera.
  3226. ac_in='$ac_file_inputs'
  3227. ac_out='"$tmp/out1"'
  3228. ac_nxt='"$tmp/out2"'
  3229. while :
  3230. do
  3231.   # Write a here document:
  3232.     cat >>$CONFIG_STATUS <<_ACEOF
  3233.     # First, check the format of the line:
  3234.     cat >"$tmp/defines.sed" <<\CEOF
  3235. /^[  ]*#[  ]*undef[  ][  ]*$ac_word_re[  ]*$/b def
  3236. /^[  ]*#[  ]*define[  ][  ]*$ac_word_re[(  ]/b def
  3237. b
  3238. :def
  3239. _ACEOF
  3240.   sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
  3241.   echo 'CEOF
  3242.     sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
  3243.   ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
  3244.   sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
  3245.   grep . conftest.tail >/dev/null || break
  3246.   rm -f conftest.defines
  3247.   mv conftest.tail conftest.defines
  3248. done
  3249. rm -f conftest.defines conftest.tail
  3250. echo "ac_result=$ac_in" >>$CONFIG_STATUS
  3251. cat >>$CONFIG_STATUS <<_ACEOF
  3252.   if test x"$ac_file" != x-; then
  3253.     echo "/* $configure_input  */" >"$tmp/config.h"
  3254.     cat "$ac_result" >>"$tmp/config.h"
  3255.     if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
  3256.       { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
  3257. echo "$as_me: $ac_file is unchanged" >&6;}
  3258.     else
  3259.       rm -f $ac_file
  3260.       mv "$tmp/config.h" $ac_file
  3261.     fi
  3262.   else
  3263.     echo "/* $configure_input  */"
  3264.     cat "$ac_result"
  3265.   fi
  3266.   rm -f "$tmp/out12"
  3267. # Compute $ac_file's index in $config_headers.
  3268. _am_arg=$ac_file
  3269. _am_stamp_count=1
  3270. for _am_header in $config_headers :; do
  3271.   case $_am_header in
  3272.     $_am_arg | $_am_arg:* )
  3273.       break ;;
  3274.     * )
  3275.       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  3276.   esac
  3277. done
  3278. echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
  3279. $as_expr X"$_am_arg" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3280.  X"$_am_arg" : 'X(//)[^/]' | 
  3281.  X"$_am_arg" : 'X(//)$' | 
  3282.  X"$_am_arg" : 'X(/)' | . 2>/dev/null ||
  3283. echo X"$_am_arg" |
  3284.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  3285.     s//1/
  3286.     q
  3287.   }
  3288.   /^X(//)[^/].*/{
  3289.     s//1/
  3290.     q
  3291.   }
  3292.   /^X(//)$/{
  3293.     s//1/
  3294.     q
  3295.   }
  3296.   /^X(/).*/{
  3297.     s//1/
  3298.     q
  3299.   }
  3300.   s/.*/./; q'`/stamp-h$_am_stamp_count
  3301.  ;;
  3302.   :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
  3303. echo "$as_me: executing $ac_file commands" >&6;}
  3304.  ;;
  3305.   esac
  3306.   case $ac_file$ac_mode in
  3307.     "po-directories":C)
  3308.     for ac_file in $CONFIG_FILES; do
  3309.       # Support "outfile[:infile[:infile...]]"
  3310.       case "$ac_file" in
  3311.         *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  3312.       esac
  3313.       # PO directories have a Makefile.in generated from Makefile.in.in.
  3314.       case "$ac_file" in */Makefile.in)
  3315.         # Adjust a relative srcdir.
  3316.         ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
  3317.         ac_dir_suffix="/`echo "$ac_dir"|sed 's%^./%%'`"
  3318.         ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
  3319.         # In autoconf-2.13 it is called $ac_given_srcdir.
  3320.         # In autoconf-2.50 it is called $srcdir.
  3321.         test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
  3322.         case "$ac_given_srcdir" in
  3323.           .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
  3324.           /*) top_srcdir="$ac_given_srcdir" ;;
  3325.           *)  top_srcdir="$ac_dots$ac_given_srcdir" ;;
  3326.         esac
  3327.         # Treat a directory as a PO directory if and only if it has a
  3328.         # POTFILES.in file. This allows packages to have multiple PO
  3329.         # directories under different names or in different locations.
  3330.         if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
  3331.           rm -f "$ac_dir/POTFILES"
  3332.           test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
  3333.           cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[  ]*$/d" -e "s,.*,     $top_srcdir/& \\," | sed -e "$s/(.*) \\/1/" > "$ac_dir/POTFILES"
  3334.           POMAKEFILEDEPS="POTFILES.in"
  3335.           # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend
  3336.           # on $ac_dir but don't depend on user-specified configuration
  3337.           # parameters.
  3338.           if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
  3339.             # The LINGUAS file contains the set of available languages.
  3340.             if test -n "$OBSOLETE_ALL_LINGUAS"; then
  3341.               test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
  3342.             fi
  3343.             ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
  3344.             # Hide the ALL_LINGUAS assigment from automake < 1.5.
  3345.             eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
  3346.             POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
  3347.           else
  3348.             # The set of available languages was given in configure.in.
  3349.             # Hide the ALL_LINGUAS assigment from automake < 1.5.
  3350.             eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
  3351.           fi
  3352.           # Compute POFILES
  3353.           # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
  3354.           # Compute UPDATEPOFILES
  3355.           # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
  3356.           # Compute DUMMYPOFILES
  3357.           # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
  3358.           # Compute GMOFILES
  3359.           # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
  3360.           case "$ac_given_srcdir" in
  3361.             .) srcdirpre= ;;
  3362.             *) srcdirpre='$(srcdir)/' ;;
  3363.           esac
  3364.           POFILES=
  3365.           UPDATEPOFILES=
  3366.           DUMMYPOFILES=
  3367.           GMOFILES=
  3368.           for lang in $ALL_LINGUAS; do
  3369.             POFILES="$POFILES $srcdirpre$lang.po"
  3370.             UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
  3371.             DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
  3372.             GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
  3373.           done
  3374.           # CATALOGS depends on both $ac_dir and the user's LINGUAS
  3375.           # environment variable.
  3376.           INST_LINGUAS=
  3377.           if test -n "$ALL_LINGUAS"; then
  3378.             for presentlang in $ALL_LINGUAS; do
  3379.               useit=no
  3380.               if test "%UNSET%" != "$LINGUAS"; then
  3381.                 desiredlanguages="$LINGUAS"
  3382.               else
  3383.                 desiredlanguages="$ALL_LINGUAS"
  3384.               fi
  3385.               for desiredlang in $desiredlanguages; do
  3386.                 # Use the presentlang catalog if desiredlang is
  3387.                 #   a. equal to presentlang, or
  3388.                 #   b. a variant of presentlang (because in this case,
  3389.                 #      presentlang can be used as a fallback for messages
  3390.                 #      which are not translated in the desiredlang catalog).
  3391.                 case "$desiredlang" in
  3392.                   "$presentlang"*) useit=yes;;
  3393.                 esac
  3394.               done
  3395.               if test $useit = yes; then
  3396.                 INST_LINGUAS="$INST_LINGUAS $presentlang"
  3397.               fi
  3398.             done
  3399.           fi
  3400.           CATALOGS=
  3401.           if test -n "$INST_LINGUAS"; then
  3402.             for lang in $INST_LINGUAS; do
  3403.               CATALOGS="$CATALOGS $lang.gmo"
  3404.             done
  3405.           fi
  3406.           test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
  3407.           sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
  3408.           for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
  3409.             if test -f "$f"; then
  3410.               case "$f" in
  3411.                 *.orig | *.bak | *~) ;;
  3412.                 *) cat "$f" >> "$ac_dir/Makefile" ;;
  3413.               esac
  3414.             fi
  3415.           done
  3416.         fi
  3417.         ;;
  3418.       esac
  3419.     done ;;
  3420.     "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
  3421.   # Strip MF so we end up with the name of the file.
  3422.   mf=`echo "$mf" | sed -e 's/:.*$//'`
  3423.   # Check whether this is an Automake generated Makefile or not.
  3424.   # We used to match only the files named `Makefile.in', but
  3425.   # some people rename them; so instead we look at the file content.
  3426.   # Grep'ing the first line is not enough: some people post-process
  3427.   # each Makefile.in and add a new line on top of each file to say so.
  3428.   # Grep'ing the whole file is not good either: AIX grep has a line
  3429.   # limit of 2048, but all sed's we know have understand at least 4000.
  3430.   if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  3431.     dirpart=`$as_dirname -- "$mf" ||
  3432. $as_expr X"$mf" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3433.  X"$mf" : 'X(//)[^/]' | 
  3434.  X"$mf" : 'X(//)$' | 
  3435.  X"$mf" : 'X(/)' | . 2>/dev/null ||
  3436. echo X"$mf" |
  3437.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  3438.     s//1/
  3439.     q
  3440.   }
  3441.   /^X(//)[^/].*/{
  3442.     s//1/
  3443.     q
  3444.   }
  3445.   /^X(//)$/{
  3446.     s//1/
  3447.     q
  3448.   }
  3449.   /^X(/).*/{
  3450.     s//1/
  3451.     q
  3452.   }
  3453.   s/.*/./; q'`
  3454.   else
  3455.     continue
  3456.   fi
  3457.   # Extract the definition of DEPDIR, am__include, and am__quote
  3458.   # from the Makefile without running `make'.
  3459.   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  3460.   test -z "$DEPDIR" && continue
  3461.   am__include=`sed -n 's/^am__include = //p' < "$mf"`
  3462.   test -z "am__include" && continue
  3463.   am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  3464.   # When using ansi2knr, U may be empty or an underscore; expand it
  3465.   U=`sed -n 's/^U = //p' < "$mf"`
  3466.   # Find all dependency output files, they are included files with
  3467.   # $(DEPDIR) in their names.  We invoke sed twice because it is the
  3468.   # simplest approach to changing $(DEPDIR) to its actual value in the
  3469.   # expansion.
  3470.   for file in `sed -n "
  3471.     s/^$am__include $am__quote(.*(DEPDIR).*)$am__quote"'$/1/p' <"$mf" | 
  3472.        sed -e 's/$(DEPDIR)/'"$DEPDIR"'/g' -e 's/$U/'"$U"'/g'`; do
  3473.     # Make sure the directory exists.
  3474.     test -f "$dirpart/$file" && continue
  3475.     fdir=`$as_dirname -- "$file" ||
  3476. $as_expr X"$file" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3477.  X"$file" : 'X(//)[^/]' | 
  3478.  X"$file" : 'X(//)$' | 
  3479.  X"$file" : 'X(/)' | . 2>/dev/null ||
  3480. echo X"$file" |
  3481.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  3482.     s//1/
  3483.     q
  3484.   }
  3485.   /^X(//)[^/].*/{
  3486.     s//1/
  3487.     q
  3488.   }
  3489.   /^X(//)$/{
  3490.     s//1/
  3491.     q
  3492.   }
  3493.   /^X(/).*/{
  3494.     s//1/
  3495.     q
  3496.   }
  3497.   s/.*/./; q'`
  3498.     { as_dir=$dirpart/$fdir
  3499.   case $as_dir in #(
  3500.   -*) as_dir=./$as_dir;;
  3501.   esac
  3502.   test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
  3503.     as_dirs=
  3504.     while :; do
  3505.       case $as_dir in #(
  3506.       *'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\''/g"`;; #(
  3507.       *) as_qdir=$as_dir;;
  3508.       esac
  3509.       as_dirs="'$as_qdir' $as_dirs"
  3510.       as_dir=`$as_dirname -- "$as_dir" ||
  3511. $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | 
  3512.  X"$as_dir" : 'X(//)[^/]' | 
  3513.  X"$as_dir" : 'X(//)$' | 
  3514.  X"$as_dir" : 'X(/)' | . 2>/dev/null ||
  3515. echo X"$as_dir" |
  3516.     sed '/^X(.*[^/])//*[^/][^/]*/*$/{
  3517.     s//1/
  3518.     q
  3519.   }
  3520.   /^X(//)[^/].*/{
  3521.     s//1/
  3522.     q
  3523.   }
  3524.   /^X(//)$/{
  3525.     s//1/
  3526.     q
  3527.   }
  3528.   /^X(/).*/{
  3529.     s//1/
  3530.     q
  3531.   }
  3532.   s/.*/./; q'`
  3533.       test -d "$as_dir" && break
  3534.     done
  3535.     test -z "$as_dirs" || eval "mkdir $as_dirs"
  3536.   } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
  3537. echo "$as_me: error: cannot create directory $as_dir" >&2;}
  3538.    { (exit 1); exit 1; }; }; }
  3539.     # echo "creating $dirpart/$file"
  3540.     echo '# dummy' > "$dirpart/$file"
  3541.   done
  3542. done
  3543.  ;;
  3544.   esac
  3545. done # for ac_tag
  3546. { (exit 0); exit 0; }
  3547. _ACEOF
  3548. chmod +x $CONFIG_STATUS
  3549. ac_clean_files=$ac_clean_files_save
  3550. # configure is writing to config.log, and then calls config.status.
  3551. # config.status does its own redirection, appending to config.log.
  3552. # Unfortunately, on DOS this fails, as config.log is still kept open
  3553. # by configure, so config.status won't be able to write to it; its
  3554. # output is simply discarded.  So we exec the FD to /dev/null,
  3555. # effectively closing config.log, so it can be properly (re)opened and
  3556. # appended to by config.status.  When coming back to configure, we
  3557. # need to make the FD available again.
  3558. if test "$no_create" != yes; then
  3559.   ac_cs_success=:
  3560.   ac_config_status_args=
  3561.   test "$silent" = yes &&
  3562.     ac_config_status_args="$ac_config_status_args --quiet"
  3563.   exec 5>/dev/null
  3564.   $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
  3565.   exec 5>>config.log
  3566.   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  3567.   # would make configure fail if this is the last instruction.
  3568.   $ac_cs_success || { (exit 1); exit 1; }
  3569. fi
  3570. { echo "$as_me:$LINENO: result: " >&5
  3571. echo "${ECHO_T}" >&6; }
  3572. { echo "$as_me:$LINENO: result: " >&5
  3573. echo "${ECHO_T}" >&6; }
  3574. { echo "$as_me:$LINENO: result: ***************************************************************" >&5
  3575. echo "${ECHO_T}***************************************************************" >&6; }
  3576. { echo "$as_me:$LINENO: result: ** Celestia configuration complete. Now do a 'make' followed **" >&5
  3577. echo "${ECHO_T}** Celestia configuration complete. Now do a 'make' followed **" >&6; }
  3578. { echo "$as_me:$LINENO: result: ** by 'make install'                                         **" >&5
  3579. echo "${ECHO_T}** by 'make install'                                         **" >&6; }
  3580. { echo "$as_me:$LINENO: result: ***************************************************************" >&5
  3581. echo "${ECHO_T}***************************************************************" >&6; }
  3582. { echo "$as_me:$LINENO: result: " >&5
  3583. echo "${ECHO_T}" >&6; }
  3584. if (test "$ui_glut" = "yes"); then
  3585. { echo "$as_me:$LINENO: result: Front-End: GLUT" >&5
  3586. echo "${ECHO_T}Front-End: GLUT" >&6; };
  3587. fi
  3588. if (test "$ui_gtk" = "yes" -a "$ui_gnome" = "no"); then
  3589. { echo "$as_me:$LINENO: result: Front-End: GTK" >&5
  3590. echo "${ECHO_T}Front-End: GTK" >&6; };
  3591. fi
  3592. if (test "$ui_gnome" = "yes"); then
  3593. { echo "$as_me:$LINENO: result: Front-End: Gnome" >&5
  3594. echo "${ECHO_T}Front-End: Gnome" >&6; };
  3595. fi
  3596. if (test "$ui_kde" = "yes"); then
  3597. { echo "$as_me:$LINENO: result: Front-End: KDE" >&5
  3598. echo "${ECHO_T}Front-End: KDE" >&6; };
  3599. fi
  3600. if (test "$ui_gtk" = "yes" -o "$ui_gnome" = "yes"); then
  3601. { echo "$as_me:$LINENO: result: Use Cairo: $enable_cairo" >&5
  3602. echo "${ECHO_T}Use Cairo: $enable_cairo" >&6; };
  3603. fi
  3604. { echo "$as_me:$LINENO: result: Use Lua: $enable_lua" >&5
  3605. echo "${ECHO_T}Use Lua: $enable_lua" >&6; };
  3606. if (test "$LUA_VER" = "0x050000"); then
  3607. { echo "$as_me:$LINENO: result:     Warning: Lua 5.1 is not available on your system, Lua 5.0 will be used
  3608.     instead but it may not be fully compatible with existing CELX scripts.
  3609.     It is recommanded that you install Lua 5.0 and rerun configure." >&5
  3610. echo "${ECHO_T}    Warning: Lua 5.1 is not available on your system, Lua 5.0 will be used
  3611.     instead but it may not be fully compatible with existing CELX scripts.
  3612.     It is recommanded that you install Lua 5.0 and rerun configure." >&6; };
  3613. fi
  3614. { echo "$as_me:$LINENO: result: Use Theora: $enable_theora" >&5
  3615. echo "${ECHO_T}Use Theora: $enable_theora" >&6; };
  3616. { echo "$as_me:$LINENO: result: " >&5
  3617. echo "${ECHO_T}" >&6; }