aboutsummaryrefslogtreecommitdiffstats
path: root/audio/moc
ModeNameSize
-rw-r--r--Makefile2534logstatsplainblame
-rw-r--r--distinfo93logstatsplainblame
d---------files53logstatsplain
-rw-r--r--pkg-descr489logstatsplainblame
-rw-r--r--pkg-plist411logstatsplainblame
| | | | | src/zip_header.cpp:43:31: error: constant expression evaluates to 234 which cannot be narrowed to type 'char' [-Wc++11-narrowing] char arjHeaderSign[3]={ 0x60,0xea, 0 }; ^~~~ src/zip_header.cpp:43:31: note: insert an explicit cast to silence this issue char arjHeaderSign[3]={ 0x60,0xea, 0 }; ^~~~ static_cast<char>( ) src/zip_header.cpp:120:15: error: assigning to 'char *' from incompatible type 'char' h->filename='\0'; ^~~~ src/zip_header.cpp:282:15: error: assigning to 'char *' from incompatible type 'char' h->filename='\0'; ^~~~ http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/zinf-2.2.5_22.log (and a lot more errors like these and std::bind and bind confusion if one gets past these) * Work around the lack of definition of union semun per POSIX.brooks2018-03-031-0/+1 | | | | | | | | | | | | When feasible do this by adding -D_WANT_SEMUN to CFLAGS or CXXFLAGS. Where this fails due to ports not honoring C*FLAGS, patch using __FreeBSD_version to enable the definition. PR: 224300, 224443 (exp-run) Approved by: portmgr (antoine) Exp-run: antoine Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14137 * audio/zinf: unbreak with gcc5 or earlier after r433187jbeich2017-02-091-1/+1 | | | | | | | | | | src/player.cpp: In member function 'void Player::HandlePrefsChanged(Event*)': src/player.cpp:1970:40: error: 'stoi' was not declared in this scope nPort = stoi(buffer.substr(pos)); ^ Reported by: marino Pointy hat to: jbeich (forgot libc++ leaks C++11) * audio/zinf: unbreak with libc++ 3.9jbeich2017-02-031-1/+1 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/Http.cpp:771:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Content-Length:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:401:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:561:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Content-Length:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:575:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Last-Modified:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:799:24: error: assigning to 'char *' from incompatible type 'const char *' file = strchr(item->SourceURL().c_str() + 7, '/'); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/player.cpp:552:21: error: assigning to 'char *' from incompatible type 'const char *' extension = strrchr(url.c_str(), '.'); ^~~~~~~~~~~~~~~~~~~~~~~~~ src/player.cpp:1109:17: error: assigning to 'char *' from incompatible type 'const char *' temp_proto = strstr(title, "://"); ^~~~~~~~~~~~~~~~~~~~ src/player.cpp:1129:15: error: assigning to 'char *' from incompatible type 'const char *' temp_ext = strrchr(title, '.'); ^~~~~~~~~~~~~~~~~~~ src/player.cpp:1964:14: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *port = strchr(buffer.c_str(),':'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~ src/playlist.cpp:1964:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/playlist.cpp:2045:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/ThemeZip.cpp:150:15: error: assigning to 'char *' from incompatible type 'const char *' pPtr = strrchr(oFile.c_str(), DIR_MARKER); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/wavoutpmo.cpp:127:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *pPtr = strrchr(GetUrl().c_str(), DIR_MARKER); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/ZinfTheme.cpp:1768:26: error: assigning to 'char *' from incompatible type 'const char *' pExtension = strrchr((*i).c_str(), '.'); ^~~~~~~~~~~~~~~~~~~~~~~~~~ pPtr = strrchr(m_oPath.c_str(), '/'); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ unix/src/cdpmo.cpp:116:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *tracknumber = strrchr(url, '/'); ^ ~~~~~~~~~~~~~~~~~ unix/src/GTKPreferenceWindow.cpp:1755:20: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *name = strrchr((*i).second.c_str(), '/'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ unix/src/gtkmusicbrowser.cpp:1206:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ext = strrchr(m_currentListName.c_str(), '.'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ misc.cpp:109:14: error: assigning to 'char *' from incompatible type 'const char *' cp = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ id3lib.cpp:366:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ptr = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ id3lib.cpp:426:11: error: assigning to 'char *' from incompatible type 'const char *' ptr = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ id3lib.cpp:488:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ptr = strrchr(url.c_str(), '.'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ vorbis.cpp:151:11: error: assigning to 'char *' from incompatible type 'const char *' ptr = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ Reported by: pkg-fallout * Four audio ports: USES+= alias (for DF)marino2016-12-181-1/+1 | * audio/zinf: document ncurses requirementmarino2016-08-241-2/+2 | | | | | While here, import several dports patches to add missing headers for c++. * Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.mat2016-04-011-4/+4 | | | | | With hat: portmgr Sponsored by: Absolight * - Remove libtool hacks and patches that are now handled by USES=libtooltijl2015-04-181-1/+0 | | | | - Remove CONFIG_SHELL from CONFIGURE_ENV because bsd.port.mk handles that * audio category: Remove $PTHREAD_LIBSmarino2015-03-261-1/+1 | | | | | | xmcd didn't pass check-plist (pre-existing), fixed. approved by: PTHREAD blanket * - Remove vestiges of alpha supportak2015-01-161-4/+0 | | | | Approved by: portmgr (erwin) * USES=libtoolbapt2014-04-221-2/+3 | | | | strip binaries * Chase last audio/id3lib port changeantoine2014-03-021-1/+1 | * Bump PORTREVISION, adding pkgconf build dependency in last commit results inpawel2014-02-191-1/+1 | | | | | | installation of all files named in pkg-plist and fixes plist problems. Requested by: antoine@ * - Fix build with clangpawel2014-02-191-33/+14 | | | | | | | | | - Support staging - Convert to new options framework PR: ports/186803 (based on) Submitted by: Mathias Monnerville <mathias@monnerville.com> MFH: 2014Q1 * In preparation for making libtool generate libraries with a sane name, fix allbapt2013-12-111-3/+3 | | | | | | LIB_DEPENDS in audio With hat: portmgr * Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-201-0/+1 | | | | audio) * - Convert to new perl frameworkaz2013-08-031-2/+1 | | | | - Trim Makefile header * Chase audio/arts removalbapt2013-07-271-12/+3 | * - Convert USE_GETTEXT to USES (part 4)ak2013-04-261-2/+1 | | | | Approved by: portmgr (bapt) * Mechanically convert unmaintained ports which use "gnomehack" to use ↵eadler2013-03-281-6/+3 | | | | "pathfix" instead. * libogg.so.8: Bump PORTREVISION for ports that depend on libogg,naddy2012-07-201-1/+1 | | | | directly or indirectly (via libvorbis, libtheora). * - update png to 1.5.10dinoex2012-06-011-1/+1 | * - Remove LIB_DEPENDS on musicbrainz its toastpgollucci2012-03-091-2/+1 | | | | | | | - Bump PORTREVISION PR: ports/165834 Submitted by: Jason E. Hale <bsdkaffee@gmail.com> * - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)amdmi32011-09-241-3/+2 | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav * - Track dependencies after databases/gdbm updategabor2011-09-131-2/+2 | * Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sincekwm2011-08-121-1/+1 | | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> * Bump PORTREVISION for ports that depend on libogg, directly or indirectlynaddy2010-06-071-1/+1 | | | | (via libvorbis, libtheora). * Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.ade2010-05-311-1/+1 | * - update to 1.4.1dinoex2010-03-281-1/+1 | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi * - update to jpeg-8dinoex2010-02-051-1/+1 | * Bump PORTREVISION after libogg and libvorbisfile major version increment.naddy2009-07-071-1/+1 | * Bump portrevision due to upgrade of devel/gettext.edwin2008-06-06