mhs-xapian 1.0.18a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (328) hide show
  1. data/.gitignore +3 -0
  2. data/AUTHORS +1 -0
  3. data/COPYING +340 -0
  4. data/ChangeLog +5876 -0
  5. data/HACKING +101 -0
  6. data/INSTALL +293 -0
  7. data/Makefile +722 -0
  8. data/Makefile.am +26 -0
  9. data/Makefile.in +722 -0
  10. data/NEWS +2110 -0
  11. data/README +59 -0
  12. data/Rakefile +51 -0
  13. data/TODO +47 -0
  14. data/aclocal.m4 +7675 -0
  15. data/config.guess +1501 -0
  16. data/config.h +56 -0
  17. data/config.h.in +55 -0
  18. data/config.status +1298 -0
  19. data/config.sub +1705 -0
  20. data/configure +18536 -0
  21. data/configure.ac +944 -0
  22. data/csharp/.deps/xapian_wrap.Plo +1 -0
  23. data/csharp/AssemblyInfo.cs +40 -0
  24. data/csharp/AssemblyInfo.cs.in +40 -0
  25. data/csharp/Auto.cs +46 -0
  26. data/csharp/BM25Weight.cs +107 -0
  27. data/csharp/BoolWeight.cs +103 -0
  28. data/csharp/Database.cs +275 -0
  29. data/csharp/DateValueRangeProcessor.cs +61 -0
  30. data/csharp/Document.cs +177 -0
  31. data/csharp/ESet.cs +94 -0
  32. data/csharp/ESetIterator.cs +117 -0
  33. data/csharp/Enquire.cs +274 -0
  34. data/csharp/ExpandDecider.cs +76 -0
  35. data/csharp/Flint.cs +58 -0
  36. data/csharp/InMemory.cs +46 -0
  37. data/csharp/MSet.cs +193 -0
  38. data/csharp/MSetIterator.cs +141 -0
  39. data/csharp/Makefile +868 -0
  40. data/csharp/Makefile.am +106 -0
  41. data/csharp/Makefile.in +868 -0
  42. data/csharp/MatchDecider.cs +76 -0
  43. data/csharp/MultiValueSorter.cs +63 -0
  44. data/csharp/NumberValueRangeProcessor.cs +61 -0
  45. data/csharp/PositionIterator.cs +101 -0
  46. data/csharp/PostingIterator.cs +125 -0
  47. data/csharp/Quartz.cs +58 -0
  48. data/csharp/Query.cs +150 -0
  49. data/csharp/QueryParser.cs +174 -0
  50. data/csharp/RSet.cs +102 -0
  51. data/csharp/Remote.cs +100 -0
  52. data/csharp/SWIGTYPE_p_std__string.cs +30 -0
  53. data/csharp/SWIGTYPE_p_std__vectorTXapian__Query_t.cs +30 -0
  54. data/csharp/SWIGTYPE_p_std__vectorTstd__string_t.cs +30 -0
  55. data/csharp/SimpleStopper.cs +64 -0
  56. data/csharp/SmokeTest.cs +178 -0
  57. data/csharp/Sorter.cs +76 -0
  58. data/csharp/Stem.cs +66 -0
  59. data/csharp/Stopper.cs +91 -0
  60. data/csharp/StringValueRangeProcessor.cs +53 -0
  61. data/csharp/TermGenerator.cs +152 -0
  62. data/csharp/TermIterator.cs +125 -0
  63. data/csharp/TradWeight.cs +107 -0
  64. data/csharp/ValueIterator.cs +102 -0
  65. data/csharp/ValueRangeProcessor.cs +76 -0
  66. data/csharp/Version.cs +60 -0
  67. data/csharp/Weight.cs +93 -0
  68. data/csharp/WritableDatabase.cs +153 -0
  69. data/csharp/Xapian.cs +65 -0
  70. data/csharp/XapianPINVOKE.cs +1527 -0
  71. data/csharp/docs/Makefile +450 -0
  72. data/csharp/docs/Makefile.am +16 -0
  73. data/csharp/docs/Makefile.in +450 -0
  74. data/csharp/docs/examples/SimpleExpand.cs +109 -0
  75. data/csharp/docs/examples/SimpleIndex.cs +71 -0
  76. data/csharp/docs/examples/SimpleSearch.cs +78 -0
  77. data/csharp/docs/index.html +211 -0
  78. data/csharp/util.i +233 -0
  79. data/csharp/xapian_wrap.cc +10338 -0
  80. data/csharp/xapian_wrap.h +93 -0
  81. data/depcomp +632 -0
  82. data/extconf.rb +20 -0
  83. data/generic/except.i +80 -0
  84. data/generic/generic.mk +48 -0
  85. data/install-sh +520 -0
  86. data/java-swig/.deps/xapian_wrap.Plo +1 -0
  87. data/java-swig/Auto.java +35 -0
  88. data/java-swig/BM25Weight.java +81 -0
  89. data/java-swig/BoolWeight.java +77 -0
  90. data/java-swig/Database.java +195 -0
  91. data/java-swig/DateValueRangeProcessor.java +51 -0
  92. data/java-swig/Document.java +135 -0
  93. data/java-swig/ESet.java +71 -0
  94. data/java-swig/ESetIterator.java +71 -0
  95. data/java-swig/Enquire.java +246 -0
  96. data/java-swig/ExpandDecider.java +59 -0
  97. data/java-swig/Flint.java +43 -0
  98. data/java-swig/InMemory.java +35 -0
  99. data/java-swig/MSet.java +143 -0
  100. data/java-swig/MSetIterator.java +87 -0
  101. data/java-swig/Makefile +781 -0
  102. data/java-swig/Makefile.am +132 -0
  103. data/java-swig/Makefile.in +781 -0
  104. data/java-swig/MatchDecider.java +59 -0
  105. data/java-swig/MultiValueSorter.java +51 -0
  106. data/java-swig/NumberValueRangeProcessor.java +51 -0
  107. data/java-swig/PositionIterator.java +63 -0
  108. data/java-swig/PostingIterator.java +83 -0
  109. data/java-swig/Quartz.java +43 -0
  110. data/java-swig/Query.java +189 -0
  111. data/java-swig/QueryParser.java +214 -0
  112. data/java-swig/RSet.java +79 -0
  113. data/java-swig/Remote.java +71 -0
  114. data/java-swig/SWIGTYPE_p_std__string.java +25 -0
  115. data/java-swig/SimpleStopper.java +51 -0
  116. data/java-swig/SmokeTest.java +161 -0
  117. data/java-swig/Sorter.java +59 -0
  118. data/java-swig/Stem.java +51 -0
  119. data/java-swig/Stopper.java +63 -0
  120. data/java-swig/StringValueRangeProcessor.java +43 -0
  121. data/java-swig/TermGenerator.java +158 -0
  122. data/java-swig/TermIterator.java +83 -0
  123. data/java-swig/TradWeight.java +81 -0
  124. data/java-swig/ValueIterator.java +67 -0
  125. data/java-swig/ValueRangeProcessor.java +59 -0
  126. data/java-swig/Version.java +47 -0
  127. data/java-swig/Weight.java +68 -0
  128. data/java-swig/WritableDatabase.java +123 -0
  129. data/java-swig/Xapian.java +39 -0
  130. data/java-swig/XapianConstants.java +15 -0
  131. data/java-swig/XapianJNI.java +508 -0
  132. data/java-swig/run-java-test +6 -0
  133. data/java-swig/xapian_wrap.cc +12594 -0
  134. data/java-swig/xapian_wrap.h +91 -0
  135. data/java/Makefile +660 -0
  136. data/java/Makefile.am +35 -0
  137. data/java/Makefile.in +660 -0
  138. data/java/README +76 -0
  139. data/java/SmokeTest.java +148 -0
  140. data/java/native/.deps/Database.Plo +1 -0
  141. data/java/native/.deps/Document.Plo +1 -0
  142. data/java/native/.deps/ESet.Plo +1 -0
  143. data/java/native/.deps/ESetIterator.Plo +1 -0
  144. data/java/native/.deps/Enquire.Plo +1 -0
  145. data/java/native/.deps/MSet.Plo +1 -0
  146. data/java/native/.deps/MSetIterator.Plo +1 -0
  147. data/java/native/.deps/PositionIterator.Plo +1 -0
  148. data/java/native/.deps/Query.Plo +1 -0
  149. data/java/native/.deps/RSet.Plo +1 -0
  150. data/java/native/.deps/Stem.Plo +1 -0
  151. data/java/native/.deps/TermIterator.Plo +1 -0
  152. data/java/native/.deps/WritableDatabase.Plo +1 -0
  153. data/java/native/.deps/org_xapian_XapianJNI.Plo +1 -0
  154. data/java/native/.deps/utils.Plo +1 -0
  155. data/java/native/Database.cc +222 -0
  156. data/java/native/Document.cc +173 -0
  157. data/java/native/ESet.cc +79 -0
  158. data/java/native/ESetIterator.cc +82 -0
  159. data/java/native/Enquire.cc +271 -0
  160. data/java/native/MSet.cc +169 -0
  161. data/java/native/MSetIterator.cc +107 -0
  162. data/java/native/Makefile +594 -0
  163. data/java/native/Makefile.am +51 -0
  164. data/java/native/Makefile.in +594 -0
  165. data/java/native/PositionIterator.cc +64 -0
  166. data/java/native/Query.cc +180 -0
  167. data/java/native/RSet.cc +98 -0
  168. data/java/native/Stem.cc +75 -0
  169. data/java/native/TermIterator.cc +107 -0
  170. data/java/native/WritableDatabase.cc +118 -0
  171. data/java/native/XapianObjectHolder.h +115 -0
  172. data/java/native/org_xapian_XapianJNI.cc +78 -0
  173. data/java/native/org_xapian_XapianJNI.h +1369 -0
  174. data/java/native/utils.cc +51 -0
  175. data/java/native/xapian_jni.h +116 -0
  176. data/java/org/xapian/Database.java +148 -0
  177. data/java/org/xapian/Document.java +135 -0
  178. data/java/org/xapian/ESet.java +66 -0
  179. data/java/org/xapian/ESetIterator.java +97 -0
  180. data/java/org/xapian/Enquire.java +136 -0
  181. data/java/org/xapian/ExpandDecider.java +30 -0
  182. data/java/org/xapian/MSet.java +104 -0
  183. data/java/org/xapian/MSetIterator.java +132 -0
  184. data/java/org/xapian/Makefile +580 -0
  185. data/java/org/xapian/Makefile.am +38 -0
  186. data/java/org/xapian/Makefile.in +580 -0
  187. data/java/org/xapian/MatchDecider.java +30 -0
  188. data/java/org/xapian/PositionIterator.java +89 -0
  189. data/java/org/xapian/Query.java +190 -0
  190. data/java/org/xapian/RSet.java +89 -0
  191. data/java/org/xapian/Stem.java +80 -0
  192. data/java/org/xapian/TermIterator.java +142 -0
  193. data/java/org/xapian/WritableDatabase.java +92 -0
  194. data/java/org/xapian/Xapian.java +114 -0
  195. data/java/org/xapian/XapianJNI.java +444 -0
  196. data/java/org/xapian/errors/AssertionError.java +40 -0
  197. data/java/org/xapian/errors/DatabaseCorruptError.java +40 -0
  198. data/java/org/xapian/errors/DatabaseError.java +40 -0
  199. data/java/org/xapian/errors/DatabaseLockError.java +40 -0
  200. data/java/org/xapian/errors/DatabaseModifiedError.java +40 -0
  201. data/java/org/xapian/errors/DatabaseOpeningError.java +40 -0
  202. data/java/org/xapian/errors/DocNotFoundError.java +40 -0
  203. data/java/org/xapian/errors/FeatureUnavailableError.java +40 -0
  204. data/java/org/xapian/errors/InternalError.java +40 -0
  205. data/java/org/xapian/errors/InvalidArgumentError.java +40 -0
  206. data/java/org/xapian/errors/InvalidOperationError.java +40 -0
  207. data/java/org/xapian/errors/LogicError.java +40 -0
  208. data/java/org/xapian/errors/Makefile +416 -0
  209. data/java/org/xapian/errors/Makefile.am +32 -0
  210. data/java/org/xapian/errors/Makefile.in +416 -0
  211. data/java/org/xapian/errors/NetworkError.java +40 -0
  212. data/java/org/xapian/errors/NetworkTimeoutError.java +40 -0
  213. data/java/org/xapian/errors/RangeError.java +40 -0
  214. data/java/org/xapian/errors/RuntimeError.java +40 -0
  215. data/java/org/xapian/errors/UnimplementedError.java +40 -0
  216. data/java/org/xapian/errors/XapianError.java +40 -0
  217. data/java/org/xapian/errors/XapianRuntimeError.java +49 -0
  218. data/java/org/xapian/examples/Makefile +391 -0
  219. data/java/org/xapian/examples/Makefile.am +8 -0
  220. data/java/org/xapian/examples/Makefile.in +391 -0
  221. data/java/org/xapian/examples/SimpleIndex.java +68 -0
  222. data/java/org/xapian/examples/SimpleSearch.java +71 -0
  223. data/java/run-java-test +6 -0
  224. data/libtool +7618 -0
  225. data/ltmain.sh +6956 -0
  226. data/mhs-xapian.gemspec +368 -0
  227. data/missing +378 -0
  228. data/php/.deps/xapian_wrap.Plo +1 -0
  229. data/php/Makefile +871 -0
  230. data/php/Makefile.am +82 -0
  231. data/php/Makefile.in +871 -0
  232. data/php/docs/Makefile +453 -0
  233. data/php/docs/Makefile.am +19 -0
  234. data/php/docs/Makefile.in +453 -0
  235. data/php/docs/examples/simpleexpand.php4 +108 -0
  236. data/php/docs/examples/simpleexpand.php5 +104 -0
  237. data/php/docs/examples/simpleindex.php4 +76 -0
  238. data/php/docs/examples/simpleindex.php5 +73 -0
  239. data/php/docs/examples/simplesearch.php4 +75 -0
  240. data/php/docs/examples/simplesearch.php5 +72 -0
  241. data/php/docs/index.html +313 -0
  242. data/php/except.i +98 -0
  243. data/php/php4/php_xapian.h +323 -0
  244. data/php/php4/xapian.php +32 -0
  245. data/php/php4/xapian_wrap.cc +27656 -0
  246. data/php/php5/php_xapian.h +319 -0
  247. data/php/php5/xapian.php +1566 -0
  248. data/php/php5/xapian_wrap.cc +24330 -0
  249. data/php/smoketest.php +246 -0
  250. data/php/smoketest4.php +84 -0
  251. data/php/smoketest5.php +79 -0
  252. data/php/util.i +187 -0
  253. data/python/.deps/xapian_wrap.Plo +1 -0
  254. data/python/Makefile +891 -0
  255. data/python/Makefile.am +105 -0
  256. data/python/Makefile.in +891 -0
  257. data/python/doccomments.i +5134 -0
  258. data/python/docs/Makefile +448 -0
  259. data/python/docs/Makefile.am +14 -0
  260. data/python/docs/Makefile.in +448 -0
  261. data/python/docs/examples/simpleexpand.py +98 -0
  262. data/python/docs/examples/simpleindex.py +65 -0
  263. data/python/docs/examples/simplematchdecider.py +78 -0
  264. data/python/docs/examples/simplesearch.py +65 -0
  265. data/python/docs/index.html +420 -0
  266. data/python/except.i +290 -0
  267. data/python/extra.i +1048 -0
  268. data/python/extracomments.i +28 -0
  269. data/python/generate-python-exceptions +189 -0
  270. data/python/generate-python-exceptions.in +189 -0
  271. data/python/modern/xapian.py +5662 -0
  272. data/python/modern/xapian_wrap.cc +35170 -0
  273. data/python/modern/xapian_wrap.h +244 -0
  274. data/python/pythontest.py +1110 -0
  275. data/python/smoketest.py +328 -0
  276. data/python/testsuite.py +382 -0
  277. data/python/util.i +517 -0
  278. data/ruby/.deps/xapian_wrap.Plo +494 -0
  279. data/ruby/.libs/_xapian.bundle +0 -0
  280. data/ruby/.libs/_xapian.bundle.dSYM/Contents/Info.plist +25 -0
  281. data/ruby/.libs/_xapian.bundle.dSYM/Contents/Resources/DWARF/_xapian.bundle +0 -0
  282. data/ruby/.libs/_xapian.la +35 -0
  283. data/ruby/.libs/_xapian.lai +35 -0
  284. data/ruby/Makefile +854 -0
  285. data/ruby/Makefile.am +62 -0
  286. data/ruby/Makefile.in +854 -0
  287. data/ruby/_xapian.la +35 -0
  288. data/ruby/docs/Makefile +487 -0
  289. data/ruby/docs/Makefile.am +50 -0
  290. data/ruby/docs/Makefile.in +487 -0
  291. data/ruby/docs/examples/simpleexpand.rb +98 -0
  292. data/ruby/docs/examples/simpleindex.rb +60 -0
  293. data/ruby/docs/examples/simplematchdecider.rb +74 -0
  294. data/ruby/docs/examples/simplesearch.rb +63 -0
  295. data/ruby/docs/index.html +197 -0
  296. data/ruby/smoketest.rb +211 -0
  297. data/ruby/util.i +232 -0
  298. data/ruby/xapian.rb +280 -0
  299. data/ruby/xapian_wrap.cc +25837 -0
  300. data/ruby/xapian_wrap.h +65 -0
  301. data/ruby/xapian_wrap.lo +12 -0
  302. data/skiptest +2 -0
  303. data/stamp-h1 +1 -0
  304. data/tcl8/.deps/xapian_wrap.Plo +1 -0
  305. data/tcl8/Makefile +835 -0
  306. data/tcl8/Makefile.am +49 -0
  307. data/tcl8/Makefile.in +835 -0
  308. data/tcl8/docs/Makefile +448 -0
  309. data/tcl8/docs/Makefile.am +14 -0
  310. data/tcl8/docs/Makefile.in +448 -0
  311. data/tcl8/docs/examples/simpleexpand.tcl +104 -0
  312. data/tcl8/docs/examples/simpleindex.tcl +68 -0
  313. data/tcl8/docs/examples/simplesearch.tcl +66 -0
  314. data/tcl8/docs/index.html +208 -0
  315. data/tcl8/except.i +48 -0
  316. data/tcl8/pkgIndex.tcl +1 -0
  317. data/tcl8/pkgIndex.tcl.in +1 -0
  318. data/tcl8/run-tcl-test +15 -0
  319. data/tcl8/runtest.tcl +29 -0
  320. data/tcl8/smoketest.tcl +155 -0
  321. data/tcl8/util.i +76 -0
  322. data/tcl8/xapian_wrap.cc +20900 -0
  323. data/xapian-bindings.spec +206 -0
  324. data/xapian-bindings.spec.in +206 -0
  325. data/xapian-version.h +1 -0
  326. data/xapian-version.h.in +1 -0
  327. data/xapian.i +939 -0
  328. metadata +395 -0
data/config.h ADDED
@@ -0,0 +1,56 @@
1
+ /* config.h. Generated from config.h.in by configure. */
2
+ /* config.h.in. Generated from configure.ac by autoheader. */
3
+
4
+ /* Define to 1 if you have the <dlfcn.h> header file. */
5
+ #define HAVE_DLFCN_H 1
6
+
7
+ /* Define to 1 if you have the <inttypes.h> header file. */
8
+ #define HAVE_INTTYPES_H 1
9
+
10
+ /* Define to 1 if you have the <memory.h> header file. */
11
+ #define HAVE_MEMORY_H 1
12
+
13
+ /* Define to 1 if you have the <stdint.h> header file. */
14
+ #define HAVE_STDINT_H 1
15
+
16
+ /* Define to 1 if you have the <stdlib.h> header file. */
17
+ #define HAVE_STDLIB_H 1
18
+
19
+ /* Define to 1 if you have the <strings.h> header file. */
20
+ #define HAVE_STRINGS_H 1
21
+
22
+ /* Define to 1 if you have the <string.h> header file. */
23
+ #define HAVE_STRING_H 1
24
+
25
+ /* Define to 1 if you have the <sys/stat.h> header file. */
26
+ #define HAVE_SYS_STAT_H 1
27
+
28
+ /* Define to 1 if you have the <sys/types.h> header file. */
29
+ #define HAVE_SYS_TYPES_H 1
30
+
31
+ /* Define to 1 if you have the <unistd.h> header file. */
32
+ #define HAVE_UNISTD_H 1
33
+
34
+ /* Name of package */
35
+ #define PACKAGE "xapian-bindings"
36
+
37
+ /* Define to the address where bug reports for this package should be sent. */
38
+ #define PACKAGE_BUGREPORT "http://xapian.org/bugs"
39
+
40
+ /* Define to the full name of this package. */
41
+ #define PACKAGE_NAME "xapian-bindings"
42
+
43
+ /* Define to the full name and version of this package. */
44
+ #define PACKAGE_STRING "xapian-bindings 1.0.18"
45
+
46
+ /* Define to the one symbol short name of this package. */
47
+ #define PACKAGE_TARNAME "xapian-bindings"
48
+
49
+ /* Define to the version of this package. */
50
+ #define PACKAGE_VERSION "1.0.18"
51
+
52
+ /* Define to 1 if you have the ANSI C header files. */
53
+ #define STDC_HEADERS 1
54
+
55
+ /* Version number of package */
56
+ #define VERSION "1.0.18"
data/config.h.in ADDED
@@ -0,0 +1,55 @@
1
+ /* config.h.in. Generated from configure.ac by autoheader. */
2
+
3
+ /* Define to 1 if you have the <dlfcn.h> header file. */
4
+ #undef HAVE_DLFCN_H
5
+
6
+ /* Define to 1 if you have the <inttypes.h> header file. */
7
+ #undef HAVE_INTTYPES_H
8
+
9
+ /* Define to 1 if you have the <memory.h> header file. */
10
+ #undef HAVE_MEMORY_H
11
+
12
+ /* Define to 1 if you have the <stdint.h> header file. */
13
+ #undef HAVE_STDINT_H
14
+
15
+ /* Define to 1 if you have the <stdlib.h> header file. */
16
+ #undef HAVE_STDLIB_H
17
+
18
+ /* Define to 1 if you have the <strings.h> header file. */
19
+ #undef HAVE_STRINGS_H
20
+
21
+ /* Define to 1 if you have the <string.h> header file. */
22
+ #undef HAVE_STRING_H
23
+
24
+ /* Define to 1 if you have the <sys/stat.h> header file. */
25
+ #undef HAVE_SYS_STAT_H
26
+
27
+ /* Define to 1 if you have the <sys/types.h> header file. */
28
+ #undef HAVE_SYS_TYPES_H
29
+
30
+ /* Define to 1 if you have the <unistd.h> header file. */
31
+ #undef HAVE_UNISTD_H
32
+
33
+ /* Name of package */
34
+ #undef PACKAGE
35
+
36
+ /* Define to the address where bug reports for this package should be sent. */
37
+ #undef PACKAGE_BUGREPORT
38
+
39
+ /* Define to the full name of this package. */
40
+ #undef PACKAGE_NAME
41
+
42
+ /* Define to the full name and version of this package. */
43
+ #undef PACKAGE_STRING
44
+
45
+ /* Define to the one symbol short name of this package. */
46
+ #undef PACKAGE_TARNAME
47
+
48
+ /* Define to the version of this package. */
49
+ #undef PACKAGE_VERSION
50
+
51
+ /* Define to 1 if you have the ANSI C header files. */
52
+ #undef STDC_HEADERS
53
+
54
+ /* Version number of package */
55
+ #undef VERSION
data/config.status ADDED
@@ -0,0 +1,1298 @@
1
+ #! /bin/sh
2
+ # Generated by configure.
3
+ # Run this file to recreate the current configuration.
4
+ # Compiler output produced by configure, useful for debugging
5
+ # configure, is in config.log if it exists.
6
+
7
+ debug=false
8
+ ac_cs_recheck=false
9
+ ac_cs_silent=false
10
+ SHELL=${CONFIG_SHELL-/bin/sh}
11
+ ## --------------------- ##
12
+ ## M4sh Initialization. ##
13
+ ## --------------------- ##
14
+
15
+ # Be more Bourne compatible
16
+ DUALCASE=1; export DUALCASE # for MKS sh
17
+ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
18
+ emulate sh
19
+ NULLCMD=:
20
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
21
+ # is contrary to our usage. Disable this feature.
22
+ alias -g '${1+"$@"}'='"$@"'
23
+ setopt NO_GLOB_SUBST
24
+ else
25
+ case `(set -o) 2>/dev/null` in
26
+ *posix*) set -o posix ;;
27
+ esac
28
+
29
+ fi
30
+
31
+
32
+
33
+
34
+ # PATH needs CR
35
+ # Avoid depending upon Character Ranges.
36
+ as_cr_letters='abcdefghijklmnopqrstuvwxyz'
37
+ as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
38
+ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
39
+ as_cr_digits='0123456789'
40
+ as_cr_alnum=$as_cr_Letters$as_cr_digits
41
+
42
+ as_nl='
43
+ '
44
+ export as_nl
45
+ # Printing a long string crashes Solaris 7 /usr/bin/printf.
46
+ as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
47
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
48
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
49
+ if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50
+ as_echo='printf %s\n'
51
+ as_echo_n='printf %s'
52
+ else
53
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54
+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55
+ as_echo_n='/usr/ucb/echo -n'
56
+ else
57
+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58
+ as_echo_n_body='eval
59
+ arg=$1;
60
+ case $arg in
61
+ *"$as_nl"*)
62
+ expr "X$arg" : "X\\(.*\\)$as_nl";
63
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64
+ esac;
65
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66
+ '
67
+ export as_echo_n_body
68
+ as_echo_n='sh -c $as_echo_n_body as_echo'
69
+ fi
70
+ export as_echo_body
71
+ as_echo='sh -c $as_echo_body as_echo'
72
+ fi
73
+
74
+ # The user is always right.
75
+ if test "${PATH_SEPARATOR+set}" != set; then
76
+ PATH_SEPARATOR=:
77
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79
+ PATH_SEPARATOR=';'
80
+ }
81
+ fi
82
+
83
+ # Support unset when possible.
84
+ if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
85
+ as_unset=unset
86
+ else
87
+ as_unset=false
88
+ fi
89
+
90
+
91
+ # IFS
92
+ # We need space, tab and new line, in precisely that order. Quoting is
93
+ # there to prevent editors from complaining about space-tab.
94
+ # (If _AS_PATH_WALK were called with IFS unset, it would disable word
95
+ # splitting by setting IFS to empty value.)
96
+ IFS=" "" $as_nl"
97
+
98
+ # Find who we are. Look in the path if we contain no directory separator.
99
+ case $0 in
100
+ *[\\/]* ) as_myself=$0 ;;
101
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
102
+ for as_dir in $PATH
103
+ do
104
+ IFS=$as_save_IFS
105
+ test -z "$as_dir" && as_dir=.
106
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
107
+ done
108
+ IFS=$as_save_IFS
109
+
110
+ ;;
111
+ esac
112
+ # We did not find ourselves, most probably we were run as `sh COMMAND'
113
+ # in which case we are not to be found in the path.
114
+ if test "x$as_myself" = x; then
115
+ as_myself=$0
116
+ fi
117
+ if test ! -f "$as_myself"; then
118
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
119
+ { (exit 1); exit 1; }
120
+ fi
121
+
122
+ # Work around bugs in pre-3.0 UWIN ksh.
123
+ for as_var in ENV MAIL MAILPATH
124
+ do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
125
+ done
126
+ PS1='$ '
127
+ PS2='> '
128
+ PS4='+ '
129
+
130
+ # NLS nuisances.
131
+ LC_ALL=C
132
+ export LC_ALL
133
+ LANGUAGE=C
134
+ export LANGUAGE
135
+
136
+ # Required to use basename.
137
+ if expr a : '\(a\)' >/dev/null 2>&1 &&
138
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
139
+ as_expr=expr
140
+ else
141
+ as_expr=false
142
+ fi
143
+
144
+ if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
145
+ as_basename=basename
146
+ else
147
+ as_basename=false
148
+ fi
149
+
150
+
151
+ # Name of the executable.
152
+ as_me=`$as_basename -- "$0" ||
153
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
154
+ X"$0" : 'X\(//\)$' \| \
155
+ X"$0" : 'X\(/\)' \| . 2>/dev/null ||
156
+ $as_echo X/"$0" |
157
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
158
+ s//\1/
159
+ q
160
+ }
161
+ /^X\/\(\/\/\)$/{
162
+ s//\1/
163
+ q
164
+ }
165
+ /^X\/\(\/\).*/{
166
+ s//\1/
167
+ q
168
+ }
169
+ s/.*/./; q'`
170
+
171
+ # CDPATH.
172
+ $as_unset CDPATH
173
+
174
+
175
+
176
+ as_lineno_1=$LINENO
177
+ as_lineno_2=$LINENO
178
+ test "x$as_lineno_1" != "x$as_lineno_2" &&
179
+ test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
180
+
181
+ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
182
+ # uniformly replaced by the line number. The first 'sed' inserts a
183
+ # line-number line after each line using $LINENO; the second 'sed'
184
+ # does the real work. The second script uses 'N' to pair each
185
+ # line-number line with the line containing $LINENO, and appends
186
+ # trailing '-' during substitution so that $LINENO is not a special
187
+ # case at line end.
188
+ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
189
+ # scripts with optimization help from Paolo Bonzini. Blame Lee
190
+ # E. McMahon (1931-1989) for sed's syntax. :-)
191
+ sed -n '
192
+ p
193
+ /[$]LINENO/=
194
+ ' <$as_myself |
195
+ sed '
196
+ s/[$]LINENO.*/&-/
197
+ t lineno
198
+ b
199
+ :lineno
200
+ N
201
+ :loop
202
+ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
203
+ t loop
204
+ s/-\n.*//
205
+ ' >$as_me.lineno &&
206
+ chmod +x "$as_me.lineno" ||
207
+ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
208
+ { (exit 1); exit 1; }; }
209
+
210
+ # Don't try to exec as it changes $[0], causing all sort of problems
211
+ # (the dirname of $[0] is not the place where we might find the
212
+ # original and so on. Autoconf is especially sensitive to this).
213
+ . "./$as_me.lineno"
214
+ # Exit status is that of the last command.
215
+ exit
216
+ }
217
+
218
+
219
+ if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
220
+ as_dirname=dirname
221
+ else
222
+ as_dirname=false
223
+ fi
224
+
225
+ ECHO_C= ECHO_N= ECHO_T=
226
+ case `echo -n x` in
227
+ -n*)
228
+ case `echo 'x\c'` in
229
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
230
+ *) ECHO_C='\c';;
231
+ esac;;
232
+ *)
233
+ ECHO_N='-n';;
234
+ esac
235
+ if expr a : '\(a\)' >/dev/null 2>&1 &&
236
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
237
+ as_expr=expr
238
+ else
239
+ as_expr=false
240
+ fi
241
+
242
+ rm -f conf$$ conf$$.exe conf$$.file
243
+ if test -d conf$$.dir; then
244
+ rm -f conf$$.dir/conf$$.file
245
+ else
246
+ rm -f conf$$.dir
247
+ mkdir conf$$.dir 2>/dev/null
248
+ fi
249
+ if (echo >conf$$.file) 2>/dev/null; then
250
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
251
+ as_ln_s='ln -s'
252
+ # ... but there are two gotchas:
253
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
254
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
255
+ # In both cases, we have to default to `cp -p'.
256
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
257
+ as_ln_s='cp -p'
258
+ elif ln conf$$.file conf$$ 2>/dev/null; then
259
+ as_ln_s=ln
260
+ else
261
+ as_ln_s='cp -p'
262
+ fi
263
+ else
264
+ as_ln_s='cp -p'
265
+ fi
266
+ rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
267
+ rmdir conf$$.dir 2>/dev/null
268
+
269
+ if mkdir -p . 2>/dev/null; then
270
+ as_mkdir_p=:
271
+ else
272
+ test -d ./-p && rmdir ./-p
273
+ as_mkdir_p=false
274
+ fi
275
+
276
+ if test -x / >/dev/null 2>&1; then
277
+ as_test_x='test -x'
278
+ else
279
+ if ls -dL / >/dev/null 2>&1; then
280
+ as_ls_L_option=L
281
+ else
282
+ as_ls_L_option=
283
+ fi
284
+ as_test_x='
285
+ eval sh -c '\''
286
+ if test -d "$1"; then
287
+ test -d "$1/.";
288
+ else
289
+ case $1 in
290
+ -*)set "./$1";;
291
+ esac;
292
+ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
293
+ ???[sx]*):;;*)false;;esac;fi
294
+ '\'' sh
295
+ '
296
+ fi
297
+ as_executable_p=$as_test_x
298
+
299
+ # Sed expression to map a string onto a valid CPP name.
300
+ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
301
+
302
+ # Sed expression to map a string onto a valid variable name.
303
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
304
+
305
+
306
+ exec 6>&1
307
+
308
+ # Save the log message, to keep $[0] and so on meaningful, and to
309
+ # report actual input values of CONFIG_FILES etc. instead of their
310
+ # values after options handling.
311
+ ac_log="
312
+ This file was extended by xapian-bindings $as_me 1.0.18, which was
313
+ generated by GNU Autoconf 2.63. Invocation command line was
314
+
315
+ CONFIG_FILES = $CONFIG_FILES
316
+ CONFIG_HEADERS = $CONFIG_HEADERS
317
+ CONFIG_LINKS = $CONFIG_LINKS
318
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
319
+ $ $0 $@
320
+
321
+ on `(hostname || uname -n) 2>/dev/null | sed 1q`
322
+ "
323
+
324
+ # Files that config.status was made for.
325
+ config_files=" Makefile xapian-version.h python/Makefile python/docs/Makefile php/Makefile php/docs/Makefile java/Makefile java/native/Makefile java/org/xapian/Makefile java/org/xapian/errors/Makefile java/org/xapian/examples/Makefile java-swig/Makefile tcl8/Makefile tcl8/docs/Makefile tcl8/pkgIndex.tcl csharp/Makefile csharp/docs/Makefile csharp/AssemblyInfo.cs ruby/Makefile ruby/docs/Makefile xapian-bindings.spec python/generate-python-exceptions"
326
+ config_headers=" config.h"
327
+ config_commands=" depfiles"
328
+
329
+ ac_cs_usage="\
330
+ \`$as_me' instantiates files from templates according to the
331
+ current configuration.
332
+
333
+ Usage: $0 [OPTION]... [FILE]...
334
+
335
+ -h, --help print this help, then exit
336
+ -V, --version print version number and configuration settings, then exit
337
+ -q, --quiet, --silent
338
+ do not print progress messages
339
+ -d, --debug don't remove temporary files
340
+ --recheck update $as_me by reconfiguring in the same conditions
341
+ --file=FILE[:TEMPLATE]
342
+ instantiate the configuration file FILE
343
+ --header=FILE[:TEMPLATE]
344
+ instantiate the configuration header FILE
345
+
346
+ Configuration files:
347
+ $config_files
348
+
349
+ Configuration headers:
350
+ $config_headers
351
+
352
+ Configuration commands:
353
+ $config_commands
354
+
355
+ Report bugs to <bug-autoconf@gnu.org>."
356
+
357
+ ac_cs_version="\
358
+ xapian-bindings config.status 1.0.18
359
+ configured by ./configure, generated by GNU Autoconf 2.63,
360
+ with options \"'--with-ruby'\"
361
+
362
+ Copyright (C) 2008 Free Software Foundation, Inc.
363
+ This config.status script is free software; the Free Software Foundation
364
+ gives unlimited permission to copy, distribute and modify it."
365
+
366
+ ac_pwd='/Users/zdennis/source/opensource_projects/xapian'
367
+ srcdir='.'
368
+ INSTALL='/opt/local/bin/ginstall -c'
369
+ MKDIR_P='/opt/local/bin/gmkdir -p'
370
+ AWK='gawk'
371
+ test -n "$AWK" || AWK=awk
372
+ # The default lists apply if the user does not specify any file.
373
+ ac_need_defaults=:
374
+ while test $# != 0
375
+ do
376
+ case $1 in
377
+ --*=*)
378
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
379
+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
380
+ ac_shift=:
381
+ ;;
382
+ *)
383
+ ac_option=$1
384
+ ac_optarg=$2
385
+ ac_shift=shift
386
+ ;;
387
+ esac
388
+
389
+ case $ac_option in
390
+ # Handling of the options.
391
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
392
+ ac_cs_recheck=: ;;
393
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
394
+ $as_echo "$ac_cs_version"; exit ;;
395
+ --debug | --debu | --deb | --de | --d | -d )
396
+ debug=: ;;
397
+ --file | --fil | --fi | --f )
398
+ $ac_shift
399
+ case $ac_optarg in
400
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
401
+ esac
402
+ CONFIG_FILES="$CONFIG_FILES '$ac_optarg'"
403
+ ac_need_defaults=false;;
404
+ --header | --heade | --head | --hea )
405
+ $ac_shift
406
+ case $ac_optarg in
407
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
408
+ esac
409
+ CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'"
410
+ ac_need_defaults=false;;
411
+ --he | --h)
412
+ # Conflict between --help and --header
413
+ { $as_echo "$as_me: error: ambiguous option: $1
414
+ Try \`$0 --help' for more information." >&2
415
+ { (exit 1); exit 1; }; };;
416
+ --help | --hel | -h )
417
+ $as_echo "$ac_cs_usage"; exit ;;
418
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
419
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
420
+ ac_cs_silent=: ;;
421
+
422
+ # This is an error.
423
+ -*) { $as_echo "$as_me: error: unrecognized option: $1
424
+ Try \`$0 --help' for more information." >&2
425
+ { (exit 1); exit 1; }; } ;;
426
+
427
+ *) ac_config_targets="$ac_config_targets $1"
428
+ ac_need_defaults=false ;;
429
+
430
+ esac
431
+ shift
432
+ done
433
+
434
+ ac_configure_extra_args=
435
+
436
+ if $ac_cs_silent; then
437
+ exec 6>/dev/null
438
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
439
+ fi
440
+
441
+ if $ac_cs_recheck; then
442
+ set X '/bin/sh' './configure' '--with-ruby' $ac_configure_extra_args --no-create --no-recursion
443
+ shift
444
+ $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
445
+ CONFIG_SHELL='/bin/sh'
446
+ export CONFIG_SHELL
447
+ exec "$@"
448
+ fi
449
+
450
+ exec 5>>config.log
451
+ {
452
+ echo
453
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
454
+ ## Running $as_me. ##
455
+ _ASBOX
456
+ $as_echo "$ac_log"
457
+ } >&5
458
+
459
+ #
460
+ # INIT-COMMANDS
461
+ #
462
+ AMDEP_TRUE="" ac_aux_dir="."
463
+
464
+
465
+ # Handling of arguments.
466
+ for ac_config_target in $ac_config_targets
467
+ do
468
+ case $ac_config_target in
469
+ "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
470
+ "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
471
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
472
+ "xapian-version.h") CONFIG_FILES="$CONFIG_FILES xapian-version.h" ;;
473
+ "python/Makefile") CONFIG_FILES="$CONFIG_FILES python/Makefile" ;;
474
+ "python/docs/Makefile") CONFIG_FILES="$CONFIG_FILES python/docs/Makefile" ;;
475
+ "php/Makefile") CONFIG_FILES="$CONFIG_FILES php/Makefile" ;;
476
+ "php/docs/Makefile") CONFIG_FILES="$CONFIG_FILES php/docs/Makefile" ;;
477
+ "java/Makefile") CONFIG_FILES="$CONFIG_FILES java/Makefile" ;;
478
+ "java/native/Makefile") CONFIG_FILES="$CONFIG_FILES java/native/Makefile" ;;
479
+ "java/org/xapian/Makefile") CONFIG_FILES="$CONFIG_FILES java/org/xapian/Makefile" ;;
480
+ "java/org/xapian/errors/Makefile") CONFIG_FILES="$CONFIG_FILES java/org/xapian/errors/Makefile" ;;
481
+ "java/org/xapian/examples/Makefile") CONFIG_FILES="$CONFIG_FILES java/org/xapian/examples/Makefile" ;;
482
+ "java-swig/Makefile") CONFIG_FILES="$CONFIG_FILES java-swig/Makefile" ;;
483
+ "tcl8/Makefile") CONFIG_FILES="$CONFIG_FILES tcl8/Makefile" ;;
484
+ "tcl8/docs/Makefile") CONFIG_FILES="$CONFIG_FILES tcl8/docs/Makefile" ;;
485
+ "tcl8/pkgIndex.tcl") CONFIG_FILES="$CONFIG_FILES tcl8/pkgIndex.tcl" ;;
486
+ "csharp/Makefile") CONFIG_FILES="$CONFIG_FILES csharp/Makefile" ;;
487
+ "csharp/docs/Makefile") CONFIG_FILES="$CONFIG_FILES csharp/docs/Makefile" ;;
488
+ "csharp/AssemblyInfo.cs") CONFIG_FILES="$CONFIG_FILES csharp/AssemblyInfo.cs" ;;
489
+ "ruby/Makefile") CONFIG_FILES="$CONFIG_FILES ruby/Makefile" ;;
490
+ "ruby/docs/Makefile") CONFIG_FILES="$CONFIG_FILES ruby/docs/Makefile" ;;
491
+ "xapian-bindings.spec") CONFIG_FILES="$CONFIG_FILES xapian-bindings.spec" ;;
492
+ "python/generate-python-exceptions") CONFIG_FILES="$CONFIG_FILES python/generate-python-exceptions" ;;
493
+
494
+ *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
495
+ $as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
496
+ { (exit 1); exit 1; }; };;
497
+ esac
498
+ done
499
+
500
+
501
+ # If the user did not use the arguments to specify the items to instantiate,
502
+ # then the envvar interface is used. Set only those that are not.
503
+ # We use the long form for the default assignment because of an extremely
504
+ # bizarre bug on SunOS 4.1.3.
505
+ if $ac_need_defaults; then
506
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
507
+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
508
+ test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
509
+ fi
510
+
511
+ # Have a temporary directory for convenience. Make it in the build tree
512
+ # simply because there is no reason against having it here, and in addition,
513
+ # creating and moving files from /tmp can sometimes cause problems.
514
+ # Hook for its removal unless debugging.
515
+ # Note that there is a small window in which the directory will not be cleaned:
516
+ # after its creation but before its name has been assigned to `$tmp'.
517
+ $debug ||
518
+ {
519
+ tmp=
520
+ trap 'exit_status=$?
521
+ { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
522
+ ' 0
523
+ trap '{ (exit 1); exit 1; }' 1 2 13 15
524
+ }
525
+ # Create a (secure) tmp directory for tmp files.
526
+
527
+ {
528
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
529
+ test -n "$tmp" && test -d "$tmp"
530
+ } ||
531
+ {
532
+ tmp=./conf$$-$RANDOM
533
+ (umask 077 && mkdir "$tmp")
534
+ } ||
535
+ {
536
+ $as_echo "$as_me: cannot create a temporary directory in ." >&2
537
+ { (exit 1); exit 1; }
538
+ }
539
+
540
+ # Set up the scripts for CONFIG_FILES section.
541
+ # No need to generate them if there are no CONFIG_FILES.
542
+ # This happens for instance with `./config.status config.h'.
543
+ if test -n "$CONFIG_FILES"; then
544
+
545
+
546
+ ac_cr='
547
+ ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
548
+ if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
549
+ ac_cs_awk_cr='\\r'
550
+ else
551
+ ac_cs_awk_cr=$ac_cr
552
+ fi
553
+
554
+ echo 'BEGIN {' >"$tmp/subs1.awk" &&
555
+ cat >>"$tmp/subs1.awk" <<\_ACAWK &&
556
+ S["LTLIBOBJS"]=""
557
+ S["LIBOBJS"]=""
558
+ S["AUTOM4TE"]="autom4te"
559
+ S["JAVA_CXXFLAGS"]="-Wall -W -Wno-unused"
560
+ S["SWIG_CXXFLAGS"]="-fno-strict-aliasing -Wall -Wno-unused -Wno-uninitialized -fvisibility=hidden"
561
+ S["BINDINGS"]=" ruby"
562
+ S["RUBY_DLEXT"]="bundle"
563
+ S["RDOC"]=""
564
+ S["RUBY_LIBS"]=""
565
+ S["RUBY_LIB_ARCH"]="/opt/local/lib/ruby/site_ruby/1.8/i686-darwin9"
566
+ S["RUBY_LIB"]="/opt/local/lib/ruby/site_ruby/1.8"
567
+ S["RUBY_INC_ARCH"]="/opt/local/lib/ruby/1.8/i686-darwin9"
568
+ S["RUBY_INC"]="/opt/local/lib/ruby/1.8/i686-darwin9"
569
+ S["RUBY"]="/opt/local/bin/ruby"
570
+ S["JAVA_PATHSEP"]=""
571
+ S["JAVA_CPPFLAGS"]=""
572
+ S["JNI_INCLUDE_DIR"]=""
573
+ S["JDK_HOME"]=""
574
+ S["JAVA_HOME"]=""
575
+ S["JAR"]=""
576
+ S["JAVAC"]=""
577
+ S["JAVA"]=""
578
+ S["RUN_CSHARP"]=""
579
+ S["MONO"]=""
580
+ S["SN"]=""
581
+ S["GACUTIL"]=""
582
+ S["CSC"]=""
583
+ S["TCL_LIBS"]=""
584
+ S["TCL_CPPFLAGS"]=""
585
+ S["TCL_LIB"]=""
586
+ S["TCLSH"]=""
587
+ S["PHP_LIBS"]=""
588
+ S["PHP_INC"]=""
589
+ S["PHP_EXTENSION_DIR"]=""
590
+ S["PHP_MAJOR_VERSION"]=""
591
+ S["PHP"]=""
592
+ S["PHP_CONFIG"]=""
593
+ S["PYTHON_SO"]=""
594
+ S["PYTHON_LIBS"]=""
595
+ S["PYTHON_LIB"]=""
596
+ S["PYTHON_INC"]=""
597
+ S["PYTHON"]=""
598
+ S["PERL"]=""
599
+ S["SWIG_FLAGS"]=""
600
+ S["SWIG"]=""
601
+ S["MAINTAINER_NO_DOCS_FALSE"]=""
602
+ S["MAINTAINER_NO_DOCS_TRUE"]="#"
603
+ S["DOCUMENTATION_RULES_FALSE"]=""
604
+ S["DOCUMENTATION_RULES_TRUE"]="#"
605
+ S["MAINT"]="#"
606
+ S["MAINTAINER_MODE_FALSE"]=""
607
+ S["MAINTAINER_MODE_TRUE"]="#"
608
+ S["VERSION_NO_SNAPSHOT"]="1.0.18"
609
+ S["COMPAT_VERSION"]="1.0.18"
610
+ S["XAPIAN_VERSION"]="1.0.18"
611
+ S["XAPIAN_LIBS"]="/opt/local/lib/libxapian.la -lstdc++"
612
+ S["XAPIAN_CXXFLAGS"]="-I/opt/local/include"
613
+ S["XAPIAN_CONFIG"]="/opt/local/bin/xapian-config"
614
+ S["NO_UNDEFINED"]=""
615
+ S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
616
+ S["CXXCPP"]="g++ -E"
617
+ S["am__fastdepCXX_FALSE"]="#"
618
+ S["am__fastdepCXX_TRUE"]=""
619
+ S["CXXDEPMODE"]="depmode=gcc3"
620
+ S["ac_ct_CXX"]="g++"
621
+ S["CXXFLAGS"]="-g -O2"
622
+ S["CXX"]="g++"
623
+ S["CPP"]="gcc -E"
624
+ S["NMEDIT"]="nmedit"
625
+ S["DSYMUTIL"]="dsymutil"
626
+ S["RANLIB"]="ranlib"
627
+ S["AR"]="ar"
628
+ S["ECHO"]="/bin/echo"
629
+ S["LN_S"]="ln -s"
630
+ S["EGREP"]="/usr/bin/grep -E"
631
+ S["GREP"]="/usr/bin/grep"
632
+ S["SED"]="/opt/local/bin/gsed"
633
+ S["am__fastdepCC_FALSE"]="#"
634
+ S["am__fastdepCC_TRUE"]=""
635
+ S["CCDEPMODE"]="depmode=gcc3"
636
+ S["AMDEPBACKSLASH"]="\\"
637
+ S["AMDEP_FALSE"]="#"
638
+ S["AMDEP_TRUE"]=""
639
+ S["am__quote"]=""
640
+ S["am__include"]="include"
641
+ S["DEPDIR"]=".deps"
642
+ S["OBJEXT"]="o"
643
+ S["EXEEXT"]=""
644
+ S["ac_ct_CC"]="gcc"
645
+ S["CPPFLAGS"]=""
646
+ S["LDFLAGS"]=""
647
+ S["CFLAGS"]="-g -O2"
648
+ S["CC"]="gcc"
649
+ S["NEED_JNILIB_EXT_FALSE"]="#"
650
+ S["NEED_JNILIB_EXT_TRUE"]=""
651
+ S["OVERRIDE_MACOSX_DEPLOYMENT_TARGET"]="10.3"
652
+ S["OVERRIDE_MACOSX_DEPLOYMENT_TARGET_FALSE"]="#"
653
+ S["OVERRIDE_MACOSX_DEPLOYMENT_TARGET_TRUE"]=""
654
+ S["host_os"]="darwin9.8.0"
655
+ S["host_vendor"]="apple"
656
+ S["host_cpu"]="i386"
657
+ S["host"]="i386-apple-darwin9.8.0"
658
+ S["build_os"]="darwin9.8.0"
659
+ S["build_vendor"]="apple"
660
+ S["build_cpu"]="i386"
661
+ S["build"]="i386-apple-darwin9.8.0"
662
+ S["am__untar"]="tar -xf -"
663
+ S["am__tar"]="tar --format=ustar -chf - \"$$tardir\""
664
+ S["AMTAR"]="${SHELL} /Users/zdennis/source/opensource_projects/xapian/missing --run tar"
665
+ S["am__leading_dot"]="."
666
+ S["SET_MAKE"]=""
667
+ S["AWK"]="gawk"
668
+ S["mkdir_p"]="/opt/local/bin/gmkdir -p"
669
+ S["MKDIR_P"]="/opt/local/bin/gmkdir -p"
670
+ S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
671
+ S["STRIP"]="strip"
672
+ S["install_sh"]="$(SHELL) /Users/zdennis/source/opensource_projects/xapian/install-sh"
673
+ S["MAKEINFO"]="${SHELL} /Users/zdennis/source/opensource_projects/xapian/missing --run makeinfo"
674
+ S["AUTOHEADER"]="${SHELL} /Users/zdennis/source/opensource_projects/xapian/missing --run autoheader"
675
+ S["AUTOMAKE"]="${SHELL} /Users/zdennis/source/opensource_projects/xapian/missing --run automake-1.10"
676
+ S["AUTOCONF"]="${SHELL} /Users/zdennis/source/opensource_projects/xapian/missing --run autoconf"
677
+ S["ACLOCAL"]="${SHELL} /Users/zdennis/source/opensource_projects/xapian/missing --run aclocal-1.10"
678
+ S["VERSION"]="1.0.18"
679
+ S["PACKAGE"]="xapian-bindings"
680
+ S["CYGPATH_W"]="echo"
681
+ S["am__isrc"]=""
682
+ S["INSTALL_DATA"]="${INSTALL} -m 644"
683
+ S["INSTALL_SCRIPT"]="${INSTALL}"
684
+ S["INSTALL_PROGRAM"]="${INSTALL}"
685
+ S["target_alias"]=""
686
+ S["host_alias"]=""
687
+ S["build_alias"]=""
688
+ S["LIBS"]=""
689
+ S["ECHO_T"]=""
690
+ S["ECHO_N"]=""
691
+ S["ECHO_C"]="\\c"
692
+ S["DEFS"]="-DHAVE_CONFIG_H"
693
+ S["mandir"]="${datarootdir}/man"
694
+ S["localedir"]="${datarootdir}/locale"
695
+ S["libdir"]="${exec_prefix}/lib"
696
+ S["psdir"]="${docdir}"
697
+ S["pdfdir"]="${docdir}"
698
+ S["dvidir"]="${docdir}"
699
+ S["htmldir"]="${docdir}"
700
+ S["infodir"]="${datarootdir}/info"
701
+ S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
702
+ S["oldincludedir"]="/usr/include"
703
+ S["includedir"]="${prefix}/include"
704
+ S["localstatedir"]="${prefix}/var"
705
+ S["sharedstatedir"]="${prefix}/com"
706
+ S["sysconfdir"]="${prefix}/etc"
707
+ S["datadir"]="${datarootdir}"
708
+ S["datarootdir"]="${prefix}/share"
709
+ S["libexecdir"]="${exec_prefix}/libexec"
710
+ S["sbindir"]="${exec_prefix}/sbin"
711
+ S["bindir"]="${exec_prefix}/bin"
712
+ S["program_transform_name"]="s,x,x,"
713
+ S["prefix"]="/usr/local"
714
+ S["exec_prefix"]="${prefix}"
715
+ S["PACKAGE_BUGREPORT"]="http://xapian.org/bugs"
716
+ S["PACKAGE_STRING"]="xapian-bindings 1.0.18"
717
+ S["PACKAGE_VERSION"]="1.0.18"
718
+ S["PACKAGE_TARNAME"]="xapian-bindings"
719
+ S["PACKAGE_NAME"]="xapian-bindings"
720
+ S["PATH_SEPARATOR"]=":"
721
+ S["SHELL"]="/bin/sh"
722
+ _ACAWK
723
+ cat >>"$tmp/subs1.awk" <<_ACAWK &&
724
+ for (key in S) S_is_set[key] = 1
725
+ FS = ""
726
+
727
+ }
728
+ {
729
+ line = $ 0
730
+ nfields = split(line, field, "@")
731
+ substed = 0
732
+ len = length(field[1])
733
+ for (i = 2; i < nfields; i++) {
734
+ key = field[i]
735
+ keylen = length(key)
736
+ if (S_is_set[key]) {
737
+ value = S[key]
738
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
739
+ len += length(value) + length(field[++i])
740
+ substed = 1
741
+ } else
742
+ len += 1 + keylen
743
+ }
744
+
745
+ print line
746
+ }
747
+
748
+ _ACAWK
749
+ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
750
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
751
+ else
752
+ cat
753
+ fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
754
+ || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5
755
+ $as_echo "$as_me: error: could not setup config files machinery" >&2;}
756
+ { (exit 1); exit 1; }; }
757
+ fi # test -n "$CONFIG_FILES"
758
+
759
+ # Set up the scripts for CONFIG_HEADERS section.
760
+ # No need to generate them if there are no CONFIG_HEADERS.
761
+ # This happens for instance with `./config.status Makefile'.
762
+ if test -n "$CONFIG_HEADERS"; then
763
+ cat >"$tmp/defines.awk" <<\_ACAWK ||
764
+ BEGIN {
765
+ D["PACKAGE_NAME"]=" \"xapian-bindings\""
766
+ D["PACKAGE_TARNAME"]=" \"xapian-bindings\""
767
+ D["PACKAGE_VERSION"]=" \"1.0.18\""
768
+ D["PACKAGE_STRING"]=" \"xapian-bindings 1.0.18\""
769
+ D["PACKAGE_BUGREPORT"]=" \"http://xapian.org/bugs\""
770
+ D["PACKAGE"]=" \"xapian-bindings\""
771
+ D["VERSION"]=" \"1.0.18\""
772
+ D["STDC_HEADERS"]=" 1"
773
+ D["HAVE_SYS_TYPES_H"]=" 1"
774
+ D["HAVE_SYS_STAT_H"]=" 1"
775
+ D["HAVE_STDLIB_H"]=" 1"
776
+ D["HAVE_STRING_H"]=" 1"
777
+ D["HAVE_MEMORY_H"]=" 1"
778
+ D["HAVE_STRINGS_H"]=" 1"
779
+ D["HAVE_INTTYPES_H"]=" 1"
780
+ D["HAVE_STDINT_H"]=" 1"
781
+ D["HAVE_UNISTD_H"]=" 1"
782
+ D["HAVE_DLFCN_H"]=" 1"
783
+ for (key in D) D_is_set[key] = 1
784
+ FS = ""
785
+ }
786
+ /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
787
+ line = $ 0
788
+ split(line, arg, " ")
789
+ if (arg[1] == "#") {
790
+ defundef = arg[2]
791
+ mac1 = arg[3]
792
+ } else {
793
+ defundef = substr(arg[1], 2)
794
+ mac1 = arg[2]
795
+ }
796
+ split(mac1, mac2, "(") #)
797
+ macro = mac2[1]
798
+ prefix = substr(line, 1, index(line, defundef) - 1)
799
+ if (D_is_set[macro]) {
800
+ # Preserve the white space surrounding the "#".
801
+ print prefix "define", macro P[macro] D[macro]
802
+ next
803
+ } else {
804
+ # Replace #undef with comments. This is necessary, for example,
805
+ # in the case of _POSIX_SOURCE, which is predefined and required
806
+ # on some systems where configure will not decide to define it.
807
+ if (defundef == "undef") {
808
+ print "/*", prefix defundef, macro, "*/"
809
+ next
810
+ }
811
+ }
812
+ }
813
+ { print }
814
+ _ACAWK
815
+ { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5
816
+ $as_echo "$as_me: error: could not setup config headers machinery" >&2;}
817
+ { (exit 1); exit 1; }; }
818
+ fi # test -n "$CONFIG_HEADERS"
819
+
820
+
821
+ eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
822
+ shift
823
+ for ac_tag
824
+ do
825
+ case $ac_tag in
826
+ :[FHLC]) ac_mode=$ac_tag; continue;;
827
+ esac
828
+ case $ac_mode$ac_tag in
829
+ :[FHL]*:*);;
830
+ :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
831
+ $as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
832
+ { (exit 1); exit 1; }; };;
833
+ :[FH]-) ac_tag=-:-;;
834
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
835
+ esac
836
+ ac_save_IFS=$IFS
837
+ IFS=:
838
+ set x $ac_tag
839
+ IFS=$ac_save_IFS
840
+ shift
841
+ ac_file=$1
842
+ shift
843
+
844
+ case $ac_mode in
845
+ :L) ac_source=$1;;
846
+ :[FH])
847
+ ac_file_inputs=
848
+ for ac_f
849
+ do
850
+ case $ac_f in
851
+ -) ac_f="$tmp/stdin";;
852
+ *) # Look for the file first in the build tree, then in the source tree
853
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
854
+ # because $ac_f cannot contain `:'.
855
+ test -f "$ac_f" ||
856
+ case $ac_f in
857
+ [\\/$]*) false;;
858
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
859
+ esac ||
860
+ { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
861
+ $as_echo "$as_me: error: cannot find input file: $ac_f" >&2;}
862
+ { (exit 1); exit 1; }; };;
863
+ esac
864
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
865
+ ac_file_inputs="$ac_file_inputs '$ac_f'"
866
+ done
867
+
868
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
869
+ # use $as_me), people would be surprised to read:
870
+ # /* config.h. Generated by config.status. */
871
+ configure_input='Generated from '`
872
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
873
+ `' by configure.'
874
+ if test x"$ac_file" != x-; then
875
+ configure_input="$ac_file. $configure_input"
876
+ { $as_echo "$as_me:$LINENO: creating $ac_file" >&5
877
+ $as_echo "$as_me: creating $ac_file" >&6;}
878
+ fi
879
+ # Neutralize special characters interpreted by sed in replacement strings.
880
+ case $configure_input in #(
881
+ *\&* | *\|* | *\\* )
882
+ ac_sed_conf_input=`$as_echo "$configure_input" |
883
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
884
+ *) ac_sed_conf_input=$configure_input;;
885
+ esac
886
+
887
+ case $ac_tag in
888
+ *:-:* | *:-) cat >"$tmp/stdin" \
889
+ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
890
+ $as_echo "$as_me: error: could not create $ac_file" >&2;}
891
+ { (exit 1); exit 1; }; } ;;
892
+ esac
893
+ ;;
894
+ esac
895
+
896
+ ac_dir=`$as_dirname -- "$ac_file" ||
897
+ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
898
+ X"$ac_file" : 'X\(//\)[^/]' \| \
899
+ X"$ac_file" : 'X\(//\)$' \| \
900
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
901
+ $as_echo X"$ac_file" |
902
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
903
+ s//\1/
904
+ q
905
+ }
906
+ /^X\(\/\/\)[^/].*/{
907
+ s//\1/
908
+ q
909
+ }
910
+ /^X\(\/\/\)$/{
911
+ s//\1/
912
+ q
913
+ }
914
+ /^X\(\/\).*/{
915
+ s//\1/
916
+ q
917
+ }
918
+ s/.*/./; q'`
919
+ { as_dir="$ac_dir"
920
+ case $as_dir in #(
921
+ -*) as_dir=./$as_dir;;
922
+ esac
923
+ test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
924
+ as_dirs=
925
+ while :; do
926
+ case $as_dir in #(
927
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
928
+ *) as_qdir=$as_dir;;
929
+ esac
930
+ as_dirs="'$as_qdir' $as_dirs"
931
+ as_dir=`$as_dirname -- "$as_dir" ||
932
+ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
933
+ X"$as_dir" : 'X\(//\)[^/]' \| \
934
+ X"$as_dir" : 'X\(//\)$' \| \
935
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
936
+ $as_echo X"$as_dir" |
937
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
938
+ s//\1/
939
+ q
940
+ }
941
+ /^X\(\/\/\)[^/].*/{
942
+ s//\1/
943
+ q
944
+ }
945
+ /^X\(\/\/\)$/{
946
+ s//\1/
947
+ q
948
+ }
949
+ /^X\(\/\).*/{
950
+ s//\1/
951
+ q
952
+ }
953
+ s/.*/./; q'`
954
+ test -d "$as_dir" && break
955
+ done
956
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
957
+ } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
958
+ $as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
959
+ { (exit 1); exit 1; }; }; }
960
+ ac_builddir=.
961
+
962
+ case "$ac_dir" in
963
+ .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
964
+ *)
965
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
966
+ # A ".." for each directory in $ac_dir_suffix.
967
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
968
+ case $ac_top_builddir_sub in
969
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
970
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
971
+ esac ;;
972
+ esac
973
+ ac_abs_top_builddir=$ac_pwd
974
+ ac_abs_builddir=$ac_pwd$ac_dir_suffix
975
+ # for backward compatibility:
976
+ ac_top_builddir=$ac_top_build_prefix
977
+
978
+ case $srcdir in
979
+ .) # We are building in place.
980
+ ac_srcdir=.
981
+ ac_top_srcdir=$ac_top_builddir_sub
982
+ ac_abs_top_srcdir=$ac_pwd ;;
983
+ [\\/]* | ?:[\\/]* ) # Absolute name.
984
+ ac_srcdir=$srcdir$ac_dir_suffix;
985
+ ac_top_srcdir=$srcdir
986
+ ac_abs_top_srcdir=$srcdir ;;
987
+ *) # Relative name.
988
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
989
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
990
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
991
+ esac
992
+ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
993
+
994
+
995
+ case $ac_mode in
996
+ :F)
997
+ #
998
+ # CONFIG_FILE
999
+ #
1000
+
1001
+ case $INSTALL in
1002
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1003
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1004
+ esac
1005
+ ac_MKDIR_P=$MKDIR_P
1006
+ case $MKDIR_P in
1007
+ [\\/$]* | ?:[\\/]* ) ;;
1008
+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
1009
+ esac
1010
+ # If the template does not know about datarootdir, expand it.
1011
+ # FIXME: This hack should be removed a few years after 2.60.
1012
+ ac_datarootdir_hack=; ac_datarootdir_seen=
1013
+
1014
+ ac_sed_dataroot='
1015
+ /datarootdir/ {
1016
+ p
1017
+ q
1018
+ }
1019
+ /@datadir@/p
1020
+ /@docdir@/p
1021
+ /@infodir@/p
1022
+ /@localedir@/p
1023
+ /@mandir@/p
1024
+ '
1025
+ case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1026
+ *datarootdir*) ac_datarootdir_seen=yes;;
1027
+ *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1028
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1029
+ $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1030
+ ac_datarootdir_hack='
1031
+ s&@datadir@&${datarootdir}&g
1032
+ s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1033
+ s&@infodir@&${datarootdir}/info&g
1034
+ s&@localedir@&${datarootdir}/locale&g
1035
+ s&@mandir@&${datarootdir}/man&g
1036
+ s&\${datarootdir}&${prefix}/share&g' ;;
1037
+ esac
1038
+ ac_sed_extra="/^[ ]*VPATH[ ]*=/{
1039
+ s/:*\$(srcdir):*/:/
1040
+ s/:*\${srcdir}:*/:/
1041
+ s/:*@srcdir@:*/:/
1042
+ s/^\([^=]*=[ ]*\):*/\1/
1043
+ s/:*$//
1044
+ s/^[^=]*=[ ]*$//
1045
+ }
1046
+
1047
+ :t
1048
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1049
+ s|@configure_input@|$ac_sed_conf_input|;t t
1050
+ s&@top_builddir@&$ac_top_builddir_sub&;t t
1051
+ s&@top_build_prefix@&$ac_top_build_prefix&;t t
1052
+ s&@srcdir@&$ac_srcdir&;t t
1053
+ s&@abs_srcdir@&$ac_abs_srcdir&;t t
1054
+ s&@top_srcdir@&$ac_top_srcdir&;t t
1055
+ s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1056
+ s&@builddir@&$ac_builddir&;t t
1057
+ s&@abs_builddir@&$ac_abs_builddir&;t t
1058
+ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1059
+ s&@INSTALL@&$ac_INSTALL&;t t
1060
+ s&@MKDIR_P@&$ac_MKDIR_P&;t t
1061
+ $ac_datarootdir_hack
1062
+ "
1063
+ eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
1064
+ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
1065
+ $as_echo "$as_me: error: could not create $ac_file" >&2;}
1066
+ { (exit 1); exit 1; }; }
1067
+
1068
+ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1069
+ { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
1070
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
1071
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1072
+ which seems to be undefined. Please make sure it is defined." >&5
1073
+ $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1074
+ which seems to be undefined. Please make sure it is defined." >&2;}
1075
+
1076
+ rm -f "$tmp/stdin"
1077
+ case $ac_file in
1078
+ -) cat "$tmp/out" && rm -f "$tmp/out";;
1079
+ *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
1080
+ esac \
1081
+ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
1082
+ $as_echo "$as_me: error: could not create $ac_file" >&2;}
1083
+ { (exit 1); exit 1; }; }
1084
+ ;;
1085
+ :H)
1086
+ #
1087
+ # CONFIG_HEADER
1088
+ #
1089
+ if test x"$ac_file" != x-; then
1090
+ {
1091
+ $as_echo "/* $configure_input */" \
1092
+ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
1093
+ } >"$tmp/config.h" \
1094
+ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
1095
+ $as_echo "$as_me: error: could not create $ac_file" >&2;}
1096
+ { (exit 1); exit 1; }; }
1097
+ if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
1098
+ { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5
1099
+ $as_echo "$as_me: $ac_file is unchanged" >&6;}
1100
+ else
1101
+ rm -f "$ac_file"
1102
+ mv "$tmp/config.h" "$ac_file" \
1103
+ || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
1104
+ $as_echo "$as_me: error: could not create $ac_file" >&2;}
1105
+ { (exit 1); exit 1; }; }
1106
+ fi
1107
+ else
1108
+ $as_echo "/* $configure_input */" \
1109
+ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
1110
+ || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5
1111
+ $as_echo "$as_me: error: could not create -" >&2;}
1112
+ { (exit 1); exit 1; }; }
1113
+ fi
1114
+ # Compute "$ac_file"'s index in $config_headers.
1115
+ _am_arg="$ac_file"
1116
+ _am_stamp_count=1
1117
+ for _am_header in $config_headers :; do
1118
+ case $_am_header in
1119
+ $_am_arg | $_am_arg:* )
1120
+ break ;;
1121
+ * )
1122
+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1123
+ esac
1124
+ done
1125
+ echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
1126
+ $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1127
+ X"$_am_arg" : 'X\(//\)[^/]' \| \
1128
+ X"$_am_arg" : 'X\(//\)$' \| \
1129
+ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1130
+ $as_echo X"$_am_arg" |
1131
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1132
+ s//\1/
1133
+ q
1134
+ }
1135
+ /^X\(\/\/\)[^/].*/{
1136
+ s//\1/
1137
+ q
1138
+ }
1139
+ /^X\(\/\/\)$/{
1140
+ s//\1/
1141
+ q
1142
+ }
1143
+ /^X\(\/\).*/{
1144
+ s//\1/
1145
+ q
1146
+ }
1147
+ s/.*/./; q'`/stamp-h$_am_stamp_count
1148
+ ;;
1149
+
1150
+ :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5
1151
+ $as_echo "$as_me: executing $ac_file commands" >&6;}
1152
+ ;;
1153
+ esac
1154
+
1155
+
1156
+ case $ac_file$ac_mode in
1157
+ "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
1158
+ # Autoconf 2.62 quotes --file arguments for eval, but not when files
1159
+ # are listed without --file. Let's play safe and only enable the eval
1160
+ # if we detect the quoting.
1161
+ case $CONFIG_FILES in
1162
+ *\'*) eval set x "$CONFIG_FILES" ;;
1163
+ *) set x $CONFIG_FILES ;;
1164
+ esac
1165
+ shift
1166
+ for mf
1167
+ do
1168
+ # Strip MF so we end up with the name of the file.
1169
+ mf=`echo "$mf" | sed -e 's/:.*$//'`
1170
+ # Check whether this is an Automake generated Makefile or not.
1171
+ # We used to match only the files named `Makefile.in', but
1172
+ # some people rename them; so instead we look at the file content.
1173
+ # Grep'ing the first line is not enough: some people post-process
1174
+ # each Makefile.in and add a new line on top of each file to say so.
1175
+ # Grep'ing the whole file is not good either: AIX grep has a line
1176
+ # limit of 2048, but all sed's we know have understand at least 4000.
1177
+ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1178
+ dirpart=`$as_dirname -- "$mf" ||
1179
+ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1180
+ X"$mf" : 'X\(//\)[^/]' \| \
1181
+ X"$mf" : 'X\(//\)$' \| \
1182
+ X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1183
+ $as_echo X"$mf" |
1184
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1185
+ s//\1/
1186
+ q
1187
+ }
1188
+ /^X\(\/\/\)[^/].*/{
1189
+ s//\1/
1190
+ q
1191
+ }
1192
+ /^X\(\/\/\)$/{
1193
+ s//\1/
1194
+ q
1195
+ }
1196
+ /^X\(\/\).*/{
1197
+ s//\1/
1198
+ q
1199
+ }
1200
+ s/.*/./; q'`
1201
+ else
1202
+ continue
1203
+ fi
1204
+ # Extract the definition of DEPDIR, am__include, and am__quote
1205
+ # from the Makefile without running `make'.
1206
+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1207
+ test -z "$DEPDIR" && continue
1208
+ am__include=`sed -n 's/^am__include = //p' < "$mf"`
1209
+ test -z "am__include" && continue
1210
+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1211
+ # When using ansi2knr, U may be empty or an underscore; expand it
1212
+ U=`sed -n 's/^U = //p' < "$mf"`
1213
+ # Find all dependency output files, they are included files with
1214
+ # $(DEPDIR) in their names. We invoke sed twice because it is the
1215
+ # simplest approach to changing $(DEPDIR) to its actual value in the
1216
+ # expansion.
1217
+ for file in `sed -n "
1218
+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1219
+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
1220
+ # Make sure the directory exists.
1221
+ test -f "$dirpart/$file" && continue
1222
+ fdir=`$as_dirname -- "$file" ||
1223
+ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1224
+ X"$file" : 'X\(//\)[^/]' \| \
1225
+ X"$file" : 'X\(//\)$' \| \
1226
+ X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1227
+ $as_echo X"$file" |
1228
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1229
+ s//\1/
1230
+ q
1231
+ }
1232
+ /^X\(\/\/\)[^/].*/{
1233
+ s//\1/
1234
+ q
1235
+ }
1236
+ /^X\(\/\/\)$/{
1237
+ s//\1/
1238
+ q
1239
+ }
1240
+ /^X\(\/\).*/{
1241
+ s//\1/
1242
+ q
1243
+ }
1244
+ s/.*/./; q'`
1245
+ { as_dir=$dirpart/$fdir
1246
+ case $as_dir in #(
1247
+ -*) as_dir=./$as_dir;;
1248
+ esac
1249
+ test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
1250
+ as_dirs=
1251
+ while :; do
1252
+ case $as_dir in #(
1253
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
1254
+ *) as_qdir=$as_dir;;
1255
+ esac
1256
+ as_dirs="'$as_qdir' $as_dirs"
1257
+ as_dir=`$as_dirname -- "$as_dir" ||
1258
+ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1259
+ X"$as_dir" : 'X\(//\)[^/]' \| \
1260
+ X"$as_dir" : 'X\(//\)$' \| \
1261
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
1262
+ $as_echo X"$as_dir" |
1263
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1264
+ s//\1/
1265
+ q
1266
+ }
1267
+ /^X\(\/\/\)[^/].*/{
1268
+ s//\1/
1269
+ q
1270
+ }
1271
+ /^X\(\/\/\)$/{
1272
+ s//\1/
1273
+ q
1274
+ }
1275
+ /^X\(\/\).*/{
1276
+ s//\1/
1277
+ q
1278
+ }
1279
+ s/.*/./; q'`
1280
+ test -d "$as_dir" && break
1281
+ done
1282
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
1283
+ } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
1284
+ $as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
1285
+ { (exit 1); exit 1; }; }; }
1286
+ # echo "creating $dirpart/$file"
1287
+ echo '# dummy' > "$dirpart/$file"
1288
+ done
1289
+ done
1290
+ }
1291
+ ;;
1292
+ "python/generate-python-exceptions":F) chmod +x python/generate-python-exceptions ;;
1293
+
1294
+ esac
1295
+ done # for ac_tag
1296
+
1297
+
1298
+ { (exit 0); exit 0; }