home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / calc-2.02c.diffs < prev    next >
Encoding:
Text File  |  1995-01-21  |  44.7 KB  |  1,424 lines

  1. diff -rc --new-file calc-2.02c/Makefile /gnu/src/amiga/calc-2.02c/Makefile
  2. *** calc-2.02c/Makefile    Tue Jun  1 10:35:49 1993
  3. --- /gnu/src/amiga/calc-2.02c/Makefile    Thu Jan  1 00:00:00 1970
  4. ***************
  5. *** 1,185 ****
  6. - # Makefile for "Calc", the GNU Emacs Calculator.
  7. - #  Copyright (C) 1991, 1992, 1993 Free Software Foundation.
  8. - #  Author: Dave Gillespie.
  9. - #  Author's address: daveg@synaptics.com.
  10. - # This program is free software; you can redistribute it and/or modify
  11. - # it under the terms of the GNU General Public License as published by
  12. - # the Free Software Foundation (any version).
  13. - # This program is distributed in the hope that it will be useful,
  14. - # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. - # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. - # GNU General Public License for more details.
  17. - # You should have received a copy of the GNU General Public License
  18. - # along with this program; see the file COPYING.  If not, write to
  19. - # the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. - # To install Calc for private use, type `make'.
  21. - # To install Calc for public use, type `make install'.
  22. - # How to read a Makefile:
  23. - #   The command `make target' looks for `target:' in the Makefile.
  24. - #   First, any sub-targets after the `:' are made.
  25. - #   Then, the Unix commands on the following lines are executed.
  26. - #   `$(SYMBOL)' expands according to the `SYMBOL =' definition below.
  27. - # Programs.
  28. - EMACS    = emacs
  29. - TEX      = tex
  30. - TEXINDEX = texindex
  31. - MAKEINFO = makeinfo
  32. - MAKE     = make
  33. - ECHO     = @echo
  34. - REMOVE     = -rm -f
  35. - # (The leading `@' tells "make" not to echo the command itself during make;
  36. - #  The leading `-' tells "make" to keep going if the command fails.)
  37. - # Other macros.
  38. - EFLAGS   = -batch
  39. - MAINT     = -l calc-maint.elc
  40. - # Control whether intermediate files are kept.
  41. - PURGE     = -rm -f
  42. - #PURGE     = echo Not deleting:
  43. - # Do full Calc installation.  (Note that `make' == `make all'.)
  44. - # These are written this way instead of `all: compile private info'
  45. - # to make the steps more explicit while the `make' is in progress.
  46. - all:
  47. -     $(MAKE) compile
  48. -     $(MAKE) private
  49. -     $(MAKE) info
  50. -     $(ECHO) "Calc is now installed."
  51. - install:
  52. -     $(MAKE) compile
  53. -     $(MAKE) public
  54. -     $(MAKE) info
  55. -     $(ECHO) "Calc is now installed."
  56. - # Compile Calc.
  57. - compile: maint
  58. -     $(EMACS) $(EFLAGS) $(MAINT) -f calc-compile
  59. - # Add autoload and set-global-key commands to system default file.
  60. - public: maint
  61. -     $(EMACS) $(EFLAGS) $(MAINT) -f calc-public-autoloads
  62. - # Add autoload and set-global-key commands to ~/.emacs file.
  63. - private: maint
  64. -     $(EMACS) $(EFLAGS) $(MAINT) -f calc-private-autoloads
  65. - # Format the Calc manual for the Info system using makeinfo.
  66. - info: calc.info
  67. - calc.info: calc.texinfo
  68. -     -$(MAKEINFO) calc.texinfo
  69. -     $(ECHO) "Please ignore warnings for Copying, Getting Started, and Interactive Tutorial."
  70. -     $(MAKE) texinfo
  71. - # Format the Calc manual for the Info system using texinfo.el.
  72. - # (Use this only if you do not have makeinfo.)
  73. - texinfo: calc.info-2
  74. - calc.info-2: calc.texinfo
  75. -     $(EMACS) $(EFLAGS) calc.texinfo -f texinfo-format-buffer -f save-buffer
  76. - # Format the Calc manual as one printable volume using TeX.
  77. - tex:
  78. -     $(REMOVE) calc.aux
  79. -     $(TEX) calc.texinfo
  80. -     $(TEXINDEX) calc.[cfkptv]?
  81. -     $(TEX) calc.texinfo
  82. -     $(PURGE) calc.cp calc.fn calc.pg calc.tp calc.vr
  83. -     $(PURGE) calc.cps calc.fns calc.kys calc.pgs calc.tps calc.vrs
  84. -     $(PURGE) calc.toc
  85. - # Note, calc.aux and calc.ky are left behind for the benefit of "make summary".
  86. - # Format the Calc manual as two printable volumes (Tutorial and Reference).
  87. - tex2: texsplit texvol1 texvol2
  88. - # Format the Calc Tutorial volume only.
  89. - textut: texsplit1 texvol1
  90. - # Format the Calc Reference volume only.
  91. - texref: texsplit2 texvol2
  92. - texsplit: maint
  93. -     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-manual
  94. - texsplit1: maint
  95. -     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-tutorial
  96. - texsplit2: maint
  97. -     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-reference
  98. - texvol1:
  99. -     $(TEX) calctut.tex
  100. -     $(TEXINDEX) calctut.??
  101. -     $(TEX) calctut.tex
  102. -     $(PURGE) calctut.tex calctut.?? calctut.??s calctut.aux calctut.toc
  103. - texvol2:
  104. -     $(TEX) calcref.tex
  105. -     $(TEXINDEX) calcref.??
  106. -     $(TEX) calcref.tex
  107. -     $(PURGE) calcref.tex calcref.?? calcref.??s calcref.aux calcref.toc
  108. - # Format the Calc summary separately using TeX.
  109. - summary: texsum
  110. -     $(TEX) calcsum.tex
  111. -     $(PURGE) calcsum.?? calcsum.aux calcsum.toc
  112. - texsum: maint
  113. -     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-summary
  114. - isummary: texisum
  115. -     $(TEX) calcsum.tex
  116. -     $(PURGE) calcsum.?? calcsum.aux calcsum.toc
  117. - texisum: maint
  118. -     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-inline-summary
  119. - # All this because "-l calc-maint" doesn't work.
  120. - maint: calc-maint.elc
  121. - calc-maint.elc: calc-maint.el
  122. -     cp calc-maint.el calc-maint.elc
  123. - # Create an Emacs TAGS file
  124. - tags: TAGS
  125. - TAGS:
  126. -     etags *.el
  127. - # Delete .elc files and other reconstructible files.
  128. - clean:  clean.elc clean.info clean.tex
  129. - clean.elc:
  130. -     $(REMOVE) calc-*.elc
  131. -     $(REMOVE) macedit.elc
  132. - clean.info:
  133. -     $(REMOVE) calc.info*
  134. - clean.tex:
  135. -     $(REMOVE) calc.cp calc.fn calc.ky calc.pg calc.tp calc.vr
  136. -     $(REMOVE) calc.cps calc.fns calc.kys calc.pgs calc.tps calc.vrs
  137. -     $(REMOVE) calc.aux calc.log calc.toc calc.dvi
  138. -     $(REMOVE) calcref.*
  139. -     $(REMOVE) calctut.*
  140. -     $(REMOVE) calcsum.*
  141. --- 0 ----
  142. diff -rc --new-file calc-2.02c/Makefile.in /gnu/src/amiga/calc-2.02c/Makefile.in
  143. *** calc-2.02c/Makefile.in    Thu Jan  1 00:00:00 1970
  144. --- /gnu/src/amiga/calc-2.02c/Makefile.in    Mon Dec 19 21:28:41 1994
  145. ***************
  146. *** 0 ****
  147. --- 1,232 ----
  148. + # Makefile for "Calc", the GNU Emacs Calculator.
  149. + #  Copyright (C) 1991, 1992, 1993 Free Software Foundation.
  150. + #  Author: Dave Gillespie.
  151. + #  Author's address: daveg@synaptics.com.
  152. + # This program is free software; you can redistribute it and/or modify
  153. + # it under the terms of the GNU General Public License as published by
  154. + # the Free Software Foundation (any version).
  155. + # This program is distributed in the hope that it will be useful,
  156. + # but WITHOUT ANY WARRANTY; without even the implied warranty of
  157. + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  158. + # GNU General Public License for more details.
  159. + # You should have received a copy of the GNU General Public License
  160. + # along with this program; see the file COPYING.  If not, write to
  161. + # the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  162. + # To install Calc for private use, type `make'.
  163. + # To install Calc for public use, type `make install'.
  164. + # How to read a Makefile:
  165. + #   The command `make target' looks for `target:' in the Makefile.
  166. + #   First, any sub-targets after the `:' are made.
  167. + #   Then, the Unix commands on the following lines are executed.
  168. + #   `$(SYMBOL)' expands according to the `SYMBOL =' definition below.
  169. + #### Start of system configuration section. ####
  170. + srcdir = @srcdir@
  171. + VPATH = @srcdir@
  172. + prefix = @prefix@
  173. + exec_prefix = @exec_prefix@
  174. + libdir = $(prefix)/lib
  175. + infodir = $(prefix)/info
  176. + INSTALL = @INSTALL@
  177. + INSTALL_DATA = @INSTALL_DATA@
  178. + LIBDIR = $(libdir)/emacs/site-lisp
  179. + #### End system configuration section ####
  180. + # Programs.
  181. + EMACS    = emacs
  182. + TEX      = tex
  183. + TEXINDEX = texindex
  184. + MAKEINFO = makeinfo
  185. + MAKE     = make
  186. + ECHO     = @echo
  187. + REMOVE     = -rm -f
  188. + # (The leading `@' tells "make" not to echo the command itself during make;
  189. + #  The leading `-' tells "make" to keep going if the command fails.)
  190. + # Other macros.
  191. + EFLAGS   = -batch
  192. + MAINT     = -l calc-maint.elc
  193. + # Control whether intermediate files are kept.
  194. + PURGE     = -rm -f
  195. + #PURGE     = echo Not deleting:
  196. + EL_FILES =    calc-aent.el calc-alg-2.el calc-alg-3.el calc-alg.el \
  197. +         calc-arith.el calc-bin.el calc-comb.el calc-comp.el \
  198. +         calc-cplx.el calc-embed.el calc-ext.el calc-fin.el \
  199. +         calc-forms.el calc-frac.el calc-funcs.el calc-graph.el \
  200. +         calc-help.el calc-incom.el calc-keypd.el calc-lang.el \
  201. +         calc-macs.el calc-map.el calc-mat.el \
  202. +         calc-math.el calc-misc.el calc-mode.el calc-poly.el \
  203. +         calc-prog.el calc-rewr.el calc-rules.el calc-sel-2.el \
  204. +         calc-sel.el calc-stat.el calc-store.el calc-stuff.el \
  205. +         calc-trail.el calc-undo.el calc-units.el calc-vec.el \
  206. +         calc-yank.el calc.el macedit.el
  207. + ELC_FILES =    calc-aent.elc calc-alg-2.elc calc-alg-3.elc calc-alg.elc \
  208. +         calc-arith.elc calc-bin.elc calc-comb.elc calc-comp.elc \
  209. +         calc-cplx.elc calc-embed.elc calc-ext.elc calc-fin.elc \
  210. +         calc-forms.elc calc-frac.elc calc-funcs.elc calc-graph.elc \
  211. +         calc-help.elc calc-incom.elc calc-keypd.elc calc-lang.elc \
  212. +         calc-macs.elc calc-map.elc calc-mat.elc \
  213. +         calc-math.elc calc-misc.elc calc-mode.elc calc-poly.elc \
  214. +         calc-prog.elc calc-rewr.elc calc-rules.elc calc-sel-2.elc \
  215. +         calc-sel.elc calc-stat.elc calc-store.elc calc-stuff.elc \
  216. +         calc-trail.elc calc-undo.elc calc-units.elc calc-vec.elc \
  217. +         calc-yank.elc calc.elc macedit.elc
  218. + # Default action is to compile the .elc files and make the info files.
  219. + all:    maint $(ELC_FILES) info tags
  220. + $(ELC_FILES): $(EL_FILES)
  221. +     $(EMACS) $(EFLAGS) $(MAINT) -f calc-compile
  222. + # Installation consists of copying the .el and .elc files to the site
  223. + # elisp directory.
  224. + install:
  225. +     for file in $(EL_FILES) $(ELC_FILES); \
  226. +     do \
  227. +         $(INSTALL_DATA) $$file $(LIBDIR)/$$file; \
  228. +     done
  229. +     -rm -f $(infodir)/calc.info*
  230. +     for file in calc.info*; \
  231. +     do \
  232. +         $(INSTALL_DATA) $$file $(infodir)/$$file; \
  233. +     done
  234. +     -chmod a-x $(infodir)/calc.info*
  235. + # Add autoload and set-global-key commands to system default file.
  236. + public: maint
  237. +     touch default
  238. +     $(EMACS) $(EFLAGS) $(MAINT) -f calc-public-autoloads
  239. + # Add autoload and set-global-key commands to ~/.emacs file.
  240. + private: maint
  241. +     $(EMACS) $(EFLAGS) $(MAINT) -f calc-private-autoloads
  242. + # Format the Calc manual for the Info system using makeinfo.
  243. + info: calc.info
  244. + calc.info: calc.texinfo
  245. +     if [ -f calc.texinfo ]; then true; else cp $(srcdir)/calc.texinfo calc.texinfo; fi;
  246. +     -$(MAKEINFO) calc.texinfo
  247. +     $(ECHO) "Please ignore warnings for Copying, Getting Started, and Interactive Tutorial."
  248. +     $(MAKE) texinfo
  249. + # Format the Calc manual for the Info system using texinfo.el.
  250. + # (Use this only if you do not have makeinfo.)
  251. + texinfo: calc.info-2
  252. + calc.info-2: calc.texinfo
  253. +     if [ -f calc.texinfo ]; then true; else cp $(srcdir)/calc.texinfo calc.texinfo; fi; \
  254. +     $(EMACS) $(EFLAGS) calc.texinfo -f texinfo-format-buffer -f save-buffer
  255. + # Format the Calc manual as one printable volume using TeX.
  256. + tex:
  257. +     $(REMOVE) calc.aux
  258. +     $(TEX) $(srcdir)/calc.texinfo
  259. +     $(TEXINDEX) calc.[cfkptv]?
  260. +     $(TEX) $(srcdir)/calc.texinfo
  261. +     $(PURGE) calc.cp calc.fn calc.pg calc.tp calc.vr
  262. +     $(PURGE) calc.cps calc.fns calc.kys calc.pgs calc.tps calc.vrs
  263. +     $(PURGE) calc.toc
  264. + # Note, calc.aux and calc.ky are left behind for the benefit of "make summary".
  265. + # Format the Calc manual as two printable volumes (Tutorial and Reference).
  266. + tex2: texsplit texvol1 texvol2
  267. + # Format the Calc Tutorial volume only.
  268. + textut: texsplit1 texvol1
  269. + # Format the Calc Reference volume only.
  270. + texref: texsplit2 texvol2
  271. + texsplit: maint
  272. +     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-manual
  273. + texsplit1: maint
  274. +     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-tutorial
  275. + texsplit2: maint 
  276. +     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-reference
  277. + texvol1:
  278. +     $(TEX) calctut.tex
  279. +     $(TEXINDEX) calctut.??
  280. +     $(TEX) calctut.tex
  281. +     $(PURGE) calctut.tex calctut.?? calctut.??s calctut.aux calctut.toc
  282. + texvol2:
  283. +     $(TEX) calcref.tex
  284. +     $(TEXINDEX) calcref.??
  285. +     $(TEX) calcref.tex
  286. +     $(PURGE) calcref.tex calcref.?? calcref.??s calcref.aux calcref.toc
  287. + # Format the Calc summary separately using TeX.
  288. + summary: texsum
  289. +     $(TEX) calcsum.tex
  290. +     $(PURGE) calcsum.?? calcsum.aux calcsum.toc
  291. + texsum: maint
  292. +     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-split-summary
  293. + isummary: texisum
  294. +     $(TEX) calcsum.tex
  295. +     $(PURGE) calcsum.?? calcsum.aux calcsum.toc
  296. + texisum: maint
  297. +     $(EMACS) $(EFLAGS) $(MAINT) calc.texinfo -f calc-inline-summary
  298. + # All this because "-l calc-maint" doesn't work.
  299. + maint: mkcopy calc-maint.elc
  300. + calc-maint.elc: calc-maint.el
  301. +     cp $(srcdir)/calc-maint.el calc-maint.elc
  302. + mkcopy:
  303. +     for elfile in $(EL_FILES); \
  304. +     do \
  305. +         if [ -f $$elfile ]; then true; else cp $(srcdir)/$$elfile $$elfile; fi; \
  306. +     done
  307. + # Create an Emacs TAGS file
  308. + tags: TAGS
  309. + TAGS:
  310. +     etags *.el
  311. + # Delete .elc files and other reconstructible files.
  312. + clean:  clean.elc clean.info clean.tex
  313. + clean.elc:
  314. +     $(REMOVE) calc-*.elc
  315. +     $(REMOVE) macedit.elc
  316. + clean.info:
  317. +     $(REMOVE) calc.info*
  318. + clean.tex:
  319. +     $(REMOVE) calc.cp calc.fn calc.ky calc.pg calc.tp calc.vr
  320. +     $(REMOVE) calc.cps calc.fns calc.kys calc.pgs calc.tps calc.vrs
  321. +     $(REMOVE) calc.aux calc.log calc.toc calc.dvi
  322. +     $(REMOVE) calcref.*
  323. +     $(REMOVE) calctut.*
  324. +     $(REMOVE) calcsum.*
  325. diff -rc --new-file calc-2.02c/Product-Info /gnu/src/amiga/calc-2.02c/Product-Info
  326. *** calc-2.02c/Product-Info    Thu Jan  1 00:00:00 1970
  327. --- /gnu/src/amiga/calc-2.02c/Product-Info    Mon Dec 19 21:35:15 1994
  328. ***************
  329. *** 0 ****
  330. --- 1,56 ----
  331. + .name
  332. + calc
  333. + .fullname
  334. + GNU calc
  335. + .type
  336. + Miscellaneous
  337. + .short
  338. + Advanced desk calculator in EMACS elisp.
  339. + .description
  340. + "Calc" is an advanced calculator and mathematical tool that runs as
  341. + part of the GNU Emacs environment.  Very roughly based on the HP-28/48
  342. + series of calculators, its many features include:
  343. +     * Choice of algebraic or RPN (stack-based) entry of calculations.
  344. +     * Arbitrary precision integers and floating-point numbers.
  345. +     * Arithmetic on rational numbers, complex numbers (rectangular and
  346. +       polar), error forms with standard deviations, open and closed
  347. +       intervals, vectors and matrices, dates and times, infinities,
  348. +       sets, quantities with units, and algebraic formulas.
  349. +     * Mathematical operations such as logarithms and trigonometric functions.
  350. +     * Programmer's features (bitwise operations, non-decimal numbers).
  351. +     * Financial functions such as future value and internal rate of return.
  352. +     * Number theoretical features such as prime factorization and
  353. +       arithmetic modulo M for any M.
  354. +     * Algebraic manipulation features, including symbolic calculus.
  355. +     * Moving data to and from regular editing buffers.
  356. +     * "Embedded mode" for manipulating Calc formulas and data directly
  357. +       inside any editing buffer.
  358. +     * Graphics using GNUPLOT, a versatile (and free) plotting program.
  359. +     * Easy programming using keyboard macros, algebraic formulas,
  360. +       algebraic rewrite rules, or extended Emacs Lisp.
  361. + .version
  362. + 2.02c
  363. + .author
  364. + Dave Gillespie
  365. + .address
  366. + c/o Synaptics, Inc.
  367. + 2698 Orchard Parkway
  368. + San Jose CA 95134
  369. + .distribution
  370. + GNU Public License
  371. + .email
  372. + daveg@synaptics.com
  373. + .described-by
  374. + Fred Fish (fnf@amigalib.com)
  375. diff -rc --new-file calc-2.02c/calc-maint.el /gnu/src/amiga/calc-2.02c/calc-maint.el
  376. *** calc-2.02c/calc-maint.el    Sun Apr  3 00:26:42 1994
  377. --- /gnu/src/amiga/calc-2.02c/calc-maint.el    Mon Dec 19 20:39:45 1994
  378. ***************
  379. *** 455,461 ****
  380.   \(autoload 'edit-kbd-macro       \"macedit\" \"Edit Keyboard Macro\" t)
  381.   \(autoload 'edit-last-kbd-macro       \"macedit\" \"Edit Keyboard Macro\" t)
  382.   \(autoload 'read-kbd-macro       \"macedit\" \"Read Keyboard Macro\" t)
  383. ! \(setq load-path (append load-path (list \"" (directory-file-name home) "\")))
  384.   \(global-set-key \"\\e#\" 'calc-dispatch)
  385.   ;;; End of Calc autoloads.\n")
  386.     (let ((trim-versions-without-asking t))
  387. --- 455,461 ----
  388.   \(autoload 'edit-kbd-macro       \"macedit\" \"Edit Keyboard Macro\" t)
  389.   \(autoload 'edit-last-kbd-macro       \"macedit\" \"Edit Keyboard Macro\" t)
  390.   \(autoload 'read-kbd-macro       \"macedit\" \"Read Keyboard Macro\" t)
  391. ! \(setq load-path (append load-path (list \"gnu:lib/emacs/site-lisp\")))
  392.   \(global-set-key \"\\e#\" 'calc-dispatch)
  393.   ;;; End of Calc autoloads.\n")
  394.     (let ((trim-versions-without-asking t))
  395. diff -rc --new-file calc-2.02c/configure /gnu/src/amiga/calc-2.02c/configure
  396. *** calc-2.02c/configure    Thu Jan  1 00:00:00 1970
  397. --- /gnu/src/amiga/calc-2.02c/configure    Mon Dec 19 19:14:12 1994
  398. ***************
  399. *** 0 ****
  400. --- 1,651 ----
  401. + #!/bin/sh
  402. + # Guess values for system-dependent variables and create Makefiles.
  403. + # Generated automatically using autoconf version 2.1 
  404. + # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  405. + #
  406. + # This configure script is free software; the Free Software Foundation
  407. + # gives unlimited permission to copy, distribute and modify it.
  408. + # Defaults:
  409. + ac_help=
  410. + ac_default_prefix=/gnu
  411. + # Any additions from configure.in:
  412. + # Initialize some variables set by options.
  413. + # The variables have the same names as the options, with
  414. + # dashes changed to underlines.
  415. + build=NONE
  416. + cache_file=./config.cache
  417. + exec_prefix=NONE
  418. + host=NONE
  419. + no_create=
  420. + nonopt=NONE
  421. + no_recursion=
  422. + prefix=NONE
  423. + program_prefix=NONE
  424. + program_suffix=NONE
  425. + program_transform_name=s,x,x,
  426. + silent=
  427. + site=
  428. + srcdir=
  429. + target=NONE
  430. + verbose=
  431. + x_includes=NONE
  432. + x_libraries=NONE
  433. + # Initialize some other variables.
  434. + subdirs=
  435. + ac_prev=
  436. + for ac_option
  437. + do
  438. +   # If the previous option needs an argument, assign it.
  439. +   if test -n "$ac_prev"; then
  440. +     eval "$ac_prev=\$ac_option"
  441. +     ac_prev=
  442. +     continue
  443. +   fi
  444. +   case "$ac_option" in
  445. +   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  446. +   *) ac_optarg= ;;
  447. +   esac
  448. +   # Accept the important Cygnus configure options, so we can diagnose typos.
  449. +   case "$ac_option" in
  450. +   -build | --build | --buil | --bui | --bu | --b)
  451. +     ac_prev=build ;;
  452. +   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  453. +     build="$ac_optarg" ;;
  454. +   -cache-file | --cache-file | --cache-fil | --cache-fi \
  455. +   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  456. +     ac_prev=cache_file ;;
  457. +   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  458. +   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  459. +     cache_file="$ac_optarg" ;;
  460. +   -disable-* | --disable-*)
  461. +     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  462. +     # Reject names that are not valid shell variable names.
  463. +     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  464. +       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  465. +     fi
  466. +     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  467. +     eval "enable_${ac_feature}=no" ;;
  468. +   -enable-* | --enable-*)
  469. +     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  470. +     # Reject names that are not valid shell variable names.
  471. +     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  472. +       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  473. +     fi
  474. +     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  475. +     case "$ac_option" in
  476. +       *=*) ;;
  477. +       *) ac_optarg=yes ;;
  478. +     esac
  479. +     eval "enable_${ac_feature}='$ac_optarg'" ;;
  480. +   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  481. +   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  482. +   | --exec | --exe | --ex)
  483. +     ac_prev=exec_prefix ;;
  484. +   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  485. +   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  486. +   | --exec=* | --exe=* | --ex=*)
  487. +     exec_prefix="$ac_optarg" ;;
  488. +   -gas | --gas | --ga | --g)
  489. +     # Obsolete; use --with-gas.
  490. +     with_gas=yes ;;
  491. +   -help | --help | --hel | --he)
  492. +     # Omit some internal or obsolete options to make the list less imposing.
  493. +     # This message is too long to be a string in the A/UX 3.1 sh.
  494. +     cat << EOF
  495. + Usage: configure [options] [host]
  496. + Options: [defaults in brackets after descriptions]
  497. + Configuration:
  498. +   --cache-file=FILE       cache test results in FILE
  499. +   --help                  print this message
  500. +   --no-create             do not create output files
  501. +   --quiet, --silent       do not print \`checking...' messages
  502. +   --version               print the version of autoconf that created configure
  503. + Directory and file names:
  504. +   --prefix=PREFIX         install architecture-independent files in PREFIX
  505. +                           [$ac_default_prefix]
  506. +   --exec-prefix=PREFIX    install architecture-dependent files in PREFIX
  507. +                           [same as prefix]
  508. +   --srcdir=DIR            find the sources in DIR [configure dir or ..]
  509. +   --program-prefix=PREFIX prepend PREFIX to installed program names
  510. +   --program-suffix=SUFFIX append SUFFIX to installed program names
  511. +   --program-transform-name=PROGRAM run sed PROGRAM on installed program names
  512. + Host type:
  513. +   --build=BUILD           configure for building on BUILD [BUILD=HOST]
  514. +   --host=HOST             configure for HOST [guessed]
  515. +   --target=TARGET         configure for TARGET [TARGET=HOST]
  516. + Features and packages:
  517. +   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  518. +   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  519. +   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  520. +   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  521. +   --x-includes=DIR        X include files are in DIR
  522. +   --x-libraries=DIR       X library files are in DIR
  523. + --enable and --with options recognized:$ac_help
  524. + EOF
  525. +     exit 0 ;;
  526. +   -host | --host | --hos | --ho)
  527. +     ac_prev=host ;;
  528. +   -host=* | --host=* | --hos=* | --ho=*)
  529. +     host="$ac_optarg" ;;
  530. +   -nfp | --nfp | --nf)
  531. +     # Obsolete; use --without-fp.
  532. +     with_fp=no ;;
  533. +   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  534. +   | --no-cr | --no-c)
  535. +     no_create=yes ;;
  536. +   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  537. +   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  538. +     no_recursion=yes ;;
  539. +   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  540. +     ac_prev=prefix ;;
  541. +   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  542. +     prefix="$ac_optarg" ;;
  543. +   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  544. +   | --program-pre | --program-pr | --program-p)
  545. +     ac_prev=program_prefix ;;
  546. +   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  547. +   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  548. +     program_prefix="$ac_optarg" ;;
  549. +   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  550. +   | --program-suf | --program-su | --program-s)
  551. +     ac_prev=program_suffix ;;
  552. +   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  553. +   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  554. +     program_suffix="$ac_optarg" ;;
  555. +   -program-transform-name | --program-transform-name \
  556. +   | --program-transform-nam | --program-transform-na \
  557. +   | --program-transform-n | --program-transform- \
  558. +   | --program-transform | --program-transfor \
  559. +   | --program-transfo | --program-transf \
  560. +   | --program-trans | --program-tran \
  561. +   | --progr-tra | --program-tr | --program-t)
  562. +     ac_prev=program_transform_name ;;
  563. +   -program-transform-name=* | --program-transform-name=* \
  564. +   | --program-transform-nam=* | --program-transform-na=* \
  565. +   | --program-transform-n=* | --program-transform-=* \
  566. +   | --program-transform=* | --program-transfor=* \
  567. +   | --program-transfo=* | --program-transf=* \
  568. +   | --program-trans=* | --program-tran=* \
  569. +   | --progr-tra=* | --program-tr=* | --program-t=*)
  570. +     program_transform_name="$ac_optarg" ;;
  571. +   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  572. +   | -silent | --silent | --silen | --sile | --sil)
  573. +     silent=yes ;;
  574. +   -site | --site | --sit)
  575. +     ac_prev=site ;;
  576. +   -site=* | --site=* | --sit=*)
  577. +     site="$ac_optarg" ;;
  578. +   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  579. +     ac_prev=srcdir ;;
  580. +   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  581. +     srcdir="$ac_optarg" ;;
  582. +   -target | --target | --targe | --targ | --tar | --ta | --t)
  583. +     ac_prev=target ;;
  584. +   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  585. +     target="$ac_optarg" ;;
  586. +   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  587. +     verbose=yes ;;
  588. +   -version | --version | --versio | --versi | --vers)
  589. +     echo "configure generated by autoconf version 2.1"
  590. +     exit 0 ;;
  591. +   -with-* | --with-*)
  592. +     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  593. +     # Reject names that are not valid shell variable names.
  594. +     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  595. +       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  596. +     fi
  597. +     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  598. +     case "$ac_option" in
  599. +       *=*) ;;
  600. +       *) ac_optarg=yes ;;
  601. +     esac
  602. +     eval "with_${ac_package}='$ac_optarg'" ;;
  603. +   -without-* | --without-*)
  604. +     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  605. +     # Reject names that are not valid shell variable names.
  606. +     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  607. +       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  608. +     fi
  609. +     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  610. +     eval "with_${ac_package}=no" ;;
  611. +   --x)
  612. +     # Obsolete; use --with-x.
  613. +     with_x=yes ;;
  614. +   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  615. +   | --x-incl | --x-inc | --x-in | --x-i)
  616. +     ac_prev=x_includes ;;
  617. +   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  618. +   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  619. +     x_includes="$ac_optarg" ;;
  620. +   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  621. +   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  622. +     ac_prev=x_libraries ;;
  623. +   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  624. +   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  625. +     x_libraries="$ac_optarg" ;;
  626. +   -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
  627. +     ;;
  628. +   *) 
  629. +     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  630. +       echo "configure: warning: $ac_option: invalid host type" 1>&2
  631. +     fi
  632. +     if test "x$nonopt" != xNONE; then
  633. +       { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
  634. +     fi
  635. +     nonopt="$ac_option"
  636. +     ;;
  637. +   esac
  638. + done
  639. + if test -n "$ac_prev"; then
  640. +   { echo "configure: error: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  641. + fi
  642. + trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  643. + # File descriptor usage:
  644. + # 0 unused; standard input
  645. + # 1 file creation
  646. + # 2 errors and warnings
  647. + # 3 unused; some systems may open it to /dev/tty
  648. + # 4 checking for... messages and results
  649. + # 5 compiler messages saved in config.log
  650. + if test "$silent" = yes; then
  651. +   exec 4>/dev/null
  652. + else
  653. +   exec 4>&1
  654. + fi
  655. + exec 5>./config.log
  656. + echo "\
  657. + This file contains any messages produced by compilers while
  658. + running configure, to aid debugging if configure makes a mistake.
  659. + " 1>&5
  660. + # Strip out --no-create and --no-recursion so they do not pile up.
  661. + # Also quote any args containing shell metacharacters.
  662. + ac_configure_args=
  663. + for ac_arg
  664. + do
  665. +   case "$ac_arg" in
  666. +   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  667. +   | --no-cr | --no-c) ;;
  668. +   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  669. +   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
  670. +   *" "*|*"    "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
  671. +   ac_configure_args="$ac_configure_args '$ac_arg'" ;;
  672. +   *) ac_configure_args="$ac_configure_args $ac_arg" ;;
  673. +   esac
  674. + done
  675. + # NLS nuisances.
  676. + # Only set LANG and LC_ALL to C if already set.
  677. + # These must not be set unconditionally because not all systems understand
  678. + # e.g. LANG=C (notably SCO).
  679. + if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
  680. + if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
  681. + # confdefs.h avoids OS command line length limits that DEFS can exceed.
  682. + rm -rf conftest* confdefs.h
  683. + # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  684. + /bin/echo > confdefs.h
  685. + # A filename unique to this package, relative to the directory that
  686. + # configure is in, which we can look for to find out if srcdir is correct.
  687. + ac_unique_file=calc-aent.el
  688. + # Find the source files, if location was not specified.
  689. + if test -z "$srcdir"; then
  690. +   ac_srcdir_defaulted=yes
  691. +   # Try the directory containing this script, then its parent.
  692. +   ac_prog=$0
  693. +   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  694. +   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  695. +   srcdir=$ac_confdir
  696. +   if test ! -r $srcdir/$ac_unique_file; then
  697. +     srcdir=..
  698. +   fi
  699. + else
  700. +   ac_srcdir_defaulted=no
  701. + fi
  702. + if test ! -r $srcdir/$ac_unique_file; then
  703. +   if test "$ac_srcdir_defaulted" = yes; then
  704. +     { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
  705. +   else
  706. +     { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  707. +   fi
  708. + fi
  709. + srcdir=`/bin/echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
  710. + # Prefer explicitly selected file to automatically selected ones.
  711. + if test -z "$CONFIG_SITE"; then
  712. +   if test "x$prefix" != xNONE; then
  713. +     CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
  714. +   else
  715. +     CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
  716. +   fi
  717. + fi
  718. + for ac_site_file in $CONFIG_SITE; do
  719. +   if test -r "$ac_site_file"; then
  720. +     echo "loading site script $ac_site_file"
  721. +     . "$ac_site_file"
  722. +   fi
  723. + done
  724. + if test -r "$cache_file"; then
  725. +   echo "loading cache $cache_file"
  726. +   . $cache_file
  727. + else
  728. +   echo "creating cache $cache_file"
  729. +   > $cache_file
  730. + fi
  731. + ac_ext=c
  732. + # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  733. + ac_cpp='$CPP $CPPFLAGS'
  734. + ac_compile='${CC-cc} $CFLAGS $CPPFLAGS conftest.$ac_ext -c 1>&5 2>&5'
  735. + ac_link='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext -o conftest $LIBS 1>&5 2>&5'
  736. + if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
  737. +   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  738. +   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  739. +     ac_n= ac_c='
  740. + ' ac_t='    '
  741. +   else
  742. +     ac_n=-n ac_c= ac_t=
  743. +   fi
  744. + else
  745. +   ac_n= ac_c='\c' ac_t=
  746. + fi
  747. + ac_aux_dir=
  748. + for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
  749. +   if test -f $ac_dir/install-sh; then
  750. +     ac_aux_dir=$ac_dir
  751. +     ac_install_sh="$ac_aux_dir/install-sh -c"
  752. +     break
  753. +   elif test -f $ac_dir/install.sh; then
  754. +     ac_aux_dir=$ac_dir
  755. +     ac_install_sh="$ac_aux_dir/install.sh -c"
  756. +     break
  757. +   fi
  758. + done
  759. + if test -z "$ac_aux_dir"; then
  760. +   { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
  761. + fi
  762. + ac_config_guess=$ac_aux_dir/config.guess
  763. + ac_config_sub=$ac_aux_dir/config.sub
  764. + ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
  765. + # Find a good install program.  We prefer a C program (faster),
  766. + # so one script is as good as another.  But avoid the broken or
  767. + # incompatible versions:
  768. + # SysV /etc/install, /usr/sbin/install
  769. + # SunOS /usr/etc/install
  770. + # IRIX /sbin/install
  771. + # AIX /bin/install
  772. + # AFS /usr/afsws/bin/install, which mishandles nonexistent args
  773. + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  774. + # ./install, which can be erroneously created by make from ./install.sh.
  775. + /bin/echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
  776. + if test -z "$INSTALL"; then
  777. + if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
  778. +   /bin/echo $ac_n "(cached) $ac_c" 1>&4
  779. + else
  780. +     IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  781. +   for ac_dir in $PATH; do
  782. +     case "$ac_dir" in
  783. +     ''|.|/gnu/etc) ;;
  784. +     *)
  785. +       # OSF1 and SCO ODT 3.0 have their own names for install.
  786. +       for ac_prog in ginstall installbsd scoinst install; do
  787. +         if test -f $ac_dir/$ac_prog; then
  788. +       if test $ac_prog = install &&
  789. +             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  790. +         # AIX install.  It has an incompatible calling convention.
  791. +         # OSF/1 installbsd also uses dspmsg, but is usable.
  792. +         :
  793. +       else
  794. +         ac_cv_path_install="$ac_dir/$ac_prog -c"
  795. +         break 2
  796. +       fi
  797. +     fi
  798. +       done
  799. +       ;;
  800. +     esac
  801. +   done
  802. +   IFS="$ac_save_ifs"
  803. +   # As a last resort, use the slow shell script.
  804. +   test -z "$ac_cv_path_install" && ac_cv_path_install="$ac_install_sh"
  805. + fi
  806. +   INSTALL="$ac_cv_path_install"
  807. + fi
  808. + /bin/echo "$ac_t""$INSTALL" 1>&4
  809. + # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  810. + # It thinks the first close brace ends the variable substitution.
  811. + test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  812. + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  813. + trap '' 1 2 15
  814. + if test -w $cache_file; then
  815. + echo "updating cache $cache_file"
  816. + cat > $cache_file <<\EOF
  817. + # This file is a shell script that caches the results of configure
  818. + # tests run on this system so they can be shared between configure
  819. + # scripts and configure runs.  It is not useful on other systems.
  820. + # If it contains results you don't want to keep, you may remove or edit it.
  821. + #
  822. + # By default, configure uses ./config.cache as the cache file,
  823. + # creating it if it does not exist already.  You can give configure
  824. + # the --cache-file=FILE option to use a different cache file; that is
  825. + # what configure does when it calls configure scripts in
  826. + # subdirectories, so they share the cache.
  827. + # Giving --cache-file=/dev/null disables caching, for debugging configure.
  828. + # config.status only pays attention to the cache file if you give it the
  829. + # --recheck option to rerun configure.
  830. + #
  831. + EOF
  832. + # Ultrix sh set writes to stderr and can't be redirected directly.
  833. + (set) 2>&1 |
  834. +   sed -n "s/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/: \${\1='\2'}/p" \
  835. +   >> $cache_file
  836. + else
  837. + echo "not updating unwritable cache $cache_file"
  838. + fi
  839. + trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  840. + test "x$prefix" = xNONE && prefix=$ac_default_prefix
  841. + # Let make expand exec_prefix.
  842. + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  843. + # Any assignment to VPATH causes Sun make to only execute
  844. + # the first set of double-colon rules, so remove it if not needed.
  845. + # If there is a colon in the path, we need to keep it.
  846. + if test "x$srcdir" = x.; then
  847. +   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  848. + fi
  849. + trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
  850. + # Transform confdefs.h into DEFS.
  851. + # Protect against shell expansion while executing Makefile rules.
  852. + # Protect against Makefile macro expansion.
  853. + cat > conftest.defs <<\EOF
  854. + s%#define \([A-Za-z_][A-Za-z0-9_]*\) \(.*\)%-D\1=\2%g
  855. + s%[     `~#$^&*(){}\\|;'"<>?]%\\&%g
  856. + s%\[%\\&%g
  857. + s%\]%\\&%g
  858. + s%\$%$$%g
  859. + EOF
  860. + DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
  861. + rm -f conftest.defs
  862. + # Without the "./", some shells look in PATH for config.status.
  863. + : ${CONFIG_STATUS=./config.status}
  864. + echo creating $CONFIG_STATUS
  865. + # Some systems, like AmigaDOS, won't allow you to remove a script that is
  866. + # being executed, so just move it out of the way instead.
  867. + if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
  868. + cat > $CONFIG_STATUS <<EOF
  869. + #!/bin/sh
  870. + # Generated automatically by configure.
  871. + # Run this file to recreate the current configuration.
  872. + # This directory was configured as follows,
  873. + # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  874. + #
  875. + # $0 $ac_configure_args
  876. + #
  877. + # Compiler output produced by configure, useful for debugging
  878. + # configure, is in ./config.log if it exists.
  879. + ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
  880. + for ac_option
  881. + do
  882. +   case "\$ac_option" in
  883. +   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  884. +     echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  885. +     exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  886. +   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  887. +     /bin/echo "$CONFIG_STATUS generated by autoconf version 2.1"
  888. +     exit 0 ;;
  889. +   -help | --help | --hel | --he | --h)
  890. +     echo "\$ac_cs_usage"; exit 0 ;;
  891. +   *) echo "\$ac_cs_usage"; exit 1 ;;
  892. +   esac
  893. + done
  894. + ac_given_srcdir=$srcdir
  895. + ac_given_INSTALL="$INSTALL"
  896. + trap 'rm -f Makefile; exit 1' 1 2 15
  897. + # Protect against being on the right side of a sed subst in config.status. 
  898. + sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\\\&%]/\\\\&/g; 
  899. +  s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF
  900. + $ac_vpsub
  901. + $extrasub
  902. + s%@CFLAGS@%$CFLAGS%g
  903. + s%@CPPFLAGS@%$CPPFLAGS%g
  904. + s%@CXXFLAGS@%$CXXFLAGS%g
  905. + s%@DEFS@%$DEFS%g
  906. + s%@LDFLAGS@%$LDFLAGS%g
  907. + s%@LIBS@%$LIBS%g
  908. + s%@exec_prefix@%$exec_prefix%g
  909. + s%@prefix@%$prefix%g
  910. + s%@program_transform_name@%$program_transform_name%g
  911. + s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  912. + s%@INSTALL_DATA@%$INSTALL_DATA%g
  913. + CEOF
  914. + EOF
  915. + cat >> $CONFIG_STATUS <<EOF
  916. + CONFIG_FILES=\${CONFIG_FILES-"Makefile"}
  917. + EOF
  918. + cat >> $CONFIG_STATUS <<\EOF
  919. + for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  920. +   # Support "outfile[:infile]", defaulting infile="outfile.in".
  921. +   case "$ac_file" in
  922. +   *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
  923. +        ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
  924. +   *) ac_file_in="${ac_file}.in" ;;
  925. +   esac
  926. +   # Adjust relative srcdir, etc. for subdirectories.
  927. +   # Remove last slash and all that follows it.  Not all systems have dirname.
  928. +   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  929. +   if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  930. +     # The file is in a subdirectory.
  931. +     test ! -d "$ac_dir" && mkdir "$ac_dir"
  932. +     ac_dir_suffix="/$ac_dir"
  933. +     # A "../" for each directory in $ac_dir_suffix.
  934. +     ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  935. +   else
  936. +     ac_dir_suffix= ac_dots=
  937. +   fi
  938. +   case "$ac_given_srcdir" in
  939. +   .)  srcdir=.
  940. +       if test -z "$ac_dots"; then top_srcdir=.
  941. +       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  942. +   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  943. +   *) # Relative path.
  944. +     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  945. +     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  946. +   esac
  947. +   case "$ac_given_INSTALL" in
  948. +   [/$]*) INSTALL="$ac_given_INSTALL" ;;
  949. +   *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
  950. +   esac
  951. +   echo creating "$ac_file"
  952. +   rm -f "$ac_file"
  953. +   configure_input="Generated automatically from `/bin/echo $ac_file_in|sed 's%.*/%%'` by configure."
  954. +   case "$ac_file" in
  955. +   *Makefile*) ac_comsub="1i\\
  956. + # $configure_input" ;;
  957. +   *) ac_comsub= ;;
  958. +   esac
  959. +   sed -e "$ac_comsub
  960. + s%@configure_input@%$configure_input%g
  961. + s%@srcdir@%$srcdir%g
  962. + s%@top_srcdir@%$top_srcdir%g
  963. + s%@INSTALL@%$INSTALL%g
  964. + " -f conftest.subs $ac_given_srcdir/$ac_file_in > $ac_file
  965. + fi; done
  966. + rm -f conftest.subs
  967. + exit 0
  968. + EOF
  969. + chmod +x $CONFIG_STATUS
  970. + rm -fr confdefs* $ac_clean_files
  971. + test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS
  972. diff -rc --new-file calc-2.02c/configure.in /gnu/src/amiga/calc-2.02c/configure.in
  973. *** calc-2.02c/configure.in    Thu Jan  1 00:00:00 1970
  974. --- /gnu/src/amiga/calc-2.02c/configure.in    Mon Dec 19 18:58:23 1994
  975. ***************
  976. *** 0 ****
  977. --- 1,5 ----
  978. + dnl Process this file with autoconf to produce a configure script.
  979. + AC_INIT(calc-aent.el)
  980. + AC_PROG_INSTALL
  981. + AC_OUTPUT(Makefile)
  982. diff -rc --new-file calc-2.02c/install.sh /gnu/src/amiga/calc-2.02c/install.sh
  983. *** calc-2.02c/install.sh    Thu Jan  1 00:00:00 1970
  984. --- /gnu/src/amiga/calc-2.02c/install.sh    Mon Dec 19 19:16:04 1994
  985. ***************
  986. *** 0 ****
  987. --- 1,238 ----
  988. + #!/bin/sh
  989. + #
  990. + # install - install a program, script, or datafile
  991. + # This comes from X11R5.
  992. + #
  993. + # Calling this script install-sh is preferred over install.sh, to prevent
  994. + # `make' implicit rules from creating a file called install from it
  995. + # when there is no Makefile.
  996. + #
  997. + # This script is compatible with the BSD install script, but was written
  998. + # from scratch.
  999. + #
  1000. + # set DOITPROG to echo to test this script
  1001. + # Don't use :- since 4.3BSD and earlier shells don't like it.
  1002. + doit="${DOITPROG-}"
  1003. + # put in absolute paths if you don't have them in your path; or use env. vars.
  1004. + mvprog="${MVPROG-mv}"
  1005. + cpprog="${CPPROG-cp}"
  1006. + chmodprog="${CHMODPROG-chmod}"
  1007. + chownprog="${CHOWNPROG-chown}"
  1008. + chgrpprog="${CHGRPPROG-chgrp}"
  1009. + stripprog="${STRIPPROG-strip}"
  1010. + rmprog="${RMPROG-rm}"
  1011. + mkdirprog="${MKDIRPROG-mkdir}"
  1012. + tranformbasename=""
  1013. + transform_arg=""
  1014. + instcmd="$mvprog"
  1015. + chmodcmd="$chmodprog 0755"
  1016. + chowncmd=""
  1017. + chgrpcmd=""
  1018. + stripcmd=""
  1019. + rmcmd="$rmprog -f"
  1020. + mvcmd="$mvprog"
  1021. + src=""
  1022. + dst=""
  1023. + dir_arg=""
  1024. + while [ x"$1" != x ]; do
  1025. +     case $1 in
  1026. +     -c) instcmd="$cpprog"
  1027. +         shift
  1028. +         continue;;
  1029. +     -d) dir_arg=true
  1030. +         shift
  1031. +         continue;;
  1032. +     -m) chmodcmd="$chmodprog $2"
  1033. +         shift
  1034. +         shift
  1035. +         continue;;
  1036. +     -o) chowncmd="$chownprog $2"
  1037. +         shift
  1038. +         shift
  1039. +         continue;;
  1040. +     -g) chgrpcmd="$chgrpprog $2"
  1041. +         shift
  1042. +         shift
  1043. +         continue;;
  1044. +     -s) stripcmd="$stripprog"
  1045. +         shift
  1046. +         continue;;
  1047. +     -t=*) transformarg=`echo $1 | sed 's/-t=//'`
  1048. +         shift
  1049. +         continue;;
  1050. +     -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
  1051. +         shift
  1052. +         continue;;
  1053. +     *)  if [ x"$src" = x ]
  1054. +         then
  1055. +         src=$1
  1056. +         else
  1057. +         # this colon is to work around a 386BSD /bin/sh bug
  1058. +         :
  1059. +         dst=$1
  1060. +         fi
  1061. +         shift
  1062. +         continue;;
  1063. +     esac
  1064. + done
  1065. + if [ x"$src" = x ]
  1066. + then
  1067. +     echo "install:    no input file specified"
  1068. +     exit 1
  1069. + else
  1070. +     true
  1071. + fi
  1072. + if [ x"$dir_arg" != x ]; then
  1073. +     dst=$src
  1074. +     src=""
  1075. +     
  1076. +     if [ -d $dst ]; then
  1077. +         instcmd=:
  1078. +     else
  1079. +         instcmd=mkdir
  1080. +     fi
  1081. + else
  1082. + # Waiting for this to be detected by the "$instcmd $src $dsttmp" command
  1083. + # might cause directories to be created, which would be especially bad 
  1084. + # if $src (and thus $dsttmp) contains '*'.
  1085. +     if [ -f $src -o -d $src ]
  1086. +     then
  1087. +         true
  1088. +     else
  1089. +         echo "install:  $src does not exist"
  1090. +         exit 1
  1091. +     fi
  1092. +     
  1093. +     if [ x"$dst" = x ]
  1094. +     then
  1095. +         echo "install:    no destination specified"
  1096. +         exit 1
  1097. +     else
  1098. +         true
  1099. +     fi
  1100. + # If destination is a directory, append the input filename; if your system
  1101. + # does not like double slashes in filenames, you may need to add some logic
  1102. +     if [ -d $dst ]
  1103. +     then
  1104. +         dst="$dst"/`basename $src`
  1105. +     else
  1106. +         true
  1107. +     fi
  1108. + fi
  1109. + ## this sed command emulates the dirname command
  1110. + dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
  1111. + # Make sure that the destination directory exists.
  1112. + #  this part is taken from Noah Friedman's mkinstalldirs script
  1113. + # Skip lots of stat calls in the usual case.
  1114. + if [ ! -d "$dstdir" ]; then
  1115. + defaultIFS='    
  1116. + '
  1117. + IFS="${IFS-${defaultIFS}}"
  1118. + oIFS="${IFS}"
  1119. + # Some sh's can't handle IFS=/ for some reason.
  1120. + IFS='%'
  1121. + set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
  1122. + IFS="${oIFS}"
  1123. + pathcomp=''
  1124. + while [ $# -ne 0 ] ; do
  1125. +     pathcomp="${pathcomp}${1}"
  1126. +     shift
  1127. +     if [ ! -d "${pathcomp}" ] ;
  1128. +         then
  1129. +         $mkdirprog "${pathcomp}"
  1130. +     else
  1131. +         true
  1132. +     fi
  1133. +     pathcomp="${pathcomp}/"
  1134. + done
  1135. + fi
  1136. + if [ x"$dir_arg" != x ]
  1137. + then
  1138. +     $doit $instcmd $dst &&
  1139. +     if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
  1140. +     if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
  1141. +     if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
  1142. +     if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
  1143. + else
  1144. + # If we're going to rename the final executable, determine the name now.
  1145. +     if [ x"$transformarg" = x ] 
  1146. +     then
  1147. +         dstfile=`basename $dst`
  1148. +     else
  1149. +         dstfile=`basename $dst $transformbasename | 
  1150. +             sed $transformarg`$transformbasename
  1151. +     fi
  1152. + # don't allow the sed command to completely eliminate the filename
  1153. +     if [ x"$dstfile" = x ] 
  1154. +     then
  1155. +         dstfile=`basename $dst`
  1156. +     else
  1157. +         true
  1158. +     fi
  1159. + # Make a temp file name in the proper directory.
  1160. +     dsttmp=$dstdir/#inst.$$#
  1161. + # Move or copy the file name to the temp name
  1162. +     $doit $instcmd $src $dsttmp &&
  1163. +     trap "rm -f ${dsttmp}" 0 &&
  1164. + # and set any options; do chmod last to preserve setuid bits
  1165. + # If any of these fail, we abort the whole thing.  If we want to
  1166. + # ignore errors from any of these, just make sure not to ignore
  1167. + # errors from the above "$doit $instcmd $src $dsttmp" command.
  1168. +     if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
  1169. +     if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
  1170. +     if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
  1171. +     if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
  1172. + # Now rename the file to the real destination.
  1173. +     $doit $rmcmd -f $dstdir/$dstfile &&
  1174. +     $doit $mvcmd $dsttmp $dstdir/$dstfile 
  1175. + fi &&
  1176. + exit 0
  1177.