isbn 1.4.1

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 (291) hide show
  1. data/.gitignore +4 -0
  2. data/README +9 -0
  3. data/Rakefile +13 -0
  4. data/VERSION +1 -0
  5. data/isbn.gemspec +329 -0
  6. data/lib/isbn.rb +90 -0
  7. data/src/gocr-0.48/.cvsignore +6 -0
  8. data/src/gocr-0.48/AUTHORS +7 -0
  9. data/src/gocr-0.48/BUGS +55 -0
  10. data/src/gocr-0.48/CREDITS +17 -0
  11. data/src/gocr-0.48/HISTORY +243 -0
  12. data/src/gocr-0.48/INSTALL +83 -0
  13. data/src/gocr-0.48/Makefile +193 -0
  14. data/src/gocr-0.48/Makefile.in +193 -0
  15. data/src/gocr-0.48/README +165 -0
  16. data/src/gocr-0.48/READMEde.txt +80 -0
  17. data/src/gocr-0.48/REMARK.txt +18 -0
  18. data/src/gocr-0.48/REVIEW +538 -0
  19. data/src/gocr-0.48/TODO +65 -0
  20. data/src/gocr-0.48/bin/.cvsignore +2 -0
  21. data/src/gocr-0.48/bin/create_db +38 -0
  22. data/src/gocr-0.48/bin/gocr.tcl +527 -0
  23. data/src/gocr-0.48/bin/gocr_chk.sh +44 -0
  24. data/src/gocr-0.48/configure +4689 -0
  25. data/src/gocr-0.48/configure.in +71 -0
  26. data/src/gocr-0.48/doc/.#Makefile.1.6 +39 -0
  27. data/src/gocr-0.48/doc/.cvsignore +2 -0
  28. data/src/gocr-0.48/doc/Makefile +39 -0
  29. data/src/gocr-0.48/doc/Makefile.in +39 -0
  30. data/src/gocr-0.48/doc/example.dtd +53 -0
  31. data/src/gocr-0.48/doc/example.xml +21 -0
  32. data/src/gocr-0.48/doc/examples.txt +67 -0
  33. data/src/gocr-0.48/doc/gocr.html +578 -0
  34. data/src/gocr-0.48/doc/unicode.txt +57 -0
  35. data/src/gocr-0.48/examples/.#Makefile.1.22 +166 -0
  36. data/src/gocr-0.48/examples/4x6.png +0 -0
  37. data/src/gocr-0.48/examples/4x6.txt +2 -0
  38. data/src/gocr-0.48/examples/5x7.png +0 -0
  39. data/src/gocr-0.48/examples/5x7.png.txt +2 -0
  40. data/src/gocr-0.48/examples/5x8.png +0 -0
  41. data/src/gocr-0.48/examples/5x8.png.txt +2 -0
  42. data/src/gocr-0.48/examples/Makefile +166 -0
  43. data/src/gocr-0.48/examples/color.fig +20 -0
  44. data/src/gocr-0.48/examples/ex.fig +16 -0
  45. data/src/gocr-0.48/examples/font.tex +22 -0
  46. data/src/gocr-0.48/examples/font1.tex +46 -0
  47. data/src/gocr-0.48/examples/font2.fig +27 -0
  48. data/src/gocr-0.48/examples/font_nw.tex +24 -0
  49. data/src/gocr-0.48/examples/handwrt1.jpg +0 -0
  50. data/src/gocr-0.48/examples/handwrt1.txt +10 -0
  51. data/src/gocr-0.48/examples/inverse.fig +20 -0
  52. data/src/gocr-0.48/examples/matrix.jpg +0 -0
  53. data/src/gocr-0.48/examples/ocr-a-subset.png +0 -0
  54. data/src/gocr-0.48/examples/ocr-a-subset.png.txt +4 -0
  55. data/src/gocr-0.48/examples/ocr-a.png +0 -0
  56. data/src/gocr-0.48/examples/ocr-a.txt +6 -0
  57. data/src/gocr-0.48/examples/ocr-b.png +0 -0
  58. data/src/gocr-0.48/examples/ocr-b.png.txt +4 -0
  59. data/src/gocr-0.48/examples/polish.tex +28 -0
  60. data/src/gocr-0.48/examples/rotate45.fig +14 -0
  61. data/src/gocr-0.48/examples/score +36 -0
  62. data/src/gocr-0.48/examples/text.tex +28 -0
  63. data/src/gocr-0.48/gocr.spec +143 -0
  64. data/src/gocr-0.48/gpl.html +537 -0
  65. data/src/gocr-0.48/include/.cvsignore +2 -0
  66. data/src/gocr-0.48/include/config.h +36 -0
  67. data/src/gocr-0.48/include/config.h.in +36 -0
  68. data/src/gocr-0.48/include/version.h +2 -0
  69. data/src/gocr-0.48/install-sh +3 -0
  70. data/src/gocr-0.48/make.bat +57 -0
  71. data/src/gocr-0.48/man/.cvsignore +2 -0
  72. data/src/gocr-0.48/man/Makefile +29 -0
  73. data/src/gocr-0.48/man/Makefile.in +29 -0
  74. data/src/gocr-0.48/man/man1/gocr.1 +166 -0
  75. data/src/gocr-0.48/src/.cvsignore +4 -0
  76. data/src/gocr-0.48/src/Makefile +132 -0
  77. data/src/gocr-0.48/src/Makefile.in +132 -0
  78. data/src/gocr-0.48/src/amiga.h +31 -0
  79. data/src/gocr-0.48/src/barcode.c +846 -0
  80. data/src/gocr-0.48/src/barcode.c.orig +593 -0
  81. data/src/gocr-0.48/src/barcode.h +11 -0
  82. data/src/gocr-0.48/src/box.c +372 -0
  83. data/src/gocr-0.48/src/database.c +462 -0
  84. data/src/gocr-0.48/src/detect.c +943 -0
  85. data/src/gocr-0.48/src/gocr.c +373 -0
  86. data/src/gocr-0.48/src/gocr.h +288 -0
  87. data/src/gocr-0.48/src/jconv.c +168 -0
  88. data/src/gocr-0.48/src/job.c +84 -0
  89. data/src/gocr-0.48/src/lines.c +350 -0
  90. data/src/gocr-0.48/src/list.c +334 -0
  91. data/src/gocr-0.48/src/list.h +90 -0
  92. data/src/gocr-0.48/src/ocr0.c +6756 -0
  93. data/src/gocr-0.48/src/ocr0.h +63 -0
  94. data/src/gocr-0.48/src/ocr0n.c +1475 -0
  95. data/src/gocr-0.48/src/ocr1.c +85 -0
  96. data/src/gocr-0.48/src/ocr1.h +3 -0
  97. data/src/gocr-0.48/src/otsu.c +289 -0
  98. data/src/gocr-0.48/src/otsu.h +23 -0
  99. data/src/gocr-0.48/src/output.c +289 -0
  100. data/src/gocr-0.48/src/output.h +37 -0
  101. data/src/gocr-0.48/src/pcx.c +153 -0
  102. data/src/gocr-0.48/src/pcx.h +9 -0
  103. data/src/gocr-0.48/src/pgm2asc.c +2893 -0
  104. data/src/gocr-0.48/src/pgm2asc.h +105 -0
  105. data/src/gocr-0.48/src/pixel.c +537 -0
  106. data/src/gocr-0.48/src/pnm.c +533 -0
  107. data/src/gocr-0.48/src/pnm.h +35 -0
  108. data/src/gocr-0.48/src/progress.c +87 -0
  109. data/src/gocr-0.48/src/progress.h +42 -0
  110. data/src/gocr-0.48/src/remove.c +703 -0
  111. data/src/gocr-0.48/src/tga.c +87 -0
  112. data/src/gocr-0.48/src/tga.h +6 -0
  113. data/src/gocr-0.48/src/unicode.c +1314 -0
  114. data/src/gocr-0.48/src/unicode.h +1257 -0
  115. data/src/jpeg-7/Makefile.am +133 -0
  116. data/src/jpeg-7/Makefile.in +1089 -0
  117. data/src/jpeg-7/README +322 -0
  118. data/src/jpeg-7/aclocal.m4 +8990 -0
  119. data/src/jpeg-7/ansi2knr.1 +36 -0
  120. data/src/jpeg-7/ansi2knr.c +739 -0
  121. data/src/jpeg-7/cderror.h +132 -0
  122. data/src/jpeg-7/cdjpeg.c +181 -0
  123. data/src/jpeg-7/cdjpeg.h +187 -0
  124. data/src/jpeg-7/change.log +270 -0
  125. data/src/jpeg-7/cjpeg.1 +325 -0
  126. data/src/jpeg-7/cjpeg.c +616 -0
  127. data/src/jpeg-7/ckconfig.c +402 -0
  128. data/src/jpeg-7/coderules.txt +118 -0
  129. data/src/jpeg-7/config.guess +1561 -0
  130. data/src/jpeg-7/config.sub +1686 -0
  131. data/src/jpeg-7/configure +17139 -0
  132. data/src/jpeg-7/configure.ac +317 -0
  133. data/src/jpeg-7/depcomp +630 -0
  134. data/src/jpeg-7/djpeg.1 +251 -0
  135. data/src/jpeg-7/djpeg.c +617 -0
  136. data/src/jpeg-7/example.c +433 -0
  137. data/src/jpeg-7/filelist.txt +215 -0
  138. data/src/jpeg-7/install-sh +520 -0
  139. data/src/jpeg-7/install.txt +1097 -0
  140. data/src/jpeg-7/jaricom.c +148 -0
  141. data/src/jpeg-7/jcapimin.c +282 -0
  142. data/src/jpeg-7/jcapistd.c +161 -0
  143. data/src/jpeg-7/jcarith.c +921 -0
  144. data/src/jpeg-7/jccoefct.c +453 -0
  145. data/src/jpeg-7/jccolor.c +459 -0
  146. data/src/jpeg-7/jcdctmgr.c +482 -0
  147. data/src/jpeg-7/jchuff.c +1612 -0
  148. data/src/jpeg-7/jcinit.c +65 -0
  149. data/src/jpeg-7/jcmainct.c +293 -0
  150. data/src/jpeg-7/jcmarker.c +667 -0
  151. data/src/jpeg-7/jcmaster.c +770 -0
  152. data/src/jpeg-7/jcomapi.c +106 -0
  153. data/src/jpeg-7/jconfig.bcc +48 -0
  154. data/src/jpeg-7/jconfig.cfg +45 -0
  155. data/src/jpeg-7/jconfig.dj +38 -0
  156. data/src/jpeg-7/jconfig.mac +43 -0
  157. data/src/jpeg-7/jconfig.manx +43 -0
  158. data/src/jpeg-7/jconfig.mc6 +52 -0
  159. data/src/jpeg-7/jconfig.sas +43 -0
  160. data/src/jpeg-7/jconfig.st +42 -0
  161. data/src/jpeg-7/jconfig.txt +155 -0
  162. data/src/jpeg-7/jconfig.vc +45 -0
  163. data/src/jpeg-7/jconfig.vms +37 -0
  164. data/src/jpeg-7/jconfig.wat +38 -0
  165. data/src/jpeg-7/jcparam.c +632 -0
  166. data/src/jpeg-7/jcprepct.c +358 -0
  167. data/src/jpeg-7/jcsample.c +545 -0
  168. data/src/jpeg-7/jctrans.c +381 -0
  169. data/src/jpeg-7/jdapimin.c +396 -0
  170. data/src/jpeg-7/jdapistd.c +275 -0
  171. data/src/jpeg-7/jdarith.c +762 -0
  172. data/src/jpeg-7/jdatadst.c +151 -0
  173. data/src/jpeg-7/jdatasrc.c +212 -0
  174. data/src/jpeg-7/jdcoefct.c +736 -0
  175. data/src/jpeg-7/jdcolor.c +396 -0
  176. data/src/jpeg-7/jdct.h +393 -0
  177. data/src/jpeg-7/jddctmgr.c +382 -0
  178. data/src/jpeg-7/jdhuff.c +1309 -0
  179. data/src/jpeg-7/jdinput.c +384 -0
  180. data/src/jpeg-7/jdmainct.c +512 -0
  181. data/src/jpeg-7/jdmarker.c +1360 -0
  182. data/src/jpeg-7/jdmaster.c +663 -0
  183. data/src/jpeg-7/jdmerge.c +400 -0
  184. data/src/jpeg-7/jdpostct.c +290 -0
  185. data/src/jpeg-7/jdsample.c +361 -0
  186. data/src/jpeg-7/jdtrans.c +136 -0
  187. data/src/jpeg-7/jerror.c +252 -0
  188. data/src/jpeg-7/jerror.h +304 -0
  189. data/src/jpeg-7/jfdctflt.c +174 -0
  190. data/src/jpeg-7/jfdctfst.c +230 -0
  191. data/src/jpeg-7/jfdctint.c +4348 -0
  192. data/src/jpeg-7/jidctflt.c +242 -0
  193. data/src/jpeg-7/jidctfst.c +368 -0
  194. data/src/jpeg-7/jidctint.c +5137 -0
  195. data/src/jpeg-7/jinclude.h +91 -0
  196. data/src/jpeg-7/jmemansi.c +167 -0
  197. data/src/jpeg-7/jmemdos.c +638 -0
  198. data/src/jpeg-7/jmemdosa.asm +379 -0
  199. data/src/jpeg-7/jmemmac.c +289 -0
  200. data/src/jpeg-7/jmemmgr.c +1118 -0
  201. data/src/jpeg-7/jmemname.c +276 -0
  202. data/src/jpeg-7/jmemnobs.c +109 -0
  203. data/src/jpeg-7/jmemsys.h +198 -0
  204. data/src/jpeg-7/jmorecfg.h +369 -0
  205. data/src/jpeg-7/jpegint.h +395 -0
  206. data/src/jpeg-7/jpeglib.h +1135 -0
  207. data/src/jpeg-7/jpegtran.1 +272 -0
  208. data/src/jpeg-7/jpegtran.c +546 -0
  209. data/src/jpeg-7/jquant1.c +856 -0
  210. data/src/jpeg-7/jquant2.c +1310 -0
  211. data/src/jpeg-7/jutils.c +179 -0
  212. data/src/jpeg-7/jversion.h +14 -0
  213. data/src/jpeg-7/libjpeg.map +4 -0
  214. data/src/jpeg-7/libjpeg.txt +3067 -0
  215. data/src/jpeg-7/ltmain.sh +8406 -0
  216. data/src/jpeg-7/makcjpeg.st +36 -0
  217. data/src/jpeg-7/makdjpeg.st +36 -0
  218. data/src/jpeg-7/makeadsw.vc6 +77 -0
  219. data/src/jpeg-7/makeasln.vc9 +33 -0
  220. data/src/jpeg-7/makecdep.vc6 +82 -0
  221. data/src/jpeg-7/makecdsp.vc6 +130 -0
  222. data/src/jpeg-7/makecmak.vc6 +159 -0
  223. data/src/jpeg-7/makecvcp.vc9 +186 -0
  224. data/src/jpeg-7/makeddep.vc6 +82 -0
  225. data/src/jpeg-7/makeddsp.vc6 +130 -0
  226. data/src/jpeg-7/makedmak.vc6 +159 -0
  227. data/src/jpeg-7/makedvcp.vc9 +186 -0
  228. data/src/jpeg-7/makefile.ansi +220 -0
  229. data/src/jpeg-7/makefile.bcc +291 -0
  230. data/src/jpeg-7/makefile.dj +226 -0
  231. data/src/jpeg-7/makefile.manx +220 -0
  232. data/src/jpeg-7/makefile.mc6 +255 -0
  233. data/src/jpeg-7/makefile.mms +224 -0
  234. data/src/jpeg-7/makefile.sas +258 -0
  235. data/src/jpeg-7/makefile.unix +234 -0
  236. data/src/jpeg-7/makefile.vc +217 -0
  237. data/src/jpeg-7/makefile.vms +142 -0
  238. data/src/jpeg-7/makefile.wat +239 -0
  239. data/src/jpeg-7/makejdep.vc6 +423 -0
  240. data/src/jpeg-7/makejdsp.vc6 +285 -0
  241. data/src/jpeg-7/makejdsw.vc6 +29 -0
  242. data/src/jpeg-7/makejmak.vc6 +425 -0
  243. data/src/jpeg-7/makejsln.vc9 +17 -0
  244. data/src/jpeg-7/makejvcp.vc9 +328 -0
  245. data/src/jpeg-7/makeproj.mac +213 -0
  246. data/src/jpeg-7/makerdep.vc6 +6 -0
  247. data/src/jpeg-7/makerdsp.vc6 +78 -0
  248. data/src/jpeg-7/makermak.vc6 +110 -0
  249. data/src/jpeg-7/makervcp.vc9 +133 -0
  250. data/src/jpeg-7/maketdep.vc6 +43 -0
  251. data/src/jpeg-7/maketdsp.vc6 +122 -0
  252. data/src/jpeg-7/maketmak.vc6 +131 -0
  253. data/src/jpeg-7/maketvcp.vc9 +178 -0
  254. data/src/jpeg-7/makewdep.vc6 +6 -0
  255. data/src/jpeg-7/makewdsp.vc6 +78 -0
  256. data/src/jpeg-7/makewmak.vc6 +110 -0
  257. data/src/jpeg-7/makewvcp.vc9 +133 -0
  258. data/src/jpeg-7/makljpeg.st +68 -0
  259. data/src/jpeg-7/maktjpeg.st +30 -0
  260. data/src/jpeg-7/makvms.opt +4 -0
  261. data/src/jpeg-7/missing +376 -0
  262. data/src/jpeg-7/rdbmp.c +439 -0
  263. data/src/jpeg-7/rdcolmap.c +253 -0
  264. data/src/jpeg-7/rdgif.c +38 -0
  265. data/src/jpeg-7/rdjpgcom.1 +63 -0
  266. data/src/jpeg-7/rdjpgcom.c +515 -0
  267. data/src/jpeg-7/rdppm.c +459 -0
  268. data/src/jpeg-7/rdrle.c +387 -0
  269. data/src/jpeg-7/rdswitch.c +365 -0
  270. data/src/jpeg-7/rdtarga.c +500 -0
  271. data/src/jpeg-7/structure.txt +945 -0
  272. data/src/jpeg-7/testimg.bmp +0 -0
  273. data/src/jpeg-7/testimg.jpg +0 -0
  274. data/src/jpeg-7/testimg.ppm +4 -0
  275. data/src/jpeg-7/testimgp.jpg +0 -0
  276. data/src/jpeg-7/testorig.jpg +0 -0
  277. data/src/jpeg-7/testprog.jpg +0 -0
  278. data/src/jpeg-7/transupp.c +1533 -0
  279. data/src/jpeg-7/transupp.h +205 -0
  280. data/src/jpeg-7/usage.txt +605 -0
  281. data/src/jpeg-7/wizard.txt +211 -0
  282. data/src/jpeg-7/wrbmp.c +442 -0
  283. data/src/jpeg-7/wrgif.c +399 -0
  284. data/src/jpeg-7/wrjpgcom.1 +103 -0
  285. data/src/jpeg-7/wrjpgcom.c +583 -0
  286. data/src/jpeg-7/wrppm.c +269 -0
  287. data/src/jpeg-7/wrrle.c +305 -0
  288. data/src/jpeg-7/wrtarga.c +253 -0
  289. data/test/isbn_test.rb +7 -0
  290. data/test/test_helper.rb +7 -0
  291. metadata +345 -0
@@ -0,0 +1,106 @@
1
+ /*
2
+ * jcomapi.c
3
+ *
4
+ * Copyright (C) 1994-1997, Thomas G. Lane.
5
+ * This file is part of the Independent JPEG Group's software.
6
+ * For conditions of distribution and use, see the accompanying README file.
7
+ *
8
+ * This file contains application interface routines that are used for both
9
+ * compression and decompression.
10
+ */
11
+
12
+ #define JPEG_INTERNALS
13
+ #include "jinclude.h"
14
+ #include "jpeglib.h"
15
+
16
+
17
+ /*
18
+ * Abort processing of a JPEG compression or decompression operation,
19
+ * but don't destroy the object itself.
20
+ *
21
+ * For this, we merely clean up all the nonpermanent memory pools.
22
+ * Note that temp files (virtual arrays) are not allowed to belong to
23
+ * the permanent pool, so we will be able to close all temp files here.
24
+ * Closing a data source or destination, if necessary, is the application's
25
+ * responsibility.
26
+ */
27
+
28
+ GLOBAL(void)
29
+ jpeg_abort (j_common_ptr cinfo)
30
+ {
31
+ int pool;
32
+
33
+ /* Do nothing if called on a not-initialized or destroyed JPEG object. */
34
+ if (cinfo->mem == NULL)
35
+ return;
36
+
37
+ /* Releasing pools in reverse order might help avoid fragmentation
38
+ * with some (brain-damaged) malloc libraries.
39
+ */
40
+ for (pool = JPOOL_NUMPOOLS-1; pool > JPOOL_PERMANENT; pool--) {
41
+ (*cinfo->mem->free_pool) (cinfo, pool);
42
+ }
43
+
44
+ /* Reset overall state for possible reuse of object */
45
+ if (cinfo->is_decompressor) {
46
+ cinfo->global_state = DSTATE_START;
47
+ /* Try to keep application from accessing now-deleted marker list.
48
+ * A bit kludgy to do it here, but this is the most central place.
49
+ */
50
+ ((j_decompress_ptr) cinfo)->marker_list = NULL;
51
+ } else {
52
+ cinfo->global_state = CSTATE_START;
53
+ }
54
+ }
55
+
56
+
57
+ /*
58
+ * Destruction of a JPEG object.
59
+ *
60
+ * Everything gets deallocated except the master jpeg_compress_struct itself
61
+ * and the error manager struct. Both of these are supplied by the application
62
+ * and must be freed, if necessary, by the application. (Often they are on
63
+ * the stack and so don't need to be freed anyway.)
64
+ * Closing a data source or destination, if necessary, is the application's
65
+ * responsibility.
66
+ */
67
+
68
+ GLOBAL(void)
69
+ jpeg_destroy (j_common_ptr cinfo)
70
+ {
71
+ /* We need only tell the memory manager to release everything. */
72
+ /* NB: mem pointer is NULL if memory mgr failed to initialize. */
73
+ if (cinfo->mem != NULL)
74
+ (*cinfo->mem->self_destruct) (cinfo);
75
+ cinfo->mem = NULL; /* be safe if jpeg_destroy is called twice */
76
+ cinfo->global_state = 0; /* mark it destroyed */
77
+ }
78
+
79
+
80
+ /*
81
+ * Convenience routines for allocating quantization and Huffman tables.
82
+ * (Would jutils.c be a more reasonable place to put these?)
83
+ */
84
+
85
+ GLOBAL(JQUANT_TBL *)
86
+ jpeg_alloc_quant_table (j_common_ptr cinfo)
87
+ {
88
+ JQUANT_TBL *tbl;
89
+
90
+ tbl = (JQUANT_TBL *)
91
+ (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JQUANT_TBL));
92
+ tbl->sent_table = FALSE; /* make sure this is false in any new table */
93
+ return tbl;
94
+ }
95
+
96
+
97
+ GLOBAL(JHUFF_TBL *)
98
+ jpeg_alloc_huff_table (j_common_ptr cinfo)
99
+ {
100
+ JHUFF_TBL *tbl;
101
+
102
+ tbl = (JHUFF_TBL *)
103
+ (*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JHUFF_TBL));
104
+ tbl->sent_table = FALSE; /* make sure this is false in any new table */
105
+ return tbl;
106
+ }
@@ -0,0 +1,48 @@
1
+ /* jconfig.bcc --- jconfig.h for Borland C (Turbo C) on MS-DOS or OS/2. */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #define HAVE_PROTOTYPES
5
+ #define HAVE_UNSIGNED_CHAR
6
+ #define HAVE_UNSIGNED_SHORT
7
+ /* #define void char */
8
+ /* #define const */
9
+ #undef CHAR_IS_UNSIGNED
10
+ #define HAVE_STDDEF_H
11
+ #define HAVE_STDLIB_H
12
+ #undef NEED_BSD_STRINGS
13
+ #undef NEED_SYS_TYPES_H
14
+ #ifdef __MSDOS__
15
+ #define NEED_FAR_POINTERS /* for small or medium memory model */
16
+ #endif
17
+ #undef NEED_SHORT_EXTERNAL_NAMES
18
+ #undef INCOMPLETE_TYPES_BROKEN /* this assumes you have -w-stu in CFLAGS */
19
+
20
+ #ifdef JPEG_INTERNALS
21
+
22
+ #undef RIGHT_SHIFT_IS_UNSIGNED
23
+
24
+ #ifdef __MSDOS__
25
+ #define USE_MSDOS_MEMMGR /* Define this if you use jmemdos.c */
26
+ #define MAX_ALLOC_CHUNK 65520L /* Maximum request to malloc() */
27
+ #define USE_FMEM /* Borland has _fmemcpy() and _fmemset() */
28
+ #endif
29
+
30
+ #endif /* JPEG_INTERNALS */
31
+
32
+ #ifdef JPEG_CJPEG_DJPEG
33
+
34
+ #define BMP_SUPPORTED /* BMP image file format */
35
+ #define GIF_SUPPORTED /* GIF image file format */
36
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
37
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
38
+ #define TARGA_SUPPORTED /* Targa image file format */
39
+
40
+ #define TWO_FILE_COMMANDLINE
41
+ #define USE_SETMODE /* Borland has setmode() */
42
+ #ifdef __MSDOS__
43
+ #define NEED_SIGNAL_CATCHER /* Define this if you use jmemdos.c */
44
+ #endif
45
+ #undef DONT_USE_B_MODE
46
+ #undef PROGRESS_REPORT /* optional */
47
+
48
+ #endif /* JPEG_CJPEG_DJPEG */
@@ -0,0 +1,45 @@
1
+ /* jconfig.cfg --- source file edited by configure script */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #undef HAVE_PROTOTYPES
5
+ #undef HAVE_UNSIGNED_CHAR
6
+ #undef HAVE_UNSIGNED_SHORT
7
+ #undef void
8
+ #undef const
9
+ #undef CHAR_IS_UNSIGNED
10
+ #undef HAVE_STDDEF_H
11
+ #undef HAVE_STDLIB_H
12
+ #undef HAVE_LOCALE_H
13
+ #undef NEED_BSD_STRINGS
14
+ #undef NEED_SYS_TYPES_H
15
+ #undef NEED_FAR_POINTERS
16
+ #undef NEED_SHORT_EXTERNAL_NAMES
17
+ /* Define this if you get warnings about undefined structures. */
18
+ #undef INCOMPLETE_TYPES_BROKEN
19
+
20
+ #ifdef JPEG_INTERNALS
21
+
22
+ #undef RIGHT_SHIFT_IS_UNSIGNED
23
+ #undef INLINE
24
+ /* These are for configuring the JPEG memory manager. */
25
+ #undef DEFAULT_MAX_MEM
26
+ #undef NO_MKTEMP
27
+
28
+ #endif /* JPEG_INTERNALS */
29
+
30
+ #ifdef JPEG_CJPEG_DJPEG
31
+
32
+ #define BMP_SUPPORTED /* BMP image file format */
33
+ #define GIF_SUPPORTED /* GIF image file format */
34
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
35
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
36
+ #define TARGA_SUPPORTED /* Targa image file format */
37
+
38
+ #undef TWO_FILE_COMMANDLINE
39
+ #undef NEED_SIGNAL_CATCHER
40
+ #undef DONT_USE_B_MODE
41
+
42
+ /* Define this if you want percent-done progress reports from cjpeg/djpeg. */
43
+ #undef PROGRESS_REPORT
44
+
45
+ #endif /* JPEG_CJPEG_DJPEG */
@@ -0,0 +1,38 @@
1
+ /* jconfig.dj --- jconfig.h for DJGPP (Delorie's GNU C port) on MS-DOS. */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #define HAVE_PROTOTYPES
5
+ #define HAVE_UNSIGNED_CHAR
6
+ #define HAVE_UNSIGNED_SHORT
7
+ /* #define void char */
8
+ /* #define const */
9
+ #undef CHAR_IS_UNSIGNED
10
+ #define HAVE_STDDEF_H
11
+ #define HAVE_STDLIB_H
12
+ #undef NEED_BSD_STRINGS
13
+ #undef NEED_SYS_TYPES_H
14
+ #undef NEED_FAR_POINTERS /* DJGPP uses flat 32-bit addressing */
15
+ #undef NEED_SHORT_EXTERNAL_NAMES
16
+ #undef INCOMPLETE_TYPES_BROKEN
17
+
18
+ #ifdef JPEG_INTERNALS
19
+
20
+ #undef RIGHT_SHIFT_IS_UNSIGNED
21
+
22
+ #endif /* JPEG_INTERNALS */
23
+
24
+ #ifdef JPEG_CJPEG_DJPEG
25
+
26
+ #define BMP_SUPPORTED /* BMP image file format */
27
+ #define GIF_SUPPORTED /* GIF image file format */
28
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
29
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
30
+ #define TARGA_SUPPORTED /* Targa image file format */
31
+
32
+ #undef TWO_FILE_COMMANDLINE /* optional */
33
+ #define USE_SETMODE /* Needed to make one-file style work in DJGPP */
34
+ #undef NEED_SIGNAL_CATCHER /* Define this if you use jmemname.c */
35
+ #undef DONT_USE_B_MODE
36
+ #undef PROGRESS_REPORT /* optional */
37
+
38
+ #endif /* JPEG_CJPEG_DJPEG */
@@ -0,0 +1,43 @@
1
+ /* jconfig.mac --- jconfig.h for CodeWarrior on Apple Macintosh */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #define HAVE_PROTOTYPES
5
+ #define HAVE_UNSIGNED_CHAR
6
+ #define HAVE_UNSIGNED_SHORT
7
+ /* #define void char */
8
+ /* #define const */
9
+ #undef CHAR_IS_UNSIGNED
10
+ #define HAVE_STDDEF_H
11
+ #define HAVE_STDLIB_H
12
+ #undef NEED_BSD_STRINGS
13
+ #undef NEED_SYS_TYPES_H
14
+ #undef NEED_FAR_POINTERS
15
+ #undef NEED_SHORT_EXTERNAL_NAMES
16
+ #undef INCOMPLETE_TYPES_BROKEN
17
+
18
+ #ifdef JPEG_INTERNALS
19
+
20
+ #undef RIGHT_SHIFT_IS_UNSIGNED
21
+
22
+ #define USE_MAC_MEMMGR /* Define this if you use jmemmac.c */
23
+
24
+ #define ALIGN_TYPE long /* Needed for 680x0 Macs */
25
+
26
+ #endif /* JPEG_INTERNALS */
27
+
28
+ #ifdef JPEG_CJPEG_DJPEG
29
+
30
+ #define BMP_SUPPORTED /* BMP image file format */
31
+ #define GIF_SUPPORTED /* GIF image file format */
32
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
33
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
34
+ #define TARGA_SUPPORTED /* Targa image file format */
35
+
36
+ #define USE_CCOMMAND /* Command line reader for Macintosh */
37
+ #define TWO_FILE_COMMANDLINE /* Binary I/O thru stdin/stdout doesn't work */
38
+
39
+ #undef NEED_SIGNAL_CATCHER
40
+ #undef DONT_USE_B_MODE
41
+ #undef PROGRESS_REPORT /* optional */
42
+
43
+ #endif /* JPEG_CJPEG_DJPEG */
@@ -0,0 +1,43 @@
1
+ /* jconfig.manx --- jconfig.h for Amiga systems using Manx Aztec C ver 5.x. */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #define HAVE_PROTOTYPES
5
+ #define HAVE_UNSIGNED_CHAR
6
+ #define HAVE_UNSIGNED_SHORT
7
+ /* #define void char */
8
+ /* #define const */
9
+ #undef CHAR_IS_UNSIGNED
10
+ #define HAVE_STDDEF_H
11
+ #define HAVE_STDLIB_H
12
+ #undef NEED_BSD_STRINGS
13
+ #undef NEED_SYS_TYPES_H
14
+ #undef NEED_FAR_POINTERS
15
+ #undef NEED_SHORT_EXTERNAL_NAMES
16
+ #undef INCOMPLETE_TYPES_BROKEN
17
+
18
+ #ifdef JPEG_INTERNALS
19
+
20
+ #undef RIGHT_SHIFT_IS_UNSIGNED
21
+
22
+ #define TEMP_DIRECTORY "JPEGTMP:" /* recommended setting for Amiga */
23
+
24
+ #define SHORTxSHORT_32 /* produces better DCT code with Aztec C */
25
+
26
+ #endif /* JPEG_INTERNALS */
27
+
28
+ #ifdef JPEG_CJPEG_DJPEG
29
+
30
+ #define BMP_SUPPORTED /* BMP image file format */
31
+ #define GIF_SUPPORTED /* GIF image file format */
32
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
33
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
34
+ #define TARGA_SUPPORTED /* Targa image file format */
35
+
36
+ #define TWO_FILE_COMMANDLINE
37
+ #define NEED_SIGNAL_CATCHER
38
+ #undef DONT_USE_B_MODE
39
+ #undef PROGRESS_REPORT /* optional */
40
+
41
+ #define signal_catcher _abort /* hack for Aztec C naming requirements */
42
+
43
+ #endif /* JPEG_CJPEG_DJPEG */
@@ -0,0 +1,52 @@
1
+ /* jconfig.mc6 --- jconfig.h for Microsoft C on MS-DOS, version 6.00A & up. */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #define HAVE_PROTOTYPES
5
+ #define HAVE_UNSIGNED_CHAR
6
+ #define HAVE_UNSIGNED_SHORT
7
+ /* #define void char */
8
+ /* #define const */
9
+ #undef CHAR_IS_UNSIGNED
10
+ #define HAVE_STDDEF_H
11
+ #define HAVE_STDLIB_H
12
+ #undef NEED_BSD_STRINGS
13
+ #undef NEED_SYS_TYPES_H
14
+ #define NEED_FAR_POINTERS /* for small or medium memory model */
15
+ #undef NEED_SHORT_EXTERNAL_NAMES
16
+ #undef INCOMPLETE_TYPES_BROKEN
17
+
18
+ #ifdef JPEG_INTERNALS
19
+
20
+ #undef RIGHT_SHIFT_IS_UNSIGNED
21
+
22
+ #define USE_MSDOS_MEMMGR /* Define this if you use jmemdos.c */
23
+
24
+ #define MAX_ALLOC_CHUNK 65520L /* Maximum request to malloc() */
25
+
26
+ #define USE_FMEM /* Microsoft has _fmemcpy() and _fmemset() */
27
+
28
+ #define NEED_FHEAPMIN /* far heap management routines are broken */
29
+
30
+ #define SHORTxLCONST_32 /* enable compiler-specific DCT optimization */
31
+ /* Note: the above define is known to improve the code with Microsoft C 6.00A.
32
+ * I do not know whether it is good for later compiler versions.
33
+ * Please report any info on this point to jpeg-info@uunet.uu.net.
34
+ */
35
+
36
+ #endif /* JPEG_INTERNALS */
37
+
38
+ #ifdef JPEG_CJPEG_DJPEG
39
+
40
+ #define BMP_SUPPORTED /* BMP image file format */
41
+ #define GIF_SUPPORTED /* GIF image file format */
42
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
43
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
44
+ #define TARGA_SUPPORTED /* Targa image file format */
45
+
46
+ #define TWO_FILE_COMMANDLINE
47
+ #define USE_SETMODE /* Microsoft has setmode() */
48
+ #define NEED_SIGNAL_CATCHER /* Define this if you use jmemdos.c */
49
+ #undef DONT_USE_B_MODE
50
+ #undef PROGRESS_REPORT /* optional */
51
+
52
+ #endif /* JPEG_CJPEG_DJPEG */
@@ -0,0 +1,43 @@
1
+ /* jconfig.sas --- jconfig.h for Amiga systems using SAS C 6.0 and up. */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #define HAVE_PROTOTYPES
5
+ #define HAVE_UNSIGNED_CHAR
6
+ #define HAVE_UNSIGNED_SHORT
7
+ /* #define void char */
8
+ /* #define const */
9
+ #undef CHAR_IS_UNSIGNED
10
+ #define HAVE_STDDEF_H
11
+ #define HAVE_STDLIB_H
12
+ #undef NEED_BSD_STRINGS
13
+ #undef NEED_SYS_TYPES_H
14
+ #undef NEED_FAR_POINTERS
15
+ #undef NEED_SHORT_EXTERNAL_NAMES
16
+ #undef INCOMPLETE_TYPES_BROKEN
17
+
18
+ #ifdef JPEG_INTERNALS
19
+
20
+ #undef RIGHT_SHIFT_IS_UNSIGNED
21
+
22
+ #define TEMP_DIRECTORY "JPEGTMP:" /* recommended setting for Amiga */
23
+
24
+ #define NO_MKTEMP /* SAS C doesn't have mktemp() */
25
+
26
+ #define SHORTxSHORT_32 /* produces better DCT code with SAS C */
27
+
28
+ #endif /* JPEG_INTERNALS */
29
+
30
+ #ifdef JPEG_CJPEG_DJPEG
31
+
32
+ #define BMP_SUPPORTED /* BMP image file format */
33
+ #define GIF_SUPPORTED /* GIF image file format */
34
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
35
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
36
+ #define TARGA_SUPPORTED /* Targa image file format */
37
+
38
+ #define TWO_FILE_COMMANDLINE
39
+ #define NEED_SIGNAL_CATCHER
40
+ #undef DONT_USE_B_MODE
41
+ #undef PROGRESS_REPORT /* optional */
42
+
43
+ #endif /* JPEG_CJPEG_DJPEG */
@@ -0,0 +1,42 @@
1
+ /* jconfig.st --- jconfig.h for Atari ST/STE/TT using Pure C or Turbo C. */
2
+ /* see jconfig.txt for explanations */
3
+
4
+ #define HAVE_PROTOTYPES
5
+ #define HAVE_UNSIGNED_CHAR
6
+ #define HAVE_UNSIGNED_SHORT
7
+ /* #define void char */
8
+ /* #define const */
9
+ #undef CHAR_IS_UNSIGNED
10
+ #define HAVE_STDDEF_H
11
+ #define HAVE_STDLIB_H
12
+ #undef NEED_BSD_STRINGS
13
+ #undef NEED_SYS_TYPES_H
14
+ #undef NEED_FAR_POINTERS
15
+ #undef NEED_SHORT_EXTERNAL_NAMES
16
+ #define INCOMPLETE_TYPES_BROKEN /* suppress undefined-structure warnings */
17
+
18
+ #ifdef JPEG_INTERNALS
19
+
20
+ #undef RIGHT_SHIFT_IS_UNSIGNED
21
+
22
+ #define ALIGN_TYPE long /* apparently double is a weird size? */
23
+
24
+ #endif /* JPEG_INTERNALS */
25
+
26
+ #ifdef JPEG_CJPEG_DJPEG
27
+
28
+ #define BMP_SUPPORTED /* BMP image file format */
29
+ #define GIF_SUPPORTED /* GIF image file format */
30
+ #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
31
+ #undef RLE_SUPPORTED /* Utah RLE image file format */
32
+ #define TARGA_SUPPORTED /* Targa image file format */
33
+
34
+ #define TWO_FILE_COMMANDLINE /* optional -- undef if you like Unix style */
35
+ /* Note: if you undef TWO_FILE_COMMANDLINE, you may need to define
36
+ * USE_SETMODE. Some Atari compilers require it, some do not.
37
+ */
38
+ #define NEED_SIGNAL_CATCHER /* needed if you use jmemname.c */
39
+ #undef DONT_USE_B_MODE
40
+ #undef PROGRESS_REPORT /* optional */
41
+
42
+ #endif /* JPEG_CJPEG_DJPEG */