]> git.pld-linux.org Git - packages/rdesktop.git/commitdiff
- outdated
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 18 Jun 2002 11:40:20 +0000 (11:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    rdesktop-endian.patch -> 1.4
    rdesktop-opt.patch -> 1.2

rdesktop-endian.patch [deleted file]
rdesktop-opt.patch [deleted file]

diff --git a/rdesktop-endian.patch b/rdesktop-endian.patch
deleted file mode 100644 (file)
index 98ecff1..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-diff -urN rdesktop-1.0.0.org/rdesktop.h rdesktop-1.0.0/rdesktop.h
---- rdesktop-1.0.0.org/rdesktop.h      Tue May  8 22:40:12 2001
-+++ rdesktop-1.0.0/rdesktop.h  Wed May  9 11:04:49 2001
-@@ -31,6 +31,7 @@
- #include <stdio.h>
- #include <string.h>
-+#include <endian.h>
- #define VERSION "1.0.0-pl19-6"
-@@ -38,22 +39,19 @@
- /*
-  * check endianess
-  */
--
--#if defined(__i386__) || defined(__alpha__) || defined(__vax__) || \
--      defined(_AIX)
--#define L_ENDIAN
--#elif defined(__sparc) || defined(__hppa) || defined(__mips) || \
--      defined(__PPC__) || defined(__m68k__)
--#define B_ENDIAN
-+#if __BYTE_ORDER == __LITTLE_ENDIAN
-+# define L_ENDIAN
-+#elif __BYTE_ORDER == __BIG_ENDIAN
-+# define B_ENDIAN
- #else
- #error Unknown endianness. Edit rdesktop.h.
--#endif
-+#endif                                    
- /*
-  * check if we need to align data
-  */
--#if defined(__sparc) || defined(__alpha__) || defined(__hppa) || \
-+#if defined(__sparc__) || defined(__alpha__) || defined(__hppa__) || \
-     defined(_AIX)
- #define NEED_ALIGN
- #endif
diff --git a/rdesktop-opt.patch b/rdesktop-opt.patch
deleted file mode 100644 (file)
index 37c1602..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -urN rdesktop-1.0.0.org/Makefile rdesktop-1.0.0/Makefile
---- rdesktop-1.0.0.org/Makefile        Tue May  8 21:40:35 2001
-+++ rdesktop-1.0.0/Makefile    Tue May  8 21:41:46 2001
-@@ -20,9 +20,9 @@
- CC     = gcc
- COFLAGS = -funroll-loops -fexpensive-optimizations -ffast-math -fomit-frame-pointer -frerun-cse-after-loop
--CFLAGS = -O2 $(COFLAGS) -Wall $(DEBUG) $(XINERAMA_CFLAGS) -I$(X11DIR)/include
--LDFLAGS   = -L$(X11DIR)/lib -lX11 $(XINERAMA_LIBS) -lgmp
--INSTALL= install -m 755 -s
-+CFLAGS = $(CFLAGSOPT) $(COFLAGS) -Wall $(DEBUG) $(XINERAMA_CFLAGS) -I$(X11DIR)/include
-+LDFLAGS   = -L$(X11DIR)/lib -lX11 $(XINERAMA_LIBS) -lgmp $(LDFLAGSOPT)
-+INSTALL= install -m 755
- INSTALLMAN= install -m 644 
- OS = $(shell uname -s)
This page took 0.140933 seconds and 4 git commands to generate.