diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
commit | d615f4ca564f838b39bd8b504a3107011d951a03 (patch) | |
tree | d799b77773a040bd9f634696266507c9072dd071 /net/opal3 | |
parent | Remove do-package target that was running "make package" in (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_2_0'.release/4.2.0
Diffstat (limited to 'net/opal3')
-rw-r--r-- | net/opal3/Makefile | 35 | ||||
-rw-r--r-- | net/opal3/distinfo | 2 | ||||
-rw-r--r-- | net/opal3/files/patch-aa | 29 | ||||
-rw-r--r-- | net/opal3/pkg-comment | 1 | ||||
-rw-r--r-- | net/opal3/pkg-descr | 18 | ||||
-rw-r--r-- | net/opal3/pkg-plist | 1 |
6 files changed, 0 insertions, 86 deletions
diff --git a/net/opal3/Makefile b/net/opal3/Makefile deleted file mode 100644 index 0c98ff52fe45..000000000000 --- a/net/opal3/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: openh323 -# Date created: Thu Feb 17 15:00:48 GMT 2000 -# Whom: Roger Hardiman <roger@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= openh323 -PORTVERSION= 1.1 -PORTREVISION= 1 -CATEGORIES= net -MASTER_SITES= http://www.openh323.org/bin/ \ - http://www.de.openh323.org/bin/ \ - http://www.ru.openh323.org/bin/ -DISTFILES= openh323_1.1.tar.gz \ - pwlib_min_1.1pl18.tar.gz - -MAINTAINER= roger@freebsd.org - -WRKSRC= ${WRKDIR}/${PORTNAME} - -USE_NEWGCC= yes -USE_BISON= yes -USE_XLIB= yes -USE_GMAKE= yes -ALL_TARGET= opt -MAKE_ENV= PWLIBDIR=${WRKDIR}/pwlib \ - OPENH323DIR=${WRKDIR}/openh323 -THE_MACHTYPE= ${ARCH:S/i386/x86/} -MAKE_ARGS= OSTYPE=${OPSYS} MACHTYPE=${THE_MACHTYPE} OSRELEASE=${OSVERSION} CPLUS=${CXX} - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/samples/simple/obj_${OPSYS}_${THE_MACHTYPE}_r/simph323 ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/net/opal3/distinfo b/net/opal3/distinfo deleted file mode 100644 index 7a6a56e421d9..000000000000 --- a/net/opal3/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (openh323_1.1.tar.gz) = 51fe78bc7a0da3422479263106b4d95a -MD5 (pwlib_min_1.1pl18.tar.gz) = c4c88ce65cca72ce5d9cfea36205e7a4 diff --git a/net/opal3/files/patch-aa b/net/opal3/files/patch-aa deleted file mode 100644 index cf262107575c..000000000000 --- a/net/opal3/files/patch-aa +++ /dev/null @@ -1,29 +0,0 @@ -*** ../pwlib/src/ptlib/unix/tlibthrd.cxx.orig Thu Nov 16 11:14:48 2000 ---- ../pwlib/src/ptlib/unix/tlibthrd.cxx Thu Nov 16 11:15:21 2000 -*************** void PThread::PX_NewThread(BOOL startSus -*** 386,391 **** ---- 386,409 ---- - // pthread_attr_t threadAttr; - // pthread_attr_init(&threadAttr); - PAssertOS(pthread_create(&PX_threadId, NULL, PX_ThreadStart, this) == 0); -+ -+ #if defined(P_FREEBSD) -+ // There is a potential race condition here which shows up with FreeBSD 4.2 -+ // and later, but really applies to all pthread libraries. -+ // If a thread is started in suspend mode, we need to make sure -+ // the thread (PX_ThreadStart) has had a chance to execute and block on the -+ // sigwait() (blocking on the Resume Signal) before this function returns. -+ // Otherwise the main program may issue a Resume Signal on the thread -+ // by calling PThread::Resume() before the thread is ready for it. -+ // If that happens the program will abort with an unhandled signal error. -+ // A workaround (not 100% guaranteed) is to yield here, which gives -+ // the newly created thread (PX_ThreadStart) a chance to execute. -+ -+ if (startSuspended) { -+ sched_yield(); -+ } -+ #endif -+ - } - - diff --git a/net/opal3/pkg-comment b/net/opal3/pkg-comment deleted file mode 100644 index cef461a24fb2..000000000000 --- a/net/opal3/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A H323 Video Conferencing library, used with OhPhone diff --git a/net/opal3/pkg-descr b/net/opal3/pkg-descr deleted file mode 100644 index 6a835b6f0f33..000000000000 --- a/net/opal3/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -OpenH323 is a multi-platform H323 Video Conferencing library. - -This can be used to make H323 Video Conferencing applications -and the port produces a sample application called simph323. - -However, a fully featured H323 client, including Video -as well as Audio can be found in the OhPhone Port. - -Simph323 and OhPhone can exchange full duplex audio with other H323 -compliant video conferencing programs including Microsoft NetMeeting. -OhPhone adds full Video support. - -The OpenH323 library makes use of PWLib. http://www.equival.com -PWLib is a multi-platform code library that can be used to write -applications that will compile and run on the BSD Unixes, Windows, Linux -and a few other Unix variants. It was developed by Equivalence Ltd Pty. - -WWW: http://www.openh323.org diff --git a/net/opal3/pkg-plist b/net/opal3/pkg-plist deleted file mode 100644 index 910567db261b..000000000000 --- a/net/opal3/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/simph323 |