| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Notes:
svn path=/head/; revision=517040
|
|
|
|
| |
Notes:
svn path=/head/; revision=514128
|
|
|
|
|
|
|
| |
remove esound options where it is possible to
Notes:
svn path=/head/; revision=493867
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
which restores compatibility with old databases (version 1.8) and some
later versions which were built without mmap(2) support. Due to shlib
version change, bump port revisions of the consumer ports.
PR: 233059
Exp-run by: antoine
Approved by: maintainer (johans, numerous timeouts)
Notes:
svn path=/head/; revision=484696
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
These ports link some non-PIC code, which fails with lld as it defaults
to disallowing relocations against read-only segments. For i386 we can
just add -znotext unconditionally: for GNU BFD ld it just affirms BFD's
existing default.
PR: 214864
Approved by: portmgr (lld blanket)
Sponsored by: The FreeBSD Foundation
Notes:
svn path=/head/; revision=480747
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
Notes:
svn path=/head/; revision=477990
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=463452
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
Notes:
svn path=/head/; revision=433662
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=433187
|
|
|
|
| |
Notes:
svn path=/head/; revision=428814
|
|
|
|
|
|
|
|
| |
While here, import several dports patches to add missing headers
for c++.
Notes:
svn path=/head/; revision=420749
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412344
|
|
|
|
|
|
|
| |
- Remove CONFIG_SHELL from CONFIGURE_ENV because bsd.port.mk handles that
Notes:
svn path=/head/; revision=384215
|
|
|
|
|
|
|
|
|
| |
xmcd didn't pass check-plist (pre-existing), fixed.
approved by: PTHREAD blanket
Notes:
svn path=/head/; revision=382272
|
|
|
|
|
|
|
| |
Approved by: portmgr (erwin)
Notes:
svn path=/head/; revision=377141
|
|
|
|
|
|
|
| |
strip binaries
Notes:
svn path=/head/; revision=351856
|
|
|
|
| |
Notes:
svn path=/head/; revision=346715
|
|
|
|
|
|
|
|
|
| |
installation of all files named in pkg-plist and fixes plist problems.
Requested by: antoine@
Notes:
svn path=/head/; revision=344942
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Support staging
- Convert to new options framework
PR: ports/186803 (based on)
Submitted by: Mathias Monnerville <mathias@monnerville.com>
MFH: 2014Q1
Notes:
svn path=/head/; revision=344932
|
|
|
|
|
|
|
|
|
| |
LIB_DEPENDS in audio
With hat: portmgr
Notes:
svn path=/head/; revision=336166
|
|
|
|
|
|
|
| |
audio)
Notes:
svn path=/head/; revision=327706
|
|
|
|
|
|
|
| |
- Trim Makefile header
Notes:
svn path=/head/; revision=324181
|
|
|
|
| |
Notes:
svn path=/head/; revision=323767
|
|
|
|
|
|
|
| |
Approved by: portmgr (bapt)
Notes:
svn path=/head/; revision=316596
|
|
|
|
|
|
|
| |
"pathfix" instead.
Notes:
svn path=/head/; revision=315433
|
|
|
|
|
|
|
| |
directly or indirectly (via libvorbis, libtheora).
Notes:
svn path=/head/; revision=301188
|
|
|
|
| |
Notes:
svn path=/head/; revision=297915
|
|
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/165834
Submitted by: Jason E. Hale <bsdkaffee@gmail.com>
Notes:
svn path=/head/; revision=292990
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
Notes:
svn path=/head/; revision=282282
|
|
|
|
| |
Notes:
svn path=/head/; revision=281708
|
|
|
|
|
|
|
|
|
|
| |
mid 2008.
PR: ports/159624
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Notes:
svn path=/head/; revision=279506
|
|
|
|
|
|
|
| |
(via libvorbis, libtheora).
Notes:
svn path=/head/; revision=255958
|
|
|
|
| |
Notes:
svn path=/head/; revision=255371
|
|
|
|
|
|
|
|
| |
Reviewed by: exp8 run on pointyhat
Supported by: miwi
Notes:
svn path=/head/; revision=251605
|
|
|
|
| |
Notes:
svn path=/head/; revision=249285
|
|
|
|
| |
Notes:
svn path=/head/; revision=237283
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).
PR: ports/124340
Submitted by: edwin@
Approved by: portmgr (pav)
Notes:
svn path=/head/; revision=214428
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
Notes:
svn path=/head/; revision=211584
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
Notes:
svn path=/head/; revision=196462
|
|
|
|
|
|
|
|
|
|
|
| |
- Drop stupid -esound suffix, it just one of many sound servers/proxies
available today, nothing special to require such attribution
- Kill EOL whitespace in pkg-descr
Reported by: pointyhat (logs) [1]
Notes:
svn path=/head/; revision=194453
|
|
|
|
|
|
|
|
| |
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Notes:
svn path=/head/; revision=191544
|
|
|
|
| |
Notes:
svn path=/head/; revision=190056
|
|
|
|
| |
Notes:
svn path=/head/; revision=188130
|
|
|
|
|
|
|
|
| |
PR: ports/106002
Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
Notes:
svn path=/head/; revision=178248
|
|
|
|
|
|
|
|
|
|
| |
- Use DATADIR macro
PR: ports/95452
Submitted by: Alexander Botero-Lowry <alex@foxybanana.com>
Notes:
svn path=/head/; revision=159048
|
|
|
|
|
|
|
| |
Approved by: portmgr (kris)
Notes:
svn path=/head/; revision=156749
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.
Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.
Preliminary documentation can be found at:
http://people.FreeBSD.org/~ade/autotools.txt
which is in the process of being SGMLized before introduction into the
Porters Handbook.
Light blue touch-paper. Run.
Notes:
svn path=/head/; revision=148323
|
|
|
|
| |
Notes:
svn path=/head/; revision=147269
|
|
|
|
| |
Notes:
svn path=/head/; revision=130974
|
|
|
|
|
|
|
| |
big upgrade.
Notes:
svn path=/head/; revision=121070
|