mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
5a12e7c134
Wed Aug 26 10:00:38 CDT 2009 Slackware 13.0 x86_64 is released as stable! Thanks to everyone who helped make this release possible -- see the RELEASE_NOTES for the credits. The ISOs are off to the replicator. This time it will be a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We're taking pre-orders now at store.slackware.com. Please consider picking up a copy to help support the project. Once again, thanks to the entire Slackware community for all the help testing and fixing things and offering suggestions during this development cycle. As always, have fun and enjoy! -P.
63 lines
1.9 KiB
Diff
63 lines
1.9 KiB
Diff
diff -c -r seejpeg-1.10.orig/Makefile seejpeg-1.10/Makefile
|
|
*** seejpeg-1.10.orig/Makefile Sat Nov 6 21:55:19 1999
|
|
--- seejpeg-1.10/Makefile Sat Apr 29 22:51:54 2000
|
|
***************
|
|
*** 6,25 ****
|
|
# $Id: Makefile,v 1.8 1999/11/07 05:55:19 evan Exp $
|
|
|
|
# The installation directories.
|
|
! BIN= /usr/local/bin
|
|
! MAN= /usr/local/man/man1
|
|
|
|
# See the README for a description of these options.
|
|
#OPTIONS= -DNO_32K_CASCADE -DTESTMODE=G640x480x32K -DBUG_WORKAROUND -DONLY_1_8_MODES
|
|
OPTIONS= -DBUG_WORKAROUND
|
|
|
|
# This should be the location of the JPEG v6 header files.
|
|
! JPEG_HEADERS= -I /usr/local/include
|
|
! #JPEG_HEADERS= -I /usr/X11R6/include
|
|
|
|
# This should be the location of the JPEG v6 libraries.
|
|
! JPEG_LIBS= -L /usr/local/lib
|
|
! #JPEG_LIBS= -L /usr/X11R6/lib
|
|
|
|
# These may be changed, if desired.
|
|
|
|
--- 6,25 ----
|
|
# $Id: Makefile,v 1.8 1999/11/07 05:55:19 evan Exp $
|
|
|
|
# The installation directories.
|
|
! BIN= /usr/bin
|
|
! MAN= /usr/man/man1
|
|
|
|
# See the README for a description of these options.
|
|
#OPTIONS= -DNO_32K_CASCADE -DTESTMODE=G640x480x32K -DBUG_WORKAROUND -DONLY_1_8_MODES
|
|
OPTIONS= -DBUG_WORKAROUND
|
|
|
|
# This should be the location of the JPEG v6 header files.
|
|
! #JPEG_HEADERS= -I /usr/local/include
|
|
! JPEG_HEADERS= -I /usr/X11R6/include
|
|
|
|
# This should be the location of the JPEG v6 libraries.
|
|
! #JPEG_LIBS= -L /usr/local/lib
|
|
! JPEG_LIBS= -L /usr/X11R6/lib
|
|
|
|
# These may be changed, if desired.
|
|
|
|
***************
|
|
*** 29,35 ****
|
|
# Editing of the rest of this Makefile shouldn't be necessary.
|
|
|
|
CFLAGS= $(JPEG_HEADERS) -I jpeglib $(CCOPTS) $(OPTIONS)
|
|
! LIBS= -lvga $(JPEG_LIBS) -ljpeg -lm
|
|
LDOPTS= -s
|
|
|
|
SEEJPEG= seejpeg.o jpeg.o image.o display.o cmap.o \
|
|
--- 29,35 ----
|
|
# Editing of the rest of this Makefile shouldn't be necessary.
|
|
|
|
CFLAGS= $(JPEG_HEADERS) -I jpeglib $(CCOPTS) $(OPTIONS)
|
|
! LIBS= -lvga jpeglib/libjpeg.a -lm
|
|
LDOPTS= -s
|
|
|
|
SEEJPEG= seejpeg.o jpeg.o image.o display.o cmap.o \
|