diff options
author | roger <roger@FreeBSD.org> | 2002-07-18 18:41:54 +0800 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2002-07-18 18:41:54 +0800 |
commit | f2ca57f97011a189f03ca64404783bf93c1530b6 (patch) | |
tree | 88c53cff8588819631d5c603e3bf79e71edd9c6d /net | |
parent | 77126c53e89537755f4d29e5cde3201bf0e79666 (diff) | |
download | freebsd-ports-gnome-f2ca57f97011a189f03ca64404783bf93c1530b6.tar.gz freebsd-ports-gnome-f2ca57f97011a189f03ca64404783bf93c1530b6.tar.zst freebsd-ports-gnome-f2ca57f97011a189f03ca64404783bf93c1530b6.zip |
Upgrade to latest release 0.9.9
Obtained from: author
Diffstat (limited to 'net')
-rw-r--r-- | net/openh323proxy/Makefile | 4 | ||||
-rw-r--r-- | net/openh323proxy/files/patch-aa | 19 | ||||
-rw-r--r-- | net/openh323proxy/files/patch-ab | 53 |
3 files changed, 1 insertions, 75 deletions
diff --git a/net/openh323proxy/Makefile b/net/openh323proxy/Makefile index a54a20e120b6..37b2bacafd36 100644 --- a/net/openh323proxy/Makefile +++ b/net/openh323proxy/Makefile @@ -6,11 +6,9 @@ # PORTNAME= openh323proxy -PORTVERSION= 0.9a3.m09 -PORTREVISION= 1 +PORTVERSION= 0.9.9 CATEGORIES= net MASTER_SITES= http://download.sourceforge.net/openh323proxy/ -DISTNAME= ${PORTNAME}_0.9a3_m09 MAINTAINER= roger@FreeBSD.org diff --git a/net/openh323proxy/files/patch-aa b/net/openh323proxy/files/patch-aa deleted file mode 100644 index 84f34173f555..000000000000 --- a/net/openh323proxy/files/patch-aa +++ /dev/null @@ -1,19 +0,0 @@ -*** Environ.cxx.orig Mon Jul 9 16:25:04 2001 ---- Environ.cxx Mon Jul 9 16:19:03 2001 -*************** static H225_SupportedPrefix GetPrefix( c -*** 75,81 **** - { - H225_SupportedPrefix Result; - -! Result.m_prefix.SetTag( H225_AliasAddress::e_e164 ); - PASN_IA5String & IA5 = (PASN_IA5String &)Result.m_prefix; - IA5 = PrefixStr; - ---- 80,86 ---- - { - H225_SupportedPrefix Result; - -! Result.m_prefix.SetTag( H225_AliasAddress::e_dialedDigits ); - PASN_IA5String & IA5 = (PASN_IA5String &)Result.m_prefix; - IA5 = PrefixStr; - diff --git a/net/openh323proxy/files/patch-ab b/net/openh323proxy/files/patch-ab deleted file mode 100644 index 2e0e9feec0a3..000000000000 --- a/net/openh323proxy/files/patch-ab +++ /dev/null @@ -1,53 +0,0 @@ -*** EndpointTabl.cxx.orig Mon Jul 9 16:24:58 2001 ---- EndpointTabl.cxx Mon Jul 9 13:12:01 2001 -*************** static bool IsPrefix( const H225_AliasAd -*** 220,226 **** - // Now check by type - switch ( Prefix.GetTag() ) - { -! case H225_AliasAddress::e_e164 : - PrefixStr = static_cast<const PASN_IA5String &>(Prefix); - AliasStr = static_cast<const PASN_IA5String &>(Alias); - break; ---- 225,231 ---- - // Now check by type - switch ( Prefix.GetTag() ) - { -! case H225_AliasAddress::e_dialedDigits: - PrefixStr = static_cast<const PASN_IA5String &>(Prefix); - AliasStr = static_cast<const PASN_IA5String &>(Alias); - break; -*************** static bool IsPrefix( const H225_AliasAd -*** 235,241 **** - } - switch( PrefixPartyNumber.GetTag() ) - { -! case H225_PartyNumber::e_publicNumber : - { - const H225_PublicPartyNumber & PublicPrefix = PrefixPartyNumber; - const H225_PublicPartyNumber & PublicAlias = AliasPartyNumber; ---- 240,246 ---- - } - switch( PrefixPartyNumber.GetTag() ) - { -! case H225_PartyNumber::e_e164Number: - { - const H225_PublicPartyNumber & PublicPrefix = PrefixPartyNumber; - const H225_PublicPartyNumber & PublicAlias = AliasPartyNumber; -*************** Endpoint EndpointTable::FindByPrefix( co -*** 1080,1086 **** - PWaitAndSignal MutexWait(TableMutex); - for ( PINDEX i=0; i < Alias.GetSize(); ++i ) - { -! if ( ( Alias[i].GetTag() == H225_AliasAddress::e_e164 ) || - ( Alias[i].GetTag() == H225_AliasAddress::e_partyNumber ) - ) - { ---- 1085,1091 ---- - PWaitAndSignal MutexWait(TableMutex); - for ( PINDEX i=0; i < Alias.GetSize(); ++i ) - { -! if ( ( Alias[i].GetTag() == H225_AliasAddress::e_dialedDigits ) || - ( Alias[i].GetTag() == H225_AliasAddress::e_partyNumber ) - ) - { |