diff options
author | Steve Price <steve@FreeBSD.org> | 1998-02-20 02:31:23 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1998-02-20 02:31:23 +0000 |
commit | c02e6eb9993fe450e7899c178d155fc97abdc5cb (patch) | |
tree | 95799471004f9bad87a2e983fddbba20e6a95d5c /graphics/fbm/files/patch-aa | |
parent | Instead of using ssleay.cnf.sample warn the user that they must (diff) |
Initial import of fbm-1.2
Fuzzy Pixmap Manipulation utilities.
PR: 5774
Submitted by: Pedro F. Giffuni <giffunip@asme.org>
Diffstat (limited to 'graphics/fbm/files/patch-aa')
-rw-r--r-- | graphics/fbm/files/patch-aa | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/graphics/fbm/files/patch-aa b/graphics/fbm/files/patch-aa new file mode 100644 index 000000000000..4d825d299ac3 --- /dev/null +++ b/graphics/fbm/files/patch-aa @@ -0,0 +1,69 @@ +*** Makefile.orig Thu Jun 3 11:30:50 1993 +--- Makefile Tue Feb 17 14:37:50 1998 +*************** +*** 63,94 **** + # + ################################################################ + +! INSTALL= ln +! BIN= /usr/mlm/bin/ +! MAN= /usr/mlm/man/ +! FTP= /usr/mlm/ftp/ +! TIFINC= ../tiff/libtiff/ +! TIFLIB= ../tiff/libtiff/ + MANEXT= l + + # Make the C compiler behave on the NeXT +! DBG= -g -D__STRICT_BSD__ + + #----------------JPEG linkage---------------- + # If you don't have the JPEG library, use these two lines +! #JPEG= +! #JLIB= + # If you have the JPEG library, use the next lines instead +! JPEG= -DDO_JPEG -I../jpeg +! JLIB= -L../jpeg -ljpeg + + #----------------Utah RLE linkage---------------- + # If you don't have the Utah RLE library, use these two lines + RLE= + RLIB= + # If you have the Utah RLE library, use the next lines instead +! #RLE= -DRLE -I/usr/mlm/include +! #RLIB= -L. -lfbm -L/usr/mlm/lib -lrle + + LIB= -L. -lfbm $(JLIB) $(RLIB) + +--- 63,94 ---- + # + ################################################################ + +! INSTALL= install +! BIN= $(PREFIX)/bin/ + MANEXT= l ++ MAN= $(PREFIX)/man/man$(MANEXT)/ ++ FTP= /usr/mlm/ftp/ ++ TIFINC= $(LOCALBASE)/include/ ++ TIFLIB= $(LOCALBASE)/lib/ + + # Make the C compiler behave on the NeXT +! # DBG= -g -D__STRICT_BSD__ + + #----------------JPEG linkage---------------- + # If you don't have the JPEG library, use these two lines +! JPEG= +! JLIB= + # If you have the JPEG library, use the next lines instead +! #JPEG= -DDO_JPEG -I$(LOCALBASE)/include +! #JLIB= -L$(LOCALBASE)/lib -ljpeg + + #----------------Utah RLE linkage---------------- + # If you don't have the Utah RLE library, use these two lines + RLE= + RLIB= + # If you have the Utah RLE library, use the next lines instead +! #RLE= -DRLE -I$(LOCALBASE)/include +! #RLIB= -L. -lfbm -L$(LOCALBASE)/lib -lrle + + LIB= -L. -lfbm $(JLIB) $(RLIB) + |