Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 55981 Details for
Bug 88684
rdesktop-1.4.0 builds with debugging code when USE -debug
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch configure to respect --without
rdesktop-1.4.0-configure-with_arg.patch (text/plain), 1.70 KB, created by
Richard Brown (RETIRED)
on 2005-04-11 05:20:35 UTC
(
hide
)
Description:
Patch configure to respect --without
Filename:
MIME Type:
Creator:
Richard Brown (RETIRED)
Created:
2005-04-11 05:20:35 UTC
Size:
1.70 KB
patch
obsolete
>--- 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; > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 88684
:
55961
| 55981