Software Package:       
	TIFF library and utilities

Release/Version:
	tiff-v3.4beta024

Retrieved from:
	ftp://ftp.sgi.com/graphics/tiff

Bug reports:
	This software package is maintained by the software contributor,
	not BSDI.  Please send any bug reports to both support@BSDI.COM
	and sam@engr.sgi.com

Comments:

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Added makefile to call Makefile

diff -rc tiff-v3.4beta024/config.site tiff/config.site
*** tiff-v3.4beta024/config.site	Mon Oct 16 16:51:30 1995
--- tiff/config.site	Sat Dec 30 18:11:48 1995
***************
*** 41,47 ****
  # Package controls.
  #
  #DSO="auto"			# auto|IRIX configure DSO support for system
! #JPEG="no"			# yes|no configure JPEG support
  #ZIP="no"			# yes|no configure Deflate support
  #LIBGL="auto"			# yes|no|auto configure IRIS GL-based tools
  #LIBIMAGE="auto"		# yes|no|auto configure SGI RGB image tools
--- 41,47 ----
  # Package controls.
  #
  #DSO="auto"			# auto|IRIX configure DSO support for system
! JPEG="yes"			# yes|no configure JPEG support
  #ZIP="no"			# yes|no configure Deflate support
  #LIBGL="auto"			# yes|no|auto configure IRIS GL-based tools
  #LIBIMAGE="auto"		# yes|no|auto configure SGI RGB image tools
***************
*** 49,58 ****
  #
  # Directory parameters.
  #
! #DIR_BIN="/usr/local/bin"		# directory for tools
! #DIR_LIB="/usr/local/lib"		# directory for libraries
! #DIR_INC="/usr/local/include"		# directory for include files
! #DIR_MAN="/usr/local/man"		# directory for manual pages
  
  #
  # JPEG-specific parameters; used when JPEG support is enabled.
--- 49,58 ----
  #
  # Directory parameters.
  #
! DIR_BIN="/usr/contrib/bin"		# directory for tools
! DIR_LIB="/usr/lib"			# directory for libraries
! DIR_INC="/usr/include"			# directory for include files
! DIR_MAN="/usr/contrib/man"		# directory for manual pages
  
  #
  # JPEG-specific parameters; used when JPEG support is enabled.
***************
*** 60,67 ****
  # NB: JPEG support requires release 5 or later of the IJG code,
  #     which you can find on the Internet at ftp.uu.net:/graphics/jpeg/.
  #
! #DIRS_LIBINC="$DIRS_LIBINC ../jpeg"	# directory for JPEG include files
! #LIBJPEG="-L ../jpeg -ljpeg"		# JPEG library to load
  
  #
  # Deflate-specific parameters; used when Deflate support is enabled.
--- 60,67 ----
  # NB: JPEG support requires release 5 or later of the IJG code,
  #     which you can find on the Internet at ftp.uu.net:/graphics/jpeg/.
  #
! DIRS_LIBINC="$DIRS_LIBINC ../../../../../../../../../../../../../usr/include"	# directory for JPEG include files XXX-Make sure we get all the way to root-JMP
! LIBJPEG="-ljpeg"			# JPEG library to load
  
  #
  # Deflate-specific parameters; used when Deflate support is enabled.
***************
*** 82,88 ****
  # Miscellaneous parameters.
  #
  #FILLORDER="MS2LSB"			# bit order of cpu (MSB2LSB/LSB2MSB)
! #MANSCHEME="sysv-source-cat-strip"	# manual page installation scheme
  
  #
  # Parameters used when building the software.
--- 82,88 ----
  # Miscellaneous parameters.
  #
  #FILLORDER="MS2LSB"			# bit order of cpu (MSB2LSB/LSB2MSB)
! MANSCHEME="bsdi-nroff-cat-0"		# manual page installation scheme
  
  #
  # Parameters used when building the software.
***************
*** 95,101 ****
  #
  #AR="/bin/ar"				# pathname of suitable ar program
  #AROPTS="rc"				# options to ar for creating archive
! #CC="gcc"				# name/pathname of C compiler
  #ENVOPTS="-Aa"				# options for getting ANSI C
  #GCOPTS="-g"				# options to pass C compiler
  #LIBPORT='${PORT}/libport.a'		# library with emulation code
--- 95,101 ----
  #
  #AR="/bin/ar"				# pathname of suitable ar program
  #AROPTS="rc"				# options to ar for creating archive
! CC="shlicc2"				# name/pathname of C compiler
  #ENVOPTS="-Aa"				# options for getting ANSI C
  #GCOPTS="-g"				# options to pass C compiler
  #LIBPORT='${PORT}/libport.a'		# library with emulation code
diff -rc tiff-v3.4beta024/configure tiff/configure
*** tiff-v3.4beta024/configure	Mon Oct 16 16:51:30 1995
--- tiff/configure	Mon Jan  1 15:00:38 1996
***************
*** 1389,1395 ****
  		promptForParameter $i;
  	    done
  	fi
! 	printConfig; prompt "Are these ok [yes]?"; read ok
  	test -z "$ok" && ok=yes
  	case "$ok" in
  	[1-9]|1[0-7])	promptForParameter $ok;;
--- 1389,1397 ----
  		promptForParameter $i;
  	    done
  	fi
! 	printConfig; 
! 	#; prompt "Are these ok [yes]?"; read ok
! 	ok=yes
  	test -z "$ok" && ok=yes
  	case "$ok" in
  	[1-9]|1[0-7])	promptForParameter $ok;;
***************
*** 1426,1432 ****
  *-nroff-cat-*)	MANCVT='${MANSED} $? | nroff -man > $@';;
  esac
  case $MANSCHEME in
! *-0.gz|*-0.Z|*-gz|*-Z|*-z)
      suf=`echo $MANSCHEME | sed 's/.*-/./'`
      A='`echo $$i | sed' B='`'		# workaround shell bugs
      MANAPPNAME="$A s/\\\\.1\$\$/$suf/$B"
--- 1428,1434 ----
  *-nroff-cat-*)	MANCVT='${MANSED} $? | nroff -man > $@';;
  esac
  case $MANSCHEME in
! *-0|*-0.gz|*-0.Z|*-gz|*-Z|*-z)
      suf=`echo $MANSCHEME | sed 's/.*-/./'`
      A='`echo $$i | sed' B='`'		# workaround shell bugs
      MANAPPNAME="$A s/\\\\.1\$\$/$suf/$B"
diff -rc tiff-v3.4beta024/libtiff/Makefile.in tiff/libtiff/Makefile.in
*** tiff-v3.4beta024/libtiff/Makefile.in	Mon Oct 16 16:51:32 1995
--- tiff/libtiff/Makefile.in	Mon Jan  1 15:07:42 1996
***************
*** 266,268 ****
--- 266,270 ----
  clean:
  	rm -f ${TARGETS} ${OBJS} core a.out mkg3states tif_fax3sm.c version.h \
  	    libtiff.@DSOSUF@ *dso
+ 
+ nodso:
