summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2005-04-14 12:59:07 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2005-04-14 12:59:07 +0000
commit27e95e0b1a33550956aea3f1765c555c43740a78 (patch)
tree75b4293c7fb7d1fe34eb0bd6e2e4e189ced3d11a /net-misc/rdesktop/files
parentversion bump. (diff)
downloadhistorical-27e95e0b1a33550956aea3f1765c555c43740a78.tar.gz
historical-27e95e0b1a33550956aea3f1765c555c43740a78.tar.bz2
historical-27e95e0b1a33550956aea3f1765c555c43740a78.zip
Removing old versions. Added configure patch by Richard Brown <mynamewasgone@gmail.com> and closing bug #88684.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-misc/rdesktop/files')
-rw-r--r--net-misc/rdesktop/files/digest-rdesktop-1.3.11
-rw-r--r--net-misc/rdesktop/files/digest-rdesktop-1.4.0-r1 (renamed from net-misc/rdesktop/files/digest-rdesktop-1.4.0)0
-rw-r--r--net-misc/rdesktop/files/rdesktop-1.4.0-configure-with_arg.patch84
3 files changed, 84 insertions, 1 deletions
diff --git a/net-misc/rdesktop/files/digest-rdesktop-1.3.1 b/net-misc/rdesktop/files/digest-rdesktop-1.3.1
deleted file mode 100644
index 928168058f7c..000000000000
--- a/net-misc/rdesktop/files/digest-rdesktop-1.3.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 968a1e3f5161bab80c306df31c54cfb1 rdesktop-1.3.1.tar.gz 139686
diff --git a/net-misc/rdesktop/files/digest-rdesktop-1.4.0 b/net-misc/rdesktop/files/digest-rdesktop-1.4.0-r1
index 4e7f7c523112..4e7f7c523112 100644
--- a/net-misc/rdesktop/files/digest-rdesktop-1.4.0
+++ b/net-misc/rdesktop/files/digest-rdesktop-1.4.0-r1
diff --git a/net-misc/rdesktop/files/rdesktop-1.4.0-configure-with_arg.patch b/net-misc/rdesktop/files/rdesktop-1.4.0-configure-with_arg.patch
new file mode 100644
index 000000000000..241211bd4748
--- /dev/null
+++ b/net-misc/rdesktop/files/rdesktop-1.4.0-configure-with_arg.patch
@@ -0,0 +1,84 @@
+--- rdesktop-1.4.0/configure 2005-03-02 17:35:03.000000000 +0000
++++ rdesktop-1.4.0-richard/configure 2005-04-11 13:07:30.964584294 +0100
+@@ -6679,10 +6718,15 @@
+ # Check whether --with-ipv6 or --without-ipv6 was given.
+ if test "${with_ipv6+set}" = set; then
+ withval="$with_ipv6"
+- cat >>confdefs.h <<\_ACEOF
++
++ if test $withval != "no";
++ then
++ cat >>confdefs.h <<\_ACEOF
+ #define IPv6 1
+ _ACEOF
+
++ fi
++
+ fi;
+
+
+@@ -6693,40 +6737,60 @@
+ # Check whether --with-debug or --without-debug was given.
+ if test "${with_debug+set}" = set; then
+ withval="$with_debug"
+- cat >>confdefs.h <<\_ACEOF
++
++ if test $withval != "no";
++ then
++ cat >>confdefs.h <<\_ACEOF
+ #define WITH_DEBUG 1
+ _ACEOF
+
++ fi
++
+ fi;
+
+
+ # Check whether --with-debug-kbd or --without-debug-kbd was given.
+ if test "${with_debug_kbd+set}" = set; then
+ withval="$with_debug_kbd"
+- cat >>confdefs.h <<\_ACEOF
++
++ if test $withval != "no";
++ then
++ cat >>confdefs.h <<\_ACEOF
+ #define WITH_DEBUG_KBD 1
+ _ACEOF
+
++ fi
++
+ fi;
+
+
+ # Check whether --with-debug-rdp5 or --without-debug-rdp5 was given.
+ if test "${with_debug_rdp5+set}" = set; then
+ withval="$with_debug_rdp5"
+- cat >>confdefs.h <<\_ACEOF
++
++ if test $withval != "no";
++ then
++ cat >>confdefs.h <<\_ACEOF
+ #define WITH_DEBUG_RDP5 1
+ _ACEOF
+
++ fi
++
+ fi;
+
+
+ # Check whether --with-debug-clipboard or --without-debug-clipboard was given.
+ if test "${with_debug_clipboard+set}" = set; then
+ withval="$with_debug_clipboard"
+- cat >>confdefs.h <<\_ACEOF
++
++ if test $withval != "no";
++ then
++ cat >>confdefs.h <<\_ACEOF
+ #define WITH_DEBUG_CLIPBOARD 1
+ _ACEOF
+
++ fi
++
+ fi;
+
+