MS-DOS patches to perl. Apply this patch to the standard perl source, version 4, patch level 19, using "patch -p." Do this in the root directory of the perl source distribution. You can cat all these patches together and pipe the output to patch -p. Len Reed Holos Software, Inc. ..!gatech!holos0!lbr holos0!lbr@gatech.edu -------------------------------------- *** msdos/glob.c.old Tue Apr 23 22:38:24 1991 --- msdos/glob.c Thu Nov 14 08:56:34 1991 *************** *** 1,6 **** /* * Globbing for MS-DOS. Relies on the expansion done by the library ! * startup code. (dds) */ #include --- 1,15 ---- /* * Globbing for MS-DOS. Relies on the expansion done by the library ! * startup code. (dds) Comments updated lbr. ! * ! * Used only when MKS toolkit is not avaialable. (MKS users use Korn shell.) ! * ! * Compile this and link it with the Microsoft object file ! * setargv.obj found in the LIB subdirectory supplied with the compiler. ! * ! * Important: the result should be named PERLGLOB.EXE and put into ! * a dirctory in your PATH. (The name change from GLOB.EXE was ! * necessitated so that one perl.exe can work with and without MKS tools.) */ #include *************** *** 14,17 **** --- 23,27 ---- fputs(strlwr(argv[i]), stdout); putchar(0); } + return 0; }