diff options
author | Will Andrews <will@FreeBSD.org> | 2000-07-12 14:32:47 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-07-12 14:32:47 +0000 |
commit | e9e43bd953efc48d9786da907c405666c54d4095 (patch) | |
tree | f5de3b923a68c54141b308c2bab9ca7d3c866881 /graphics/jslice/files/patch-aa | |
parent | From PR: (diff) |
Add jslice, a graphics utility which breaks up a JPEG image into slices
and provides HTML code referring the slices.
Notes
Notes:
svn path=/head/; revision=30514
Diffstat (limited to 'graphics/jslice/files/patch-aa')
-rw-r--r-- | graphics/jslice/files/patch-aa | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/jslice/files/patch-aa b/graphics/jslice/files/patch-aa new file mode 100644 index 000000000000..82d7a63176c2 --- /dev/null +++ b/graphics/jslice/files/patch-aa @@ -0,0 +1,15 @@ +--- Makefile Wed May 31 12:39:28 2000 ++++ Makefile.new Wed Jul 12 10:23:42 2000 +@@ -1,5 +1,11 @@ ++LOCALBASE ?= /usr/local ++CC ?= cc ++INC ?= -I$(LOCALBASE)/include ++LIB ?= -L$(LOCALBASE)/lib ++CFLAGS ?= -O -pipe ++ + all: +- gcc jslice.c -o jslice -Wall -ljpeg ++ $(CC) $(CFLAGS) $(INC) $(LIB) jslice.c -o jslice -Wall -ljpeg + + install: + cp jslice /usr/local/bin |