summaryrefslogtreecommitdiff
path: root/net/opal/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* net/opal: fix build with H323 option enabledSteve Wills2019-01-271-0/+11
| | | | | | | | PR: 230203 Submitted by: VVD <vvd@unislabs.com> Notes: svn path=/head/; revision=491353
* net/opal: properly set codec-specific options after r468745Jan Beich2018-05-021-8/+8
| | | | Notes: svn path=/head/; revision=468852
* net/opal: correct codec option names after r468745Jan Beich2018-05-021-2/+2
| | | | Notes: svn path=/head/; revision=468832
* net/opal: unbreak with ffmpeg 4.0Jan Beich2018-04-301-0/+262
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | h263-1998.cxx:237:22: error: use of undeclared identifier 'CODEC_FLAG_TRUNCATED' m_context->flags = CODEC_FLAG_TRUNCATED // Possible missing packets ^ h263-1998.cxx:346:27: error: use of undeclared identifier 'CODEC_FLAG_AC_PRED' m_context->flags |= CODEC_FLAG_AC_PRED; ^ h263-1998.cxx:348:28: error: use of undeclared identifier 'CODEC_FLAG_AC_PRED' m_context->flags &= ~CODEC_FLAG_AC_PRED; ^ h263-1998.cxx:356:27: error: use of undeclared identifier 'CODEC_FLAG_LOOP_FILTER' m_context->flags |= CODEC_FLAG_LOOP_FILTER; ^ h263-1998.cxx:358:28: error: use of undeclared identifier 'CODEC_FLAG_LOOP_FILTER' m_context->flags &= ~CODEC_FLAG_LOOP_FILTER; ^ h263-1998.cxx:422:14: error: no member named 'lmin' in 'AVCodecContext'; did you mean 'qmin'? m_context->lmin = m_context->qmin * FF_QP2LAMBDA; ^~~~ qmin /usr/local/include/libavcodec/avcodec.h:2355:9: note: 'qmin' declared here int qmin; ^ h263-1998.cxx:423:14: error: no member named 'lmax' in 'AVCodecContext'; did you mean 'qmax'? m_context->lmax = m_context->qmax * FF_QP2LAMBDA; ^~~~ qmax /usr/local/include/libavcodec/avcodec.h:2362:9: note: 'qmax' declared here int qmax; ^ h263-1998.cxx:598:24: error: use of undeclared identifier 'CODEC_FLAG_4MV' m_context->flags &= ~CODEC_FLAG_4MV; ^ PR: 227726 Reported by: antoine (via exp-run) Notes: svn path=/head/; revision=468745
* net/opal: unbreak build with Clang 6 (C++14 by default)Jan Beich2018-01-061-0/+173
| | | | | | | | | | | | | | src/sip/sipep.cxx:474:32: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] if (remoteParty.Find(";OPAL-"OPAL_SIP_REFERRED_CONNECTION) == P_MAX_INDEX) ^ src/im/msrp.cxx:838:47: error: invalid operands to binary expression ('basic_ostream<char, std::__1::char_traits<char> >' and 'std::__1::ostream' (aka 'basic_ostream<char>')) PStringStream str; str << ::setfill('\r') << mime.PrintContents(str); ~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~ Reported by: antoine (via bug 224669) Notes: svn path=/head/; revision=458277
* Fix type for abs() calls in net/opalDon Lewis2016-06-061-0/+13
| | | | | | | | | | | | | | | | | | | | | | | During the exp-run in bug 208158, it was found that net/opal gives errors with libc++ 3.8.0 [1]: ../common/mpi.cxx:135:18: error: call to 'abs' is ambiguous distance = ( abs(MPIs[i].width - desiredWidth ) * ^~~ This is because abs() is being called with unsigned arguments. Fix this by casting the arguments to the appropriate signed type. This mimics what happens with older libraries where the only version of abs() was the one in <stdlib.h>, which is prototyped: int abs(int) Correct functioning of this expression relies on how integer overflow actually behaves, which is actually undefined in the C++ standard. PR: 209077 Submitted by: dim Notes: svn path=/head/; revision=416491
* net/opal: Fix build with ffmpeg 3.0.xBen Woods2016-05-101-0/+247
| | | | | | | | | | | | | | | | | | | - Add patch to allow opal to build successfully once multimedia/ffmpeg is updated to 3.0.x. Note that multimedia/ffmpeg is currently still on the 2.8.x branch, however this patch is backwards compatible with ffmpeg 2.8.x. PR: 209346 Reported by: antoine (PR207547) Reviewed by: kwm (with gnome hat) Approved by: adamw (mentor) Obtained from: ArchLinux [1] Differential Revision: https://reviews.freebsd.org/D6308 [1] https://git.archlinux.org/svntogit/packages.git/tree/trunk/opal-ffmpeg3.patch?h=packages/opal Notes: svn path=/head/; revision=414950
* Switch opal to newer ffmpeg.Koop Mast2015-07-141-0/+398
| | | | | | | | Noticed by: bapt@ Obtained from: ffmpeg 2.x patch obtained from linuxfromscratch. Notes: svn path=/head/; revision=392099
* Switch to ffmpeg 0.x [1]. This should resolve building failures with ffmpeg 2.x.Koop Mast2013-10-211-189/+0
| | | | | | | Submitted by: wg@ [1] Notes: svn path=/head/; revision=331138
* multimedia/ffmpeg: update to 2.0.1William Grzybowski2013-10-191-0/+189
| | | | | | | | | | - Update main ffmpeg port to 2.0.1 - Bump and update dependent ports when necessary (API change) Approved by: portmgr (bapt) Notes: svn path=/head/; revision=330909
* Move ptlib26, opal3 and ekiga3 to unversioned ports and update to:Koop Mast2013-09-205-0/+243
| | | | | | | | | ptlib to 2.10.10 opal to 3.10.10 ekiga to 4.0.1 Notes: svn path=/head/; revision=327751
* Remove old versions, in preperation of svn mv of versioned ports to unversioned.Koop Mast2013-09-203-37/+0
| | | | Notes: svn path=/head/; revision=327749
* Upgrade opal to 2.2.8 (from 2.2.4) and ekiga to 2.0.9 (from 2.0.4).Mikhail Teterin2007-06-181-24/+0
| | | | | | | | | | | | | | | | These versions are only available from Ekiga.org, rather than from the traditionally used site VoxGratia.org... Turn the previously "hidden" knobs into OPTIONS. Make ekiga accept whatever versions of opal and pwlib are installed. Take over maintainership, as I plan to use ekiga myself -- unlike the current maintainer. Approved by: maintainer Notes: svn path=/head/; revision=193802
* Add patch to fix build when LOCALBASE != /usr/local. The configureTim Bishop2007-01-071-0/+24
| | | | | | | | | | | | | script checked explicitly in /usr/local for pwlib. This patch has also been sent upstream. Patch does not affect build when LOCALBASE == /usr/local, so no PORTREVISION bump required. Approved by: Jean-Baptiste Quenot <jbq@caraldi.com> (maintainer) Notes: svn path=/head/; revision=181698
* - update to 2.2.2Cheng-Lung Sung2006-07-052-8/+8
| | | | | | | | | | | | | | - This is an update of net/ekiga and net/opal. Requires the latest update to pwlib (FreeBSD port is uptodate since one week). This update also incorporates a new user-contributed patch, see Bug 345308 - Keypad does not work properly at http://bugzilla.gnome.org/show_bug.cgi?id=345308 PR: ports/99764 Submitted by: maintainer (Jean-Baptiste Quenot) Notes: svn path=/head/; revision=166959
* When net/asterisk is installed, net/opal does not build because it detects theRenato Botelho2006-04-281-0/+13
| | | | | | | | | | | | | presence of include/libpri.h installed by net/asterisk, but the build fails. To fix this problem, please add the port patch below submitted by Matt Horan <matt@matthoran.com>. PR: ports/95641 Submitted by: maintainer Notes: svn path=/head/; revision=160666
* * Remove the double underscore from the library namesJoe Marcus Clarke2006-04-081-0/+11
| | | | | | | | | | | | | | | * Add WITH_FFMPEG knob * Add WITH_SPEEX knob to build with speex-devel instead of the bundled version NOTE: there is an explicit BUILD_DEPENDS to make sure audio/speex-devel is installed as audio/speex and audio/speex-devel install the same shared library version!! PR: 95464 Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de> Approved by: maintainer Notes: svn path=/head/; revision=159101
* New port net/opal based on net/openh323Edwin Groothuis2006-04-053-60/+13
| | | | | | | | | | | | | | | | | OPAL is the "next generation" of OpenH323 that has a new architecture. The new port is based on net/openh323 (same author, port Makefiles very similar), so could you please: 1) make a repocopy from openh323 to opal 2) apply the patch in opal, note that old patch files are removed, and a new patch file is provided PR: ports/95320 Submitted by: Jean-Baptiste Quenot <jbq@caraldi.com> Notes: svn path=/head/; revision=158901
* - Fix openh323u.mak to ports can use.Marcus Alves Grando2006-03-141-4/+29
| | | | | | | | | | | | | - Bump PORTREVISION - Reorganize Makefile - portlint(1) PR: 94234 Submitted by: maintainer Approved by: portmgr (marcus) Notes: svn path=/head/; revision=157088
* - chase the pwlib library renameAlexander Leidinger2006-02-141-2/+11
| | | | | | | | | | - don't change the name of the lib depending on the hw-architecture - let Steve Ames maintain the port Discussed with: Steve Ames <steve@energistic.com> Notes: svn path=/head/; revision=156065
* This is an initial port of newer versions of:Alexander Leidinger2006-02-0512-186/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | - pwlib -> 1.9.2 - openh323 -> 1.17.3 The decission of porting the development releases instead of the stable releases is based upon a discussion with the openh323 developers. They serve as a start to be able to porting newer versions of e.g. gnomemeeting et al. Further tweaks/improvements to them may be required when other ports start to use these versions. Unlike the previous versions of those ports, they install a shared lib now. So ports which depend upon them in the future should add a RUN_DEPENDS upon them. Additionally the build time for those ports will decrease, since they don't need to build pwlib/openh323 each time and grab them from the build directory. PR: 83396 Submitted by: Steve Ames <steve@energistic.com> In colaboration with: Steve Ames <steve@energistic.com> Notes: svn path=/head/; revision=155259
* - Update to 1.12.2Pav Lucistnik2005-06-106-86/+66
| | | | | | | | PR: ports/82086 Submitted by: Steve Ames <steve@energistic.com> Notes: svn path=/head/; revision=137233
* Fix breakage in the presence of ffmpegVolker Stolz2005-03-085-4/+63
| | | | | | | | PR: ports/76931 Patch by: Jan Stocker Notes: svn path=/head/; revision=130624
* Unbreak with gcc 3.4.Maxim Sobolev2004-08-281-0/+10
| | | | Notes: svn path=/head/; revision=117511
* Fix build-issue when ffmpeg is installed.Volker Stolz2004-05-262-3/+35
| | | | | | | | | PR: ports/59615 Submitted by: ume Approved by: maintainer silence Notes: svn path=/head/; revision=110036
* Add patch to make openh323 compile again.Roger Hardiman2003-09-021-0/+21
| | | | Notes: svn path=/head/; revision=88368
* Put back a patch I had accidentaly deleted which meant that IXJ supportRoger Hardiman2003-09-011-2/+28
| | | | | | | | was not compiled in. Add ldap dependency. Bump revision Notes: svn path=/head/; revision=88247
* Upgrade to 1.12.0.Roger Hardiman2003-08-285-248/+58
| | | | | | | pwlib has been split out into its own port. Notes: svn path=/head/; revision=87834
* Add fix for -current /dev/dsp entries.Roger Hardiman2003-02-021-0/+154
| | | | | | | Reported by Lars Eggert Notes: svn path=/head/; revision=74534
* Update to new version ready for GnomeMeeting upgradeRoger Hardiman2003-01-286-228/+55
| | | | Notes: svn path=/head/; revision=74141
* Add some fixes for -current and s-video support from pwlib's CVS.Roger Hardiman2002-10-292-0/+182
| | | | | | | Reported by: Lars Eggert <larse@isi.edu> Notes: svn path=/head/; revision=69082
* Add patch for bison 1.75.Roger Hardiman2002-10-281-0/+19
| | | | Notes: svn path=/head/; revision=68978
* Upgrade to latest version.Roger Hardiman2002-05-222-16/+16
| | | | | | | This fixes the green spots on the H.261 video Notes: svn path=/head/; revision=59662
* Upgrade to latest versionRoger Hardiman2002-04-011-14/+0
| | | | Notes: svn path=/head/; revision=57141
* Fix EOF error from new bison installations.Roger Hardiman2002-03-071-0/+14
| | | | | | | PR: ports/35144 Notes: svn path=/head/; revision=55675
* Make OpenH323 check for the ixj driver header files. If theyRoger Hardiman2002-01-151-3/+8
| | | | | | | | | | are not found, extract them from the ixj driver port and use them. This will make bento build packages for 4.x and 5.x with ixj support, even though the ixj driver fails to compile on 5.x systems at this point in time. Notes: svn path=/head/; revision=53114
* Patch to look for the ixj driver (now in ports/comms/ixj)Roger Hardiman2002-01-151-0/+16
| | | | | | | | header files in /usr/local/include/sys (as well as /usr/include/sys) Bump port revision Notes: svn path=/head/; revision=53103
* Upgrade to version 1.7.2Roger Hardiman2001-10-271-19/+0
| | | | Notes: svn path=/head/; revision=49253
* Add patch so OpenH323 can build with bison 1.29Roger Hardiman2001-10-081-0/+19
| | | | | | | Submitted by: bento Notes: svn path=/head/; revision=48557
* Upgrade to OpenH323 1.5.7Roger Hardiman2001-08-101-24/+45
| | | | Notes: svn path=/head/; revision=46045
* Patch has been merged into the official distribution.Roger Hardiman2001-07-221-19/+0
| | | | Notes: svn path=/head/; revision=45373
* Patch to fix Capabilities are the same bug, often reported in OpenMCURoger Hardiman2001-06-191-0/+19
| | | | Notes: svn path=/head/; revision=44214
* Don't hard-code -O2 or -m486. This still doesn't respect CXX, but IKris Kennaway2001-04-301-0/+24
| | | | | | | couldn't figure out how to fix that. Notes: svn path=/head/; revision=42066
* Upgrade to OpenH323 1.1pl1 and PWLib 1.1pl19Roger Hardiman2001-01-031-29/+0
| | | | Notes: svn path=/head/; revision=36644
* Add a better fix to make OpenH323 run on FreeBSD 4.2 and on -currentRoger Hardiman2000-11-161-52/+24
| | | | | | | with the new libc_r pthread library Notes: svn path=/head/; revision=35185
* Add a patch to make the pwlib library work with the new pthreads (libc_r)Roger Hardiman2000-11-121-0/+57
library in FreeBSD 4.2 (and in -current) Important Note: Existing binaries for OhPhone, GateKeeper, OpenGateKeeper, SimpleH323 and OpenAM WILL NOT WORK with FreeBSD 4.2 or higher and will report "User signal 2" and abort due to an unhandled signal in pwlib. You must recompile all these applications. Reported by: Blaz Zupan <blaz@amis.net> Suggested fix by: Daniel M. Eischen <eischen@vigrid.com> Notes: svn path=/head/; revision=35038