diff options
author | Rene Ladan <rene@FreeBSD.org> | 2019-01-01 13:52:46 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2019-01-01 13:52:46 +0000 |
commit | ba09f7ee95cee49a75d1ecb50f4be68f99de394a (patch) | |
tree | f7075798a9a1abe4f41bfb7a9ae6bd8387a1e92a /multimedia/zoneminder-h264/files/patch-src_zm__logger.cpp | |
parent | sysutils/policykit-qt, sysutils/qzeitgeist: remove dead variable USE_KDE (diff) |
Remove expired ports:
2018-12-30 textproc/pecl-xdiff: Works only with EOL php 5.6
2019-01-01 www/mod_http2-devel: Use the module that is shipped with Apache 2.4
2019-01-01 www/varnish5: Varnish 5 is Retired
2018-12-30 security/pecl-ssh2-0: Works only with EOL php 5.6
2019-01-01 security/bitwarden-ruby: Expects very specific rubygem versions for new updates. Please follow instructions in git repo.
2018-12-30 devel/pecl-intl: Works only with EOL php 5.6
2018-12-30 devel/pecl-APCu4: Works only with EOL php 5.6
2018-12-30 databases/pecl-memcache: Works only with EOL php 5.6
2018-12-30 databases/pecl-memcached2: Works only with EOL php 5.6
2018-12-30 math/pecl-bitset2: Works only with EOL php 5.6
2019-01-01 multimedia/zoneminder-h264: h264 feature was commited to main branch, please upgrade to www/zoneminder
2019-01-01 lang/php56: Security Support ends on 31 Dec 2018
Notes
Notes:
svn path=/head/; revision=488894
Diffstat (limited to 'multimedia/zoneminder-h264/files/patch-src_zm__logger.cpp')
-rw-r--r-- | multimedia/zoneminder-h264/files/patch-src_zm__logger.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/multimedia/zoneminder-h264/files/patch-src_zm__logger.cpp b/multimedia/zoneminder-h264/files/patch-src_zm__logger.cpp deleted file mode 100644 index a1426bbc8fa3..000000000000 --- a/multimedia/zoneminder-h264/files/patch-src_zm__logger.cpp +++ /dev/null @@ -1,23 +0,0 @@ ---- src/zm_logger.cpp.orig 2016-11-03 11:08:37 UTC -+++ src/zm_logger.cpp -@@ -515,8 +515,9 @@ void Logger::logPrint( bool hex, const c - va_list argPtr; - struct timeval timeVal; - -- const char * const file = basename(filepath); -- -+ char *filecopy = strdup(filepath); -+ const char * const file = basename(filecopy); -+ - if ( level < PANIC || level > DEBUG9 ) - Panic( "Invalid logger level %d", level ); - -@@ -635,6 +636,8 @@ void Logger::logPrint( bool hex, const c - abort(); - exit( -1 ); - } -+ -+ free(filecopy); - } - } - |