Changeset 18678 for trunk/dports


Ignore:
Timestamp:
Jul 22, 2006, 5:09:04 AM (18 years ago)
Author:
pguyot (Paul Guyot)
Message:

Update to 1.4.1

Bug: #8327
Submitted by: cshbell@…
Reviewed by:
Approved by: noses@…
Obtained from:

Location:
trunk/dports/net/rdesktop
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/net/rdesktop/Portfile

    r8781 r18678  
    1 # $Id: Portfile,v 1.4 2004/10/16 11:25:35 olegb Exp $
     1# $Id: Portfile,v 1.5 2006/07/22 05:09:04 pguyot Exp $
    22
    33PortSystem 1.0
    44name            rdesktop
    5 version         1.3.1
     5version         1.4.1
    66categories      net
    7 maintainers     noses@noses.com
     7maintainers     cshbell@gmail.com, noses@noses.com
    88description     Windows Terminal Server Client
    99long_description        \
     
    2525build.target    rdesktop
    2626
    27 checksums       md5 968a1e3f5161bab80c306df31c54cfb1
     27checksums       md5 78dd2bae04edf1cb9f65c29930dcc993 \
     28                                sha1 412ffa06dc216cc7ce1082a8a4912778f82425d9 \
     29                                rmd160 c49a2425f1e00f5933d3873f6ea742b2ad4fea0c
    2830
    2931#worksrcdir     rdesktop
     
    3537variant         devel {
    3638                        fetch.type       cvs
    37                         cvs.root         :pserver:anonymous@cvs.sourceforge.net:/cvsroot/rdesktop
     39                        cvs.root         :pserver:anonymous@rdesktop.cvs.sourceforge.net:/cvsroot/rdesktop
    3840                        cvs.module       rdesktop
    3941                        cvs.tag          HEAD
  • trunk/dports/net/rdesktop/files/patch-licence.c

    r3858 r18678  
    1 --- ../rdesktop.orig/licence.c  Thu Oct 30 14:07:37 2003
    2 +++ licence.c   Thu Oct 30 14:08:04 2003
    3 @@ -118,7 +118,9 @@
    4  
    5         out_uint32_le(s, 1);
    6         out_uint16(s, 0);
    7 -       out_uint16_le(s, 0xff01);
    8 +
    9 +       /* 0xff01 == any Windows TSC, 0x0301 == Windows 2K */
    10 +       out_uint16_le(s, 0x0301);
    11  
    12         out_uint8p(s, client_random, SEC_RANDOM_SIZE);
    13         out_uint16(s, 0);
     1*** licence.c.orig      2006-04-10 19:20:26.000000000 +0200
     2--- licence.c   2006-04-10 19:20:51.000000000 +0200
     3***************
     4*** 113,119 ****
     5 
     6        out_uint32_le(s, 1);
     7        out_uint16(s, 0);
     8!       out_uint16_le(s, 0xff01);
     9 
     10        out_uint8p(s, client_random, SEC_RANDOM_SIZE);
     11        out_uint16(s, 0);
     12--- 113,121 ----
     13 
     14        out_uint32_le(s, 1);
     15        out_uint16(s, 0);
     16!       
     17!       /* 0xff01 == any Windows TSC, 0x0301 == Windows 2K */
     18!       out_uint16_le(s, 0x0301);
     19 
     20        out_uint8p(s, client_random, SEC_RANDOM_SIZE);
     21        out_uint16(s, 0);
Note: See TracChangeset for help on using the changeset viewer.