home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / ixemul-45.0-src.tgz / tar.out / contrib / ixemul / NEWS < prev    next >
Text File  |  1996-10-04  |  26KB  |  613 lines

  1. ============
  2. VERSION 45.0
  3. ============
  4.  
  5. Moved popen() and pclose() into ixemul.library from libc.a. These functions
  6. are used regularly by libraries, and having them in ixemul.library makes
  7. the conversion of those static libraries into shared libraries easier.
  8. Besides, these functions are used frequently enough to warrant their
  9. integration into ixemul.library.
  10.  
  11. Added a patch from Kamil Iskra that fixes problems with -mstackextend and
  12. vfork2(). However, such programs *must* call vfork_setup_child().
  13.  
  14. Thanks to Lars Hecking, a new fnmatch(3) with extended functionality is
  15. available. The fnmatch code is copied from the NetBSD sources.
  16.  
  17. Added new manual pages.
  18.  
  19. Upgraded ixemul to the new structure passing scheme of gcc (A1 contains a
  20. pointer to the return structure). This involved ldiv(), div() and
  21. inet_makeaddr(). Thanks to Kamil Iskra for providing me with patches to
  22. implement this.
  23.  
  24. Upgraded the timezone stuff to the latest version.
  25.  
  26. Implemented Unix Domain sockets. Missing features: datagrams aren't
  27. (yet?) supported, and connect() doesn't have a timeout.
  28.  
  29. Removed stack watcher code. It was seldom used, and it was never very
  30. reliable.
  31.  
  32. Implemented sessions. This improves Ctrl-C handling, and is required to
  33. make full use of xterm.
  34.  
  35. Fixed an unlink bug (it has to check all open files for the given filename)
  36. and a bug in ix_lock_base/ix_unlock_base: if these calls were nested, the
  37. signal masked was restored to ~0 instead of the original value.
  38.  
  39. Added a new utility, ixstack, and a new global variable, __stack, to allow
  40. the user and programmer to specify a minimum stacksize. If the current
  41. stack is too small, a new stack is automatically allocated. Thanks to Kamil
  42. Iskra for implementing this.
  43.  
  44. ioctl(fd, TIOCGPGRP, ...) now returns something useful. NcFtp didn't show
  45. the progress bar anymore because of this.
  46.  
  47. Added large-baserel libraries and startup-code.
  48.  
  49. ============
  50. VERSION 44.0
  51. ============
  52.  
  53. Kriton Kyrimis updated ixprefs.
  54.  
  55. David Zaroski updated ixtrace.
  56.  
  57. Fixed link count for directories. Thanks to Norbert Pueschel.
  58.  
  59. umask implemented for for open() and mkdir(). Thanks to Norbert Pueschel.
  60.  
  61. Added muFIBB_SET_GID, which will be implemented in the next version
  62. of MultiUser. The old way of handling setgid was confusing and even
  63. potentially dangerous.  Thanks to Norbert Pueschel.
  64.  
  65. Added the translation unix sticky bit -> AmigaOS h bit. This one is
  66. more for aestaethical reasons, as the h bit is no longer supported in 3.x.
  67. Thanks to Norbert Pueschel.
  68.  
  69. Added a field 'void *u_user;' near the beginning of the user struct which
  70. everybody is free to (ab)use. It can be handy to store task private data
  71. in the user struct, at least, I had to use it recently.
  72.  
  73. Added an ix_amiga.h header, which will contain all amiga specific functions
  74. and macros in ixemul.library and libc.a, together with a description.
  75.  
  76. Profiling has been enhanced. Ixprefs adds a new profiling preference:
  77. either take samples only while your program is running and the PC is within
  78. your program, or take samples while your program is running and if the PC
  79. is outside your program code (e.g. in ixemul or in intuition.library), use
  80. the last function your program entered before calling ixemul or whatever,
  81. or always take samples, even if other programs are running.  Again, the
  82. last recorded function gets the hit in those cases.
  83.  
  84. An array of 100 longs to store the A4 register of shared libraries has been
  85. added to the user struct. This array can be easily increased in future
  86. releases, should the need arise. The first 20 slots are for your own free
  87. use, the other slots should be registered. See the file REGISTRY in the
  88. ixemul source distribution for more details.
  89.  
  90. Fixed yet another path bug. Running a shell script that's placed somewhere
  91. in your PATH from 'make' failed, unless the filename of the script was
  92. absolute.
  93.  
  94. Added vfork_setup_child to libc.a. This is a wrapper intended to make life
  95. just a little bit easier for those who need to use the vfork2()/vfork_resume()
  96. trick. It replaces the old 'ix_resident()/ix_get_vars2()' pair.
  97.  
  98. Fixed more problems with the routines that start a shell script. This time
  99. problems with symbolic links have been fixed.
  100.  
  101. Fixed problems when parsing a pathname of a shell script, preventing the
  102. execution of that script.
  103.  
  104. Replaced the stdio-sources by the NetBSD 44.0 versions, which incidentally
  105. fixed the broken fgetpos function. This change also adds printf() and scanf()
  106. support for the 'long long' datatype.
  107.  
  108. Added support for the O_CASE open() flag: this will open an existing file
  109. only if the filenames match using a case-sensitive comparison.
  110.  
  111. fstat() didn't compensate the file time for the current timezone offset.
  112.  
  113. Ixemul now supports the 68010 CPU. Thanks to Pascal Eeftinck for pointing
  114. out that the 68010 uses a 68020-like stackframe.
  115.  
  116. Build the version.[ch] files in the build directory instead of in the
  117. source directory.
  118.  
  119. Fixed fchdir().
  120.  
  121. Changed the machine name as returned by uname() to "m68k". Thanks to Lars
  122. Hecking for this.
  123.  
  124. O_ASYNC I/O is now partially supported: select() will test for this
  125. situation.
  126.  
  127. /dev/tty is now translated to console:.
  128.  
  129. Implemented pseudo-terminals support using the FIFO device.
  130.  
  131. Many, mostly small, changes to become more NetBSD compatible. Where
  132. possible, I've replaced the old sources with the NetBSD 1.1 sources.
  133.  
  134. The select() function has been improved: it is now much faster and works
  135. much better.
  136.  
  137. Using F_SETFL with fcntl() failed if the file wasn't a regular file. It now
  138. also works for pipes and sockets.
  139.  
  140. Requesters that are from ixemul.library or ixnet.library now have the name
  141. of the library as their title, so that you can see that they are from the
  142. library, and not from the application. Thanks to Udo Schnurpfeil for
  143. suggesting this.
  144.  
  145. The tty database functions unfortunately slipped through and weren't
  146. included with 43.1. They are back in 44.0.
  147.  
  148. Implemented mmap() and friends. Of course, any mmap feature that actually
  149. requires a MMU will return an error. But if mmap() is used to load a file
  150. into memory, then it works fine.
  151.  
  152. ============
  153. VERSION 43.2
  154. ============
  155.  
  156. Applied patch from Kamil Iskra to improve ixemul stack extension
  157. handling.
  158.  
  159. ============
  160. VERSION 43.1
  161. ============
  162.  
  163. Ixemul no longer uses async writes. All I/O is now synchronous. This
  164. allowed me to remove several Disable()/Enable() pairs, and actually made
  165. ixemul faster. Apparently the overhead in handling async I/O was
  166. substantial.
  167.  
  168. Applied patches from Jeff Shepherd fixing various problems in the
  169. ixnet.library. Among them improved AS225 passwd handling.
  170.  
  171. Moved the resolver functions out of ixnet.library into libc.a. All programs
  172. that used these functions will have to be recompiled. Very few programs use
  173. these functions, and since they are really higher level functions and do
  174. not belong in a low level library like ixnet, I've moved them.
  175.  
  176. Also moved tty database functions (getttyent() and friends, ttyname() and
  177. ttyslot()) to libc.a, for much the same reason.
  178.  
  179. Added the NetBSD DB sources to libc.a and removed the hacked versions from
  180. ixnet.
  181.  
  182. Replaced various headers with the NetBSD versions. Important for certain
  183. socket-related ioctl defines that were incorrect in the old headers.
  184.  
  185. Added ptrace(GETA4, pid, 0, 0) to obtain the value of the a4 register if
  186. this executable was compiled with -fbaserel or -resident. Needed by gdb to
  187. find out where the data section is.
  188.  
  189. Added ptrace(GETEXENAME, pid, 0, 0) to obtain the name of the current
  190. executable. Useful in scripts that start with '#!/bin/sh' or something
  191. similar. 'argv[0]' as seen by sh is the name of the script, but if you want
  192. to get the pathname of 'sh' itself, you can use this ptrace call.
  193.  
  194. Added setlocale() and ctermid() to libc.a.
  195.  
  196. It is now possible to unlink() a file that is owned by another process
  197. (just like Unix). Gcc uses this to remove temporary files that are actually
  198. owned by cpp (or as). Of course, on the Amiga this is implemented as a
  199. delayed delete, i.e. a flag is set in the 'struct file' to tell ixemul to
  200. delete the file when it is closed by the owner process.
  201.  
  202. Added support for a root ('/') directory. This will only work for programs
  203. that use ixemul.library. So if you start pdksh, 'cd' to the root (cd /) and
  204. use the AmigaOS command 'list' to view this directory, then you won't get
  205. what you expect. If you use the Unix ls command however, then you will see
  206. all the volumes that you have as top level directories.
  207.  
  208. Removed an old hack in __wait_packet.c that interfered with Ctrl-F
  209. handling.
  210.  
  211. Fixed a bug in fnctl(), F_SETFL.
  212.  
  213. Added AFS, AFSFloppy and PFS support.  Many thanks to the AFS author,
  214. Michiel Pelt, who provided me with the necessary technical information, and
  215. to Kriton Kyrimis for giving some very useful suggestions.
  216.  
  217. Added MultiUserFileSystem support, contributed by Mike Krings. Thanks Mike!
  218.  
  219. Added new function ix_warning: similar to ix_panic, but allows the user to
  220. choose between "Continue" and "Abort". This to work around a case like:
  221.  
  222.     for (;;) crypt();
  223.  
  224. where one couldn't break out of the program because the requester kept
  225. popping up.
  226.  
  227. Fixed -mstackcheck support and fixed buggy baserel-stackextend support.
  228.  
  229. The call socket(AF_UNIX, SOCK_STREAM, 0) no longer crashes if ixnet.library
  230. is not installed.
  231.  
  232. Reorganized Makefiles. I've removed the option to compile each source
  233. separately, instead they are always catenated together. Also, 'make' no
  234. longer starts itself two more times in order to make the library. I've
  235. used GNU make wizardry to let 'make' figure out all the targets by itself.
  236.  
  237. Sigsetjmp and siglongjmp were broken. Fixed.
  238.  
  239. Replaced the old man pages with the new NetBSD manual pages in the original
  240. troff form.
  241.  
  242. Replaced the nice() stub in ix_stub with nice.c from NetBSD.
  243.  
  244. Removed a Delay(100) that was called just before a vfork()ed program finally
  245. terminated.
  246.  
  247. Made h_errno a global variable like errno.
  248.  
  249. At several places in the library the errno variable was reset to 0.
  250. However, the library should (almost) never set errno to 0. This caused
  251. problems with the 'ping' program, where recvfrom set errno to 4, but the
  252. library changed it back to 0 before 'ping' got to see it.
  253.  
  254. Now sets st_uid and st_gid from a 'stat' structure to the effective UID and
  255. GID. Some programs tested these fields and they failed when using
  256. networking support. These fields used to be 0.
  257.  
  258. Reread the global environment variables only when 1) a new program is
  259. started, and 2) the ENV: directory has been changed (i.e., a new setting
  260. was added to ENV:). ENV: used to be read every time a program was started,
  261. whether it was needed or not.
  262.  
  263. Given the shell script s.sh in /ram/t:
  264.  
  265.     #!/bin/sh
  266.     /bin/echo $0
  267.  
  268. 'sh /ram/t/s.sh' produced '/ram/t/s.sh', while typing '/ram/t/s.sh' from
  269. within the pdksh shell produced 'Ram:t/s.sh'. Fixed.
  270.  
  271. Removed a dubious CurrentDir() to a *file* instead of a directory.  While
  272. this is apparently supported for the standard AmigaOS filesystems, not all
  273. third-party filesystems supported this.
  274.  
  275. When you try to use a >68020 ixemul.library on a 68000 Amiga, you now get a
  276. decent message instead of a crash.
  277.  
  278. ============
  279. VERSION 43.0
  280. ============
  281.  
  282. Integrated Jeff Shepherd's networking code. If ixnet.library is installed,
  283. then ixemul.library will use the networking functions from the
  284. ixnet.library, instead of the default dummy implementation. Ixnet.library
  285. works with AS225 and with AmiTCP. It supports both clients and daemons.
  286. A program that uses networking functions is completely shielded from the
  287. AS225 and AmiTCP differences by ixnet.library. That library will take care
  288. of all the details for you. That means that there is no longer any need to
  289. provide two different binaries, one for AS225 and one for AmiTCP.
  290. Furthermore, it is relatively easy to add support for other network
  291. packages. Thanks, Jeff!
  292.  
  293. Added stackchecking and extension code, thanks to Matthias Fleischer.
  294.  
  295. Finalized GDB support.
  296.  
  297. ============
  298. VERSION 42.1
  299. ============
  300.  
  301. Fixed bugs when running non-ixemul programs from tools like pdksh or make.
  302. You could get Enforcer hits and the Ctrl-C support also crashed the Amiga.
  303.  
  304. Use the NetBSD code for the system() function instead of using the Amiga
  305. kernel function SystemTagList. This was the cause of several
  306. incompatibilities when porting Unix programs.
  307.  
  308. Improved termios support (added OPORT and ONLCR flags and the INLCR flag).
  309.  
  310. Fixed ptrace handling. Almost none of Leonard's code has survived, I used a
  311. completely different method.
  312.  
  313. Fixed a problem where the name of the current directory, as is visible
  314. by the shell, wasn't changed when a program terminated and ixemul reset the
  315. current directory to its original place.
  316.  
  317. Improved performance somewhat by no longer going through address 4 to get
  318. to the ExecBase structure. Instead, it's copied once to the SysBase
  319. variable, and thereafter only that variable is used. The Enforcer manual
  320. warned against accessing address 4 too often, and ixemul.library did that
  321. a lot.
  322.  
  323. Also improved performance by fixing a busy wait. At one point in the
  324. ixemul, the program cannot continue until a context switch has taken place.
  325. So ixemul waits until the dispatch count of ExecBase has changed,
  326. indicating that a context switch has taken place. By installing a small,
  327. high priority (9) task with body "for (;;) Wait(1 << 31);" and signalling
  328. that task whenever a context switch is needed, I was able to circumvent the
  329. busy wait loop. Because of the high priority of the Task, a context switch
  330. would take place immediately. The task itself goes back to sleep at once,
  331. so there is no time lost there.
  332.  
  333. ============
  334. VERSION 42.0
  335. ============
  336.  
  337. Installed patch in arith.c to work around bug in IEEEDPCmp.  If the first
  338. 32 bits of both doubles are equal, and both doubles are negative, then
  339. the result can no longer be trusted.  Discovered by Bart Van Assche.
  340.  
  341. Ixtrace has been updated to recognize all 42.0 syscalls, thanks to David
  342. Zaroski.
  343.  
  344. Ctrl-C handling worked with KingCON, but not with the standard AmigaOS
  345. CON-handler (since I use KingCON I never noticed this until it was pointed
  346. out to me by Fred Fish :-). This has now been fixed. See the comments in
  347. library/__read.c for more information.
  348.  
  349. Added the uname() function, written by Lars Hecking.
  350.  
  351. The termios code now properly recognizes the ICRNL input flag for '\r' to
  352. '\n' translation.
  353.  
  354. Fixed a bug in the fcntl() function (actually, in the fcntl.h and
  355. sys/fcntl.h headers).
  356.  
  357. Moved several static variables to user.h, so they are now process-specific.
  358.  
  359. Added profiling support. It was always there, but it was never actually
  360. used.
  361.  
  362. The write() function writes its buffer line-by-line instead of in one big
  363. chunk if the filehandle is the handle of an interactive stream (for
  364. example, a console window). This allows the user to interrupt the output by
  365. pressing a key and it also allows the use of Ctrl-C to break the program.
  366. In previous versions you were unable to stop the output if you forgot to
  367. redirect it to a file. E.g., 'cat /libs/ixemul.library' would essentially
  368. take over the computer.
  369.  
  370. Changed default stack size handling when a new process is launched. It is
  371. either the value of the environment variable IXSTACK, or it inherits the
  372. size from its parent, but if that size is less than 16384, it uses a stack
  373. of 16384 bytes instead.
  374.  
  375. Replaced ixconfig by ixprefs (written by Kriton Kyrimis).
  376.  
  377. Integrated the partial ptrace support from Leonard Norrgard.
  378.  
  379. Removed the gnulib, gnulib-68881 and gnulib-soft-float directories.
  380.  
  381. Compiled with -Wall and fixed (nearly) all warnings. Some warnings are
  382. inevitable and cannot be avoided. -Wall already caught one illegal memory
  383. access bug in __Close()!
  384.  
  385. Added functions to set and get ixemulbase-private information. This will
  386. break older ixconfig's but is much cleaner. Nearly all of the ixemulbase
  387. structure is now off-limits and liable to change without notice! You are
  388. warned! In fact, the structure has been changed already. The library will
  389. complain if a program called 'ixconfig' tries to use it to prevent the user
  390. from using an old ixconfig with the new library.
  391.  
  392. Removed several arithmetic functions dealing with 'long long' types. They
  393. didn't belong in the library, link with libgcc.a instead. Also removed some
  394. arithmetic functions that are never called because they are compiled
  395. directly in 68000 assembly. Don't know why they were ever added.
  396.  
  397. Fixed gen_glue.c so that it no longer generates glue for obsolete functions.
  398.  
  399. Removed ssystem(). ssystem() was the precursor of vfork/execve, and is no
  400. longer needed. NOTE: it is still used in gcc. But this fails spectacularly
  401. once you use Ctrl-C! Delete gcc and replace it by gccv, this one uses
  402. vfork/execve as it should and works perfectly.
  403.  
  404. ixemul.library now uses the new-style inlines.
  405.  
  406. qsort() is now re-entrant and no longer uses the horrible Semaphore hack.
  407.  
  408. Moved general/fts.c to the static library. These directory-tree traversal
  409. functions are rarely, if ever used, so they belong in libc.a and not in a
  410. shared library.
  411.  
  412. Reorganized the Makefiles. The makefiles now use several GNU make-only
  413. features to make them smaller and easier to maintain.  'make clean' and
  414. 'make clobber' now work correctly.  It is also no longer nessecary to add
  415. the -srcdir option to 'sh configure' in order to create valid Makefiles.
  416.  
  417. The top level Makefile contains the line 'export CATENATE = 1'. If this
  418. line is present, the compilation speed is greatly improved by catenating
  419. several small C-sources together into one bigger C-source, and then the
  420. bigger one is compiled. By commenting this line each separate source is 
  421. compiled. Note that besides improving compilation speed, the library also
  422. gets smaller as the compiler can now determine whether a call can be made
  423. relative or should remain absolute.
  424.  
  425. Fixed a symlink-bug (ln -s /ram/t created a symlink to /am/t, removing the
  426. first character of the volumename).
  427.  
  428. Moved ixtrace to the new utils directory, together with the small ixrun
  429. utility.  ixrun can be used to run Amiga batch files from /bin/sh (just put
  430. ';!ixrun' at the second line (!) of the batch file).  Also added manual
  431. page for ixrun.
  432.  
  433. Cleaned up the static directory:  removed xmalloc.c and alloca.c as they do
  434. not belong in the standard C library.  Also replaced the ctime.c source by
  435. the version from elsie.nci.nih.gov, which is the official version used by
  436. NetBSD and Linux, among others.  Finally, errlst.c and siglist.c now just
  437. include their counterparts in the general directory.
  438.  
  439. The version information is placed in the version.in file in the
  440. top-level directory. The version.c and version.h sources are created from
  441. this file.
  442.  
  443. The print_base_size.c and print_user.c sources have been replaced by
  444. create_header.c, which creates a header containing a few defines that are
  445. used by start.s and trap.s. These used to be hard-coded, but now they are
  446. generated, preventing future mistakes.
  447.  
  448. Added the raise function. For some reason, raise.c was never compiled into
  449. the library. It is now.
  450.  
  451. Removed ALL sources that were not needed for compilation.
  452.  
  453. Added timezone handling. The timezone databases from elsie.nci.nih.gov are
  454. used and installed in etc:zoneinfo. The new ixtimezone utility should be
  455. added to the startup-sequence. This utility determines the correct offset
  456. for Greenwich Mean Time. Read the manual page (Yes! Documentation at last!)
  457. for more information.
  458.  
  459. Merged the ixpipe-handler into the ixemul-distribution. It has been placed
  460. in the utils-directory.
  461.  
  462. Added hack to allow ixemul to run AmigaOS scripts without breaking them
  463. when run from the AmigaOS shell. The problem is that the ".KEY" string
  464. must be at the first line of the script, while ixemul also looks for "#!"
  465. and ";!" in the first line. If a file starts with ".KEY", ixemul will now
  466. skip the first line, before checking for "#!" and ";!".
  467.  
  468. ============
  469. VERSION 41.4
  470. ============
  471.  
  472. Integrated patches from Hans Verkuil that fix CTRL-C handling, fix another
  473. signal bug, fix problem with "rm -f", prepare for proper timezone handling,
  474. and remove '@' hack in argument parsing.
  475.  
  476. Applied patch from Kamil Iskra to avoid incompatibility between ixemul
  477. and the popular KingCON 1.3.  This is KingCON's fault because it makes
  478. invalid assumptions about the nature of reply port contained in "dp_Port"
  479. of packets sent to it.  Also applied patch (duplicated in Hans' patches)
  480. to crt0.c that fixes bug where the revision requester was not working
  481. properly if the current revision is 0.
  482.  
  483. Applied patch from Rask Lambertsen (duplicated in Hans' patches) that makes
  484. ixemul.library open "CONSOLE:" instead of "*".
  485.  
  486. Added implementation from Kriton Kyrimis for srand48, seed48, lcong48,
  487. lrand48, nrand48, mrand48, jrand48, drand48, and erand48.
  488.  
  489. Added "#include <sys/types.h>" to <dirent.h> to be more compatible
  490. with most current systems that do this inclusion for you.  This change
  491. should be backwards compatible with code that does the inclusion
  492. explicitly.  Suggested by Lars Hecking.
  493.  
  494. Changed prototype in <unistd.h> for getpgrp() to take a pid_t argument,
  495. which matches the implementation in library/getcrap.c.  Suggested by
  496. Lars Hecking.
  497.  
  498. Made change to <math-68881.h> in pow() so that if x<0 the code does
  499. log(-x) rather than log(x).  Suggested by Thomas Radtke and implemented
  500. by Lars Hecking.
  501.  
  502. Disable definitions of F_GETLK, F_SETLK, F_SETLKW, F_RDLCK, F_UNLCK, and
  503. F_WRLCK in <fcntl.h> since they are unimplemented and thus might have misled
  504. autoconfiguration schemes into thinking they were available.  Also fix
  505. ixtrace.c so it will still compile without these defined.  Suggested by
  506. Robert Ramiega.
  507.  
  508. Integrated patch from Joop van de Wege (duplicated in Hans' patches) for
  509. setting up fpu on 68060.
  510.  
  511. ============
  512. VERSION 41.3
  513. ============
  514.  
  515. Updated DBL_MIN and DBL_MAX in float.h to include one additional digit
  516. of precision.  Enclose negative constants in parens to avoid unexpected
  517. conversion to subtraction via cpp macros.
  518.  
  519. Applied patch from Hans Verkuil to fix serious bug in signal handling,
  520. to reset all signal handlers after an execve, except for those which are
  521. being ignored (SIG_IGN).
  522.  
  523. Applied patch from Joop van de Wege to trap.s to set 68881 rounding mode
  524. back to truncation instead of "round to nearest", as required by the
  525. ANSI C standard which specifies truncation.
  526.  
  527. Integrated ixtrace into source tree and arranged for it to be built and
  528. installed.
  529.  
  530. ============
  531. VERSION 41.2
  532. ============
  533.  
  534. Added "#include <sys/types.h>" to <sys/stat.h> to be more compatible
  535. with most current systems that do this inclusion for you.  This change
  536. should be backwards compatible with code that does the inclusion
  537. explicitly.
  538.  
  539. Changed version string to be style guide compliant.  Also arranged that
  540. version.o gets linked in, since it has the $VER: string and is otherwise
  541. unreferenced by any ixemul.library code.
  542.  
  543. Merged patches from Hans Verkuil to fix execve environment passing,
  544. always open the console for stderr if no other file handle is provided,
  545. move AmigaOS style filename matching into glob(), and fix a small problem
  546. with "open(NULL,...) that caused enforcer hits.
  547.  
  548. ============
  549. VERSION 41.1
  550. ============
  551.  
  552. A 68040 version of the library with soft floating point is now built,
  553. since there are apparently systems that use the versions of the 68040
  554. without FPUs.
  555.  
  556. Fixed crt0 files to use "jra _ENTRY" as first instruction rather than
  557. "jmp pc@(_ENTRY)" which was getting assembled by gas 2.5.2 as a 68020+
  558. instruction.  Note "jmp pc@(_ENTRY:W)" seems to generate the 68000
  559. instruction but a bad jump offset.  Added corresponding change to
  560. execve.c to recognize ixemul using executables with this change.
  561.  
  562. Fixed cpu.h, machdep.c, trap.s to avoid pc relative assembly instruction
  563. that was getting compiled as 68020+ instruction and causing crashes on
  564. 68000 machines.
  565.  
  566. Fixed numerous files that did "#include" of "DEFS.H" rather than "defs.h".
  567. This is an innocuous bug on the Amiga, which is case independent, but
  568. it kills cross compilations.
  569.  
  570. ============
  571. VERSION 41.0
  572. ============
  573.  
  574. No significant changes since the 40.6 beta release other than the
  575. mechanism (and macros) for building debug versions has been cleaned
  576. up and the version number has been bumped to 41.0.
  577.  
  578. Did include the cat'able man pages back in the source tree, but no
  579. work has been done yet to track down the sources for the man pages
  580. and arrange for them to be properly integrated into the tree and
  581. have the cat'able versions generated from those sources.
  582.  
  583. ============
  584. VERSION 40.6
  585. ============
  586.  
  587. Many bugs have been fixed since the 40.4 release, including a serious
  588. one that was causing memory corruption and many enforcer or mungwall
  589. hits.
  590.  
  591. Network support has been reintegrated into the library, however it is
  592. still mostly untested.  In particular, many functions are only
  593. available for static linking from the libnet.a library.  By the next
  594. release, it is expected that libnet.a will be incorporated in libc.a.
  595.  
  596. Work is underway to merge the best features from at least two
  597. different strains of the ixemul library.  Many more changes are
  598. expected by the 41.0 release.
  599.  
  600. An environment variable called "IXSTACK" is now used to control the
  601. stack size of programs started by system().  If the current stack is
  602. smaller than the value in IXSTACK, the stack is raised to the value
  603. specified in IXSTACK.  So IXSTACK is a minimum value.
  604.  
  605. Automatic stack checking, with a requestor if the stack overflows, is
  606. available for executables compiled with a version of gcc that supports
  607. the -mstackcheck option.  This also requires linking with new crt0 and
  608. libc.a.
  609.  
  610. Automatic stack extension as necessary is available for executables
  611. compiled with a version of gcc that supports the -mstackextend option.
  612. This also requires linking with new crt0 and libc.a.
  613.