head	1.5;
access;
symbols
	RELEASE_5_2_1:1.4
	RELEASE_5_2_0:1.4
	RELEASE_4_9_0:1.4
	RELEASE_5_1_0:1.4
	RELEASE_4_8_0:1.4
	RELEASE_5_0_0:1.4
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.4
	RELEASE_4_6_1:1.4
	RELEASE_4_6_0:1.4
	RELEASE_5_0_DP1:1.4
	RELEASE_4_5_0:1.4
	RELEASE_4_4_0:1.4
	RELEASE_4_3_0:1.4
	RELEASE_4_2_0:1.4
	RELEASE_4_1_1:1.4
	RELEASE_4_1_0:1.4
	RELEASE_3_5_0:1.4
	RELEASE_4_0_0:1.4
	RELEASE_3_4_0:1.4
	RELEASE_3_3_0:1.4
	RELEASE_3_2_0:1.4
	RELEASE_3_1_0:1.4
	RELEASE_2_2_8:1.4
	RELEASE_3_0_0:1.4
	RELEASE_2_2_7:1.4
	RELEASE_2_2_6:1.4
	RELEASE_2_2_5:1.4
	RELEASE_2_2_1:1.4
	RELEASE_2_2_2:1.4;
locks; strict;
comment	@# @;


1.5
date	2004.04.11.01.45.12;	author kris;	state dead;
branches;
next	1.4;

1.4
date	96.08.03.11.11.52;	author ache;	state Exp;
branches;
next	1.3;

1.3
date	96.04.11.09.07.25;	author asami;	state dead;
branches;
next	1.2;

1.2
date	95.12.05.05.13.06;	author ache;	state Exp;
branches;
next	1.1;

1.1
date	95.11.29.10.48.30;	author asami;	state Exp;
branches;
next	;


desc
@@


1.5
log
@As announced 2 months ago, remove these deprecated or broken ports.
@
text
@*** src/comment.h.bak	Fri Jun  7 00:01:43 1996
--- src/comment.h	Sat Aug  3 13:58:11 1996
***************
*** 67,73 ****
  #ifndef _COMMENT_H
  #define _COMMENT_H
  
! char *comment_card_html_top= \
  "<title>\n" \
  "	Comment Card for Mosaic 2.6\n" \
  "</title>\n" \
--- 67,73 ----
  #ifndef _COMMENT_H
  #define _COMMENT_H
  
! static char *comment_card_html_top= \
  "<title>\n" \
  "	Comment Card for Mosaic 2.6\n" \
  "</title>\n" \
***************
*** 103,109 ****
  "				<p>\n" \
  "\n";
  
! char *comment_card_html_bot= \
  "				</p>\n" \
  "			</li>\n" \
  "			<br>\n" \
--- 103,109 ----
  "				<p>\n" \
  "\n";
  
! static char *comment_card_html_bot= \
  "				</p>\n" \
  "			</li>\n" \
  "			<br>\n" \
@


1.4
log
@Upgrade to 2.7b5
@
text
@@


1.3
log
@Upgrade, 2.7b2 -> 2.7b4.  Also make it conform to Motif standard here.
@
text
@d1 2
a2 2
*** src/pixmaps.c.orig	Thu Feb  2 17:56:46 1995
--- src/pixmaps.c	Fri Nov 17 12:21:32 1995
d4 3
a6 14
*** 397,412 ****
  	     * TrueColor displays.  I have no access to such displays, so I
  	     * can't really test it.
  	     * Donated by - andrew@@icarus.demon.co.uk
  	     */
  	    case 16:
  		bit_data = (unsigned char *)malloc(size * 2);
  		bitp = bit_data;
  		datap = data;
  		for (w = size; w > 0; w--)
  		{
! 			temp = (((colrs[(int)*datap].red   >> 1) & 0x7c00) |
! 				((colrs[(int)*datap].green >> 6) & 0x03e0) |
! 				((colrs[(int)*datap].blue  >> 11) & 0x001f));
d8 7
a14 33
  			if (BitmapBitOrder(XtDisplay(wid)) == MSBFirst)
  			{
--- 397,429 ----
  	     * TrueColor displays.  I have no access to such displays, so I
  	     * can't really test it.
  	     * Donated by - andrew@@icarus.demon.co.uk
+ 	     * modified by smp@@csn.net for XFree86-3.1.x
  	     */
+ 	    case 15:
  	    case 16:
  		bit_data = (unsigned char *)malloc(size * 2);
  		bitp = bit_data;
  		datap = data;
  		for (w = size; w > 0; w--)
  		{
! 			if (depth == 15) /* weight == 555 */
! 			{
! 				temp = (((colrs[(int)*datap].red   >> 1)
! 					 & 0x7c00) |
! 					((colrs[(int)*datap].green >> 6)
! 					 & 0x03e0) |
! 					((colrs[(int)*datap].blue  >> 11)
! 					 & 0x001f));
! 		    	}
! 			else /* depth == 16, weight == 565 */
! 			{
! 				temp = ( (colrs[(int)*datap].red
! 					  & 0xf800) |
! 					((colrs[(int)*datap].green >>  5)
! 					 & 0x07e0) |
! 					((colrs[(int)*datap].blue  >> 11)
! 					 & 0x001f));
! 			}
d16 21
a36 2
  			if (BitmapBitOrder(XtDisplay(wid)) == MSBFirst)
  			{
@


1.2
log
@Upgrade to 2.7b2, support PNG images now
@
text
@@


1.1
log
@Make mosaic work in 15/16bpp mode.  I haven't tested it here (I don't
have Motif!), but verifies that the patch at least applies.

Submitted by:	Steve Passe <smp@@ilsa.systemsix.com>
@
text
@a54 54
*** libhtmlw/HTMLimages.c.orig	Tue Jan 10 17:03:32 1995
--- libhtmlw/HTMLimages.c	Fri Nov 17 12:27:58 1995
***************
*** 356,371 ****
  	     * TrueColor displays.  I have no access to such displays, so I
  	     * can't really test it.
  	     * Donated by - andrew@@icarus.demon.co.uk
  	     */
  	    case 16:
  		bit_data = (unsigned char *)malloc(width * height * 2);
  		bitp = bit_data;
  		datap = data;
  		for (w = (width * height); w > 0; w--)
  		{
! 			temp = (((img_info->reds[(int)*datap] >> 1)& 0x7c00) |
! 				((img_info->greens[(int)*datap] >> 6)& 0x03e0) |
! 				((img_info->blues[(int)*datap] >> 11)& 0x001f));
  
  			if (BitmapBitOrder(dsp) == MSBFirst)
  			{
--- 356,388 ----
  	     * TrueColor displays.  I have no access to such displays, so I
  	     * can't really test it.
  	     * Donated by - andrew@@icarus.demon.co.uk
+ 	     * modified by smp@@csn.net for XFree86-3.1.x
  	     */
+ 	    case 15:
  	    case 16:
  		bit_data = (unsigned char *)malloc(width * height * 2);
  		bitp = bit_data;
  		datap = data;
  		for (w = (width * height); w > 0; w--)
  		{
! 			if (depth == 15) /* weight == 555 */
! 			{
! 				temp = (((img_info->reds[(int)*datap] >> 1)
! 					 & 0x7c00) |
! 					((img_info->greens[(int)*datap] >> 6)
! 					 & 0x03e0) |
! 					((img_info->blues[(int)*datap] >> 11)
! 					 & 0x001f));
! 		    	}
! 			else /* depth == 16, weight == 565 */
! 			{
! 				temp = ((img_info->reds[(int)*datap]
! 					 & 0xf800) |
! 					((img_info->greens[(int)*datap] >> 5)
! 					 & 0x07e0) |
! 					((img_info->blues[(int)*datap] >> 11)
! 					 & 0x001f));
! 			}
  
  			if (BitmapBitOrder(dsp) == MSBFirst)
  			{
@
