Update to rdesktop-1.0.0.p19.7.2

This commit is contained in:
jcs 2001-08-28 00:30:03 +00:00
parent de3e5d2c10
commit ed5d4e3c86
3 changed files with 15 additions and 34 deletions

View File

@ -1,12 +1,12 @@
# $OpenBSD: Makefile,v 1.1.1.1 2001/06/03 20:07:17 lebel Exp $
# $OpenBSD: Makefile,v 1.2 2001/08/28 00:30:03 jcs Exp $
COMMENT= "an open source client for Windows Terminal Server"
DISTNAME= rdesktop-1.0.0
PATCHLEVEL= 19.6.4
PATCHLEVEL= 19.7.2
PKGNAME= ${DISTNAME}.p${PATCHLEVEL}
CATEGORIES= x11 net
NEED_VERSION= 1.414
NEED_VERSION= 1.447
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes

View File

@ -1,6 +1,6 @@
MD5 (rdesktop-1.0.0.tar.gz) = e03f3ed9bb7a052039ccd5d0cc63fabc
MD5 (rdesktop-unified-patch19-6-4.bz2) = ab20ea8edaf19c4b44170ab4076064b1
MD5 (rdesktop-unified-patch19-7-2.bz2) = 10836ca287d23df814686a4aaca78c19
RMD160 (rdesktop-1.0.0.tar.gz) = f4e5429ffa7b18318b6ceaee2d1ae8080f759af0
RMD160 (rdesktop-unified-patch19-6-4.bz2) = 7b707013be38dd913d82efc6fc21374fc6cda3b9
RMD160 (rdesktop-unified-patch19-7-2.bz2) = fa3b9ecd266410570a912b4b2cba143f53b4bd41
SHA1 (rdesktop-1.0.0.tar.gz) = 6eb0574d45414abbf4b98a14655a281ad95606f4
SHA1 (rdesktop-unified-patch19-6-4.bz2) = 35866c7a47612db89b19a1c371d20542e768191d
SHA1 (rdesktop-unified-patch19-7-2.bz2) = 0944aff7df25f6d4d5408988068eea58b9fddc26

View File

@ -1,31 +1,12 @@
$OpenBSD: patch-rdesktop_h,v 1.1 2001/08/21 20:54:06 naddy Exp $
--- rdesktop.h.orig Tue Aug 21 18:05:42 2001
+++ rdesktop.h Tue Aug 21 18:10:30 2001
@@ -39,7 +39,16 @@
* check endianess
*/
$OpenBSD: patch-rdesktop_h,v 1.2 2001/08/28 00:30:04 jcs Exp $
--- rdesktop.h.orig Mon Aug 27 19:19:26 2001
+++ rdesktop.h Mon Aug 27 19:20:21 2001
@@ -32,7 +32,7 @@
#include <stdio.h>
#include <string.h>
-#if defined(__i386__) || defined(__alpha__) || defined(__vax__) || \
+#if defined(__OpenBSD__)
+
+#include <machine/endian.h>
+#if BYTE_ORDER == LITTLE_ENDIAN
+#define L_ENDIAN
+#elif BYTE_ORDER == BIG_ENDIAN
+#define B_ENDIAN
+#endif
+
+#elif defined(__i386__) || defined(__alpha__) || defined(__vax__) || \
defined(_AIX)
#define L_ENDIAN
#elif defined(__sparc) || defined(__hppa) || defined(__mips) || \
@@ -53,8 +62,7 @@
* check if we need to align data
*/
-#include <endian.h>
+#include <sys/endian.h>
-#if defined(__sparc) || defined(__alpha__) || defined(__hppa) || \
- defined(_AIX) || defined(__PPC__) || defined(__mips)
+#if !defined(__i386__)
#define NEED_ALIGN
#endif
#define VERSION "1.0.0-pl19-7-2"