freebsd-ports/lang/modula-3-lib/files/patch-aj
John Polstra d5a92ea924 Split the Modula-3 port into two pieces, creating a new port
"modula-3-lib".  It installs only the shared libraries needed for
executing Modula-3 programs.  This saves a lot of disk space for
people who need to run Modula-3 programs but don't need to build
them.  The original "modula-3" port now depends on this one, and
uses it to install the compiler and the rest of the development
system.

Also, everything is now built with optimization.  I have been
testing this for at least a month, and haven't seen any problems
from it.  It makes the libraries and executables substantially
smaller.

This new port also includes some hooks that will make SOCKS support
possible in the near future.
1996-10-29 23:01:55 +00:00

17 lines
677 B
Text

Fix an erroneous structure declaration for FreeBSD.
Index: m3/m3core/src/C/FreeBSD2/Cstdio.i3
===================================================================
RCS file: /home/jdp/m3-cvs/m3/m3core/src/C/FreeBSD2/Cstdio.i3,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 Cstdio.i3
--- Cstdio.i3 1996/09/24 05:21:57 1.1.1.1
+++ Cstdio.i3 1996/09/24 05:32:37
@@ -55,6 +55,7 @@
(* Unix stdio files get aligned to block boundaries on fseek() *)
blksize : int; (* stat.st_blksize (may be != _bf._size) *)
offset : off_t; (* current lseek offset *)
+ pad1 : int; (* assume high 4 bytes of offset are 0 *)
END;