summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-03-12Make sure to use $(X_LIBS) when linking libjawt.so against libawt_xawt.so.tnn2-4/+13
Might fix "ld: fatal: library -lXrender: not found" seen in SmartOS bulk build.
2016-03-12don't default to EOL versions of java:tnn1-6/+7
- change Linux x86 from sun-jdk6 to oracle-jdk8 - change SunOS x86 from openjdk7 to openjdk8 - change DragonFly from openjdk7 to openjdk8 leave Darwin at sun-jdk6 for now, not sure how the builtin stuff works ...
2016-03-12Updated www/firefox38-l10n to 38.7.0ryoon1-1/+2
2016-03-12Update to 38.7.0ryoon2-359/+359
* Sync with firefox38-38.7.0
2016-03-12Updated www/firefox38 to 38.7.0ryoon1-1/+2
2016-03-12Update to 38.7.0ryoon3-29/+8
Changelog: Fixed in Firefox ESR 38.7 2016-37 Font vulnerabilities in the Graphite 2 library 2016-35 Buffer overflow during ASN.1 decoding in NSS 2016-34 Out-of-bounds read in HTML parser following a failed allocation 2016-31 Memory corruption with malicious NPAPI plugin 2016-28 Addressbar spoofing though history navigation and Location protocol property 2016-27 Use-after-free during XML transformations 2016-25 Use-after-free when using multiple WebRTC data channels 2016-24 Use-after-free in SetBody 2016-23 Use-after-free in HTML5 string parser 2016-21 Displayed page address can be overridden 2016-20 Memory leak in libstagefright when deleting an array during MP4 processing 2016-17 Local file overwriting and potential privilege escalation through CSP reports 2016-16 Miscellaneous memory safety hazards (rv:45.0 / rv:38.7) 2015-136 Same-origin policy violation using performance.getEntries and history navigation 2015-81 Use-after-free in MediaStream playback
2016-03-12Updated x11/deforaos-keyboard to 0.3.0khorben1-1/+2
2016-03-12Package DeforaOS Keyboard 0.3.0khorben5-37/+18
This release brings: - support for the newest API from libDesktop - generic keyboard widget for libDesktop - improved support for Gtk+ 3 - early translation to Spanish - no more conflicts with x11/gnome-control-center
2016-03-11Re-arrange support for FORTIFY/MKPIE/RELRO/SSPkhorben4-27/+33
- No _GCC_* anything in mk/bsd.prefs.mk; - No compiler flags in platform files. Tested again on NetBSD/amd64, with and without cwrappers, with the same outcome. With feedback from jperkin@
2016-03-11Add support for a number of security featureskhorben9-28/+176
- Revisit (and rename) support for FORTIFY as PKGSRC_USE_FORTIFY (instead of PKGSRC_USE_FORT) for easier support outside NetBSD/gcc; - PKGSRC_USE_SSP is no longer enabled by default when PKGSRC_USE_FORTIFY is enabled; - PKGSRC_MKPIE builds executables as PIE (to leverage userland ASLR) - PKGSRC_USE_RELRO builds with a read-only GOT to prevent some exploits from functioning. Tested on NetBSD/amd64 by myself, in every combination, with and without pkgtools/cwrappers. MKPIE is not supported at the moment with cwrappers. Also, MKPIE is known to still break a number of packages when enabled (and actually supported). Tested on SunOS by jperkin@, thank you! As discussed on tech-pkg@, the default behavior is not changed, except where noted above. ok bsiegert@
2016-03-11Strip --enable-new-dtags GNU ld arg on Darwin and SunOS.fhajny2-2/+6
2016-03-11Updated net/nsd to 4.1.8pettai1-1/+2
2016-03-114.1.8pettai2-8/+7
================ FEATURES: - #732: tcp-mss, outgoing-tcp-mss options for nsd.conf. - #739: zonefile changes when mtime is small are detected on reload, if filesystem supports precision mtime values. - RR type CSYNC (RFC7477) syntax is supported. BUG FIXES: - take advantage of arc4random_uniform if available. - Fix flto check for OSX clang. - Define _DEFAULT_SOURCE with _BSD_SOURCE for glibc 2.20 on Linux. - Fix #736: segfault during zone transfer. - Fix #744: Fix that NSD replies for configured but unloaded zone with SERVFAIL, not REFUSED.
2016-03-11Add pgpool2fhajny1-1/+2
2016-03-11Added databases/pgpool2 version 3.5.0fhajny1-1/+2
2016-03-11Import pgpool-II 3.5.0 as databases/pgpool2, based on wip/pgpool2.fhajny11-0/+285
pgpool-II is a middleware that works between PostgreSQL servers and a PostgreSQL database client. It talks PostgreSQL's backend and frontend protocol, and relays a connection between them.
2016-03-11Explicitly skip directories. PR 50955.dholland1-1/+4
2016-03-11Updated lang/ecl to 16.1.2asau2-3/+3
2016-03-11Update to ECL 16.1.2asau6-212/+9
Changes since 16.0.0 * API changes - si:do-setf accepts optional parameter stores. New lambda-list: (access-fn function &optional (stores `(,(gensym)))) This change is backward compatible. - New MP functions: mp:with-rwlock mp:try-get-semaphore (non-blocking) mp:mailbox-try-read (non-blocking) mp:mailbox-try-send (non-blocking) - Added back removed C interfaces ecl_import_current_thread ecl_release_current_thread - When cl-truename encounters a broken symlink, it returns its path instead of signalling a file-error - Deprecated variables has been removed c::*suppress-compiler-warnings*, c::*suppress-compiler-notes* - Random state might be initialized by a random seed (truncated to 32bit value) or by a precomputed array. Latter is designed to allow reading back the printed random state (when printed readably), not as an array to initialize the random state. - C99 supporting compiler is mandatory for C backend. - COMPILER::*cc_is_cxx*: New variable to switch the output extension of emitted compiler code to ".cxx" when configured with "--with-c++". This eliminates compiler warnings that compiling C++ with a ".c" extension is deprecated; this is seen mostly with Clang++. - Added Clang-specific pragmas to disable return type, unused value and excessive parentheses warnings, which are fairly harmless, but annoying and clutter user output. - GRAY:CLOSE isn't specialized on T to preserve compatibility with some libraries. * Enhancements: - Added code walker (present as *feature* :walker) - Testing framework cleanup - Format fallbacks to prin1 if infinity or NaN are passed to it - Annotations are added at runtime (better integration with SLIME) - Mersenne-Twister RNG has new 64 bit implementation for appropriate machines - Add sockets implementation for android platform - Add android build target (official android support) * Issues fixed: - si:open-unix-socket-stream accepts both string and base-string (automatic coercion is performed) - Long form of DEFSETF accepts multiple-values as a store forms: (defsetf gah (x) (y z) `(list ,x ,y ,z)) (setf (gah 3) (values 3 4)) - Building with single-threaded boehm works if ECL threads are disabled - Using labels works with sharp-S-reader (read-from-string "(#1=\"Hello\" #S(sharp-s-reader.1.example-struct :A #1#))") - Generated C code works well with IEEE 754 infinities (regression tests created) - User-defined heap sizes can now exceed the size of a fixnum on 32-bit - The heap size limit was intended to be 1GB on 32-bit or 4GB on 64-bit but inconsistency between ECL_FIXNUM_BITS and FIXNUM_BITS in the code prevented the heap to grow for 64-bit. This now occurs, and a few other less visible bugs were fixed by restoring consistency to ECL_FIXNUM_BITS. - EXT:EXTERNAL-PROCESS-WAIT potential race condition fix - Building with object files not created by ECL works (CFFI wrappers) - Regression regarding initialization of build by ECL libraries from external code fixed. Static and shared libraries initialization funcitons has predetermined name while object files has randomized names. - Random state initial state generation was buggy and insecure (entropy from urandom was rejected) - Fix `listen' on streams when FILE_CNT isn't available (use read instad of fread) - `FIND' compiled with C compiler didn't respect `START' nor `END' arguments. Compiler macro is fixed now and should work as expected - `compute-applicable-methods-using-classes` bugfix
2016-03-11Add a MESSAGE to document that further tools can be needed for some sitesleot1-0/+10
(but aren't strictly needed for most supported sites). Thanks to coypu who pointed out that via a private email.
2016-03-11Rather than remove the library completely, just fix the path to use thejperkin1-8/+7
installed version. Clean up some variable assignment while here. Ride the previous PKGREVISION bump.
2016-03-11Add perl to build tools. Fixes SunOS build and also enables man pagesfhajny5-7/+91
and html docs. Bump PKGREVISION.
2016-03-11Updated print/qpdf to 6.0.0ryoon1-1/+2
2016-03-11Update to 6.0.0ryoon2-8/+7
Changelog: 2015-11-10 Jay Berkenbilt <ejb@ql.org> * 6.0.0: release * No changes from 5.2.0. The 5.2.0 release broke binary compatibility and was withdrawn. 2015-10-31 Jay Berkenbilt <ejb@ql.org> * 5.2.0: release * libqpdf/QPDF.cc (read_xrefTable): Be tolerant of some malformed xref tables that don't have the required trailing space after each line. 2015-10-29 Jay Berkenbilt <ejb@ql.org> * Implement QPDFWriter::setDeterministicID and --deterministic-id commandline-flag to qpdf to request generation of a deterministic /ID for non-encrypted files.
2016-03-11Updated emulators/xnp2 to 0.86tsutsui1-1/+2
2016-03-11Update xnp2 to 0.86.tsutsui2-7/+7
upstream changes (no English changelog): - fix build issue on certain environments
2016-03-11Updated multimedia/adobe-flash-plugin11 to 11.2.202.577tsutsui1-1/+2
2016-03-11Update adobe-flash-plugin11 to 11.2.202.577.tsutsui2-11/+11
Upstream annoucement: https://helpx.adobe.com/security/products/flash-player/apsb16-08.html Adobe Security Bulletin Security updates available for Adobe Flash Player Release date: March 10, 2016 Vulnerability identifier: APSB16-08 CVE number: CVE-2016-0960, CVE-2016-0961, CVE-2016-0962, CVE-2016-0963, CVE-2016-0986, CVE-2016-0987, CVE-2016-0988, CVE-2016-0989, CVE-2016-0990, CVE-2016-0991, CVE-2016-0992, CVE-2016-0993, CVE-2016-0994, CVE-2016-0995, CVE-2016-0996, CVE-2016-0997, CVE-2016-0998, CVE-2016-0999, CVE-2016-1000, CVE-2016-1001, CVE-2016-1002, CVE-2016-1005, CVE-2016-1010 Platform: Windows, Macintosh and Linux
2016-03-11Add bl3.mk file for libopts.wiz1-0/+13
2016-03-11Updated x11/kdelibs4 to 4.14.15nb2jperkin1-1/+2
2016-03-11Fixup for dylib too. Bump PKGREVISION.jperkin1-3/+3
2016-03-11Fix build when KDE is installedabs3-3/+22
No PKGREVISION bump as does not affect any existing successful build
2016-03-11Updated misc/libreoffice to 5.1.1.3ryoon1-1/+2
2016-03-11Update to 5.1.1.3ryoon3-21/+23
Changelog: List of fixed bugs Bugs fixed compared to 5.1.1 rc1: fdo#94009 FILESAVE: DOCX - Margins not preserve [Michael Stahl] tdf#40517 Decimal alignment (user defined number formats with question marks) lost in ODF [Laurent Balland-Poirier] tdf#56544 FILEOPEN: Lock file is not created on samba share (via gvfs) [Stephan Bergmann] tdf#97197 With OpenGL active Impress slide transition Rochade effect blanking entire UI to white [Michael Meeks] tdf#97739 OpenGL: dissapear field controls in dialogue Format-Page, tab Page (Calc) [Michael Meeks] tdf#97763 divide by zero bug ... [Tomaž Vajngerl] tdf#97808 FILEOPEN: arrowheads added to lines within groups [Michael Stahl] tdf#97816 opengl - corrupted icon with 1bit mask in calc toolbar [Michael Meeks] st of fixed bugs Bugs fixed compared to 5.1.0 final (rc2): coverity#1348468 oox: copy-paste error [Michael Stahl] rhbz#1240591 Clipboard is cleared when LO is closed [Caolán McNamara] rhbz#1257635 [fix available] sometimes LO doesn't see cups printers [Caolán McNamara] rhbz#1289394 [gtk3] [wayland] tooltips are misplaced before moving window for the first time [Caolán McNamara] rhbz#1294208 [GTK3] [Xorg] Scrolling in LibreOffice bounces or go in reverse direction [Caolán McNamara] tdf#40517 Decimal alignment (user defined number formats with question marks) lost in ODF [Laurent Balland-Poirier] tdf#45771 SVG: Incorrect text size [Xisco Fauli] tdf#61511 problem Background rtf [Miklos Vajna] tdf#72695 crash on concurrent SwXTextDocument::dispose and SwXTextFrame::release [Michael Stahl] tdf#74667 Data Analysis Toolkit - Regression [Tomaž Vajngerl] tdf#75256 Meta: incomplete Sifr icon theme [Matthias Freund] tdf#79163 SVG Import - gradients bugged and some transparent sections fully white [Xisco Fauli] tdf#85770 In svg image, visibility does not work for tspan [Xisco Fauli] tdf#86609 TOOLBAR: Paste no longer has paste special drop down in Impress/Draw [Maxim Monastirsky] tdf#87178 DIALOG: Reset menus in Customize dialog resets toolbars as well [Maxim Monastirsky] tdf#89031 EDITING - Calc Function suggestion too agressive [Winfried Donkers] tdf#91017 [Regression] Black squares hide content of WMF image [Armin Le Grand] tdf#91762 Inserting table has incorrect row heights [Xisco Fauli] tdf#91909 Uno commands for slide navigation and slide sorting [Caolán McNamara] tdf#92077 FILESAVE: Rotated shapes double rotated when exported to OOXML [Andras Timar] tdf#92630 GTK+ auto-accelerator functionality missing [Katarina Behrens] tdf#92720 EDITING: Report-Builder - Report fails to open with Charts in a Report [Michael Stahl] tdf#93038 ICONS: Missing Open Remote File icon [Laurent Balland-Poirier] tdf#93054 EDITING: dragging and dropping selected cells doesn't work (GTK3 only) [Caolán McNamara] tdf#93151 "Expand references when new columns/rows are inserted" broken for named ranges [Eike Rathke] tdf#93637 PDF export missing ToC page numbers [Justin Luth] tdf#94739 Images are distorted diagonally on PDF export when OpenGL rendering is enabled [Caolán McNamara] tdf#95024 Support for new Hungarian orthography [László Németh] tdf#95217 Persian text not imported with "Link to External Data..." in Calc [Giuseppe Castagno] tdf#95573 EXTENSION MANAGER - freeze / hang when attempting to install extensions on OSX 10.11, installation confirmation dialog not displayed [Michael Meeks] tdf#95587 position values do not follow base point setting [Katarina Behrens] tdf#95648 When OpenGL rendering is active-- Graphite font has black blocks when used in a justified paragraph [Tor Lillqvist] tdf#96147 ODF export: CharHighlight property causes duplicate fo:background-color attributes on text/paragraph styles [Michael Stahl] tdf#96174 "File - Save to Remote Server" spits out "Error saving document $document: The specified device is invalid", when trying to save to GDrive [Giuseppe Castagno] tdf#96222 Simple matrix formulas give wrong results when calc file saved in .ods is reopened (openCL) [Tor Lillqvist] tdf#96245 Frames are deleted from document that doesn't contain the draw:name property in draw:frame elements [Caolán McNamara] tdf#96308 FILEOPEN RTF incorrect tab spacing on table [Miklos Vajna] tdf#96327 Start Center: "F" accelerator for "Remote Files" conflicts with "alt+F" accelerator for "File" menu [Gabriele Ponzo] tdf#96385 Tracker: GL black / flickering issues [Michael Meeks] tdf#96407 Mac OS X version doesnt appear in About dialog [Douglas Mencken] tdf#96420 Glyph replacement causes caret misplacement and/or mis-rendered replacement glyph [Tor Lillqvist] tdf#96580 "Edit with External Tool" damages svg image [Caolán McNamara] tdf#96604 ungrab modal dialogs [Caolán McNamara] tdf#96606 Bring shipped Spanish dictionary up to version 2.0 [Ricardo Palomares] tdf#96653 PNG graphics are corrupted when exported to PDF [Caolán McNamara] tdf#96669 UI: 'Save to remote server' error: 'A file named "$file" already exists' though file is not present on target WebDAV server. [Giuseppe Castagno] tdf#96685 EditEng AccessibleParagraph not focused on first use - KMFL doesn't swallow characters [Justin Luth] tdf#96833 Remote Files UI dialog has various small issues (lost values in editing, wrong TCP port number management...) [Giuseppe Castagno] tdf#96910 EDITING - Crashs using "insert column left" for large documents with concatenation [Yogesh] tdf#96943 Hide whitespace mode: new page is inserted for window/orphan-controlled paragraph [Miklos Vajna] tdf#96961 Hide whitespace mode: whitespace is hidden even on the last page [Miklos Vajna] tdf#96993 Images in PDF files opened with 5.1.0.0.beta 2 Draw are inverted. [Mike Kaganski] tdf#97033 EDITING - Malformed ODB file crashes when editing tables, queries, forms in master dbgutil [Michael Stahl] tdf#97051 Writer crashes on saving document with header or footer after using page style dialog [Oliver Specht] tdf#97108 Assertion `!rDestShellID.isEmpty() && !rDestShellID.startsWith("0x")' failed when copying OLE object [Michael Stahl] tdf#97116 New commands insertbefore and insertafter have no icons in theme Galaxy [Regina Henschel] tdf#97196 Some Slide transition variant names are duplicated in the drop lists created for groups [Julien Nabet] tdf#97247 Focus goes strange when typing UP/LEFT at merged cell at top-left corner [Takeshi Abe] tdf#97276 Cannot select line shape with mouse [Caolán McNamara] tdf#97308 FORMATTING: Conditional "Ends with" applies formatting to inverted selection [Julien Nabet] tdf#97331 Crash conditional formatting, when scrolling on Icon set [Caolán McNamara] tdf#97369 SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows) [Tor Lillqvist] tdf#97375 Impress crashes in text selection [Caolán McNamara] tdf#97407 SIDEBAR: Spacing drop down has 2 'Custom' entries in Wrap content panel [Rishabh] tdf#97417 DOCX import: paragraphs wrongly in a list in particular document [Michael Stahl] tdf#97419 Crash when creating table with wizard [Maxim Monastirsky] tdf#97439 Update (merge) Autocorrect pt_PT to 2016-01-29 [Marco A. G. Pinto] tdf#97458 LO 5.1.0.3 - Writer: Immediate crash after opening ".docx" or ".odt" when OpenGL enabled (Intel HD 3000) [Michael Meeks] tdf#97465 Calc doesn't show referenced cell highlights (colored borders) for selected formula when using the GTK3 UI version [Caolán McNamara] tdf#97495 Tooltip is not aligned with its UI element [Caolán McNamara] tdf#97512 LO5.0.1RC3 About box not fully localizable [Andras Timar] tdf#97587 Software interpreter for SUM treats empty cells as #VALUE! [Tor Lillqvist] tdf#97633 VCL: UNO API for getBufferSwapCounter() [Tor Lillqvist] tdf#97666 avoid pointless pull & push of bitmaps [Tomaž Vajngerl] tdf#97700 extraordinary memory corruption ... [Michael Meeks]
2016-03-11skip the SHLIBS check for libjawt.sotnn1-1/+2
It is a dlopened library and needs libmawt.so, but that can be provided by either xawt/libmawt.so or headless/libmawt.so. The JVM will pick and load the correct implementation to use so an explicit run path is neither appropriate nor required.
2016-03-11If the configure script can't figure out the correct answer, bail outtnn2-27/+36
with exit 1 instead of trying an interactive prompt that goes into an infinite loop if stdin is not a tty.
2016-03-11try harder to find system's zlibtnn1-1/+2
2016-03-11resurrect and copy the previous clang patch-ac to heretnn4-7/+41
jperkin Mon Mar 7 16:27:47 UTC 2016 Do not use "-z discard-unused" linker flags on SunOS, it is only supported by the very latest Oracle Solaris release.
2016-03-11let's do just "Solaris" instead of "Oracle"tnn1-2/+2
The only current use of this is pbulk's subject line, and Solaris 11.3 makes more sense than Oracle 11.3.
2016-03-11for SunOS, assume that OS_VARIANT is Oracle if no match on other variantstnn1-2/+5
for OmniOS, stop processing /etc/release after the first line
2016-03-10Updated sysutils/tarsnap to 1.0.37wiz1-1/+2
2016-03-10Update tarsnap to 1.0.37.wiz2-8/+7
First the new release: Tarsnap 1.0.37 is now available. This version brings the following substantive changes compared to tarsnap 1.0.36: * tarsnap-key(gen|mgmt|regen) now accept a --passphrase-time option, which specifies the duration to be spent on computing the derived keys used for encrypting the tarsnap key file. * tarsnap now accepts a --keep-going option when deleting or printing statistics about multiple archives. * tarsnap-keymgmt now accepts a --print-key-permissions option for listing the permissions contained in a key file. * tarsnap --print-stats now accepts a --csv-file option for printing statistics in comma-separated-value format. * tarsnap now accepts a --verify-config command which exits silently after checking the configuration file(s) for syntax errors. * tarsnap now looks for a server named "v1-0-0-server.tarsnap.com" instead of the historic "betatest-server.tarsnap.com" hostname. This should have no user-visible effect in most configurations. * tarsnap now correctly warns if a sparse extract fails due to hardlinks. * tarsnap now prints a warning if creating an empty archive. As usual, there are also many minor build fixes, harmless bug fixes, and code refactoring / cleanup changes. For a full listing of changes, consult the tarsnap git repository: https://github.com/Tarsnap/tarsnap
2016-03-10Updated textproc/libxml++ to 2.40.1nros2-3/+3
2016-03-10Revbump because of libxml++ update.nros2-4/+4
2016-03-10Revbump because of libxml++ update.nros1-2/+3
Set LICENSE.
2016-03-10Update libxml++ to version 2.40.1nros4-84/+124
Changelog: 2.40: Major changes since 2.38: * Use (and require) C++11. (Murray Cumming, Kjell Ahlstedt, Mikhail Titov) * SaxParser: Fix "double free or corruption" if a std::exception is thrown by a handler method. (Daniel Trebbien, Kjell Ahlstedt) 2.40.0 (unstable): * Build improvements. (Kjell Ahlstedt) 2.38.1 (stable): * Fix the build with C++11 compilers, such as MS Visual C++ 2013 - Implicit conversions from streams to bool are no longer allowed.) (Mikhail Titov) * Build: Disable deprecated API in dependencies if --enable-warnings=fatal (Kjell Ahlstedt) * Build: Require libxml2 2.7.7 or later (Kjell Ahlstedt) 2.38.0 (stable): This stable version is identical to the unstable version 2.37.2. API additions since 2.36: * Add Node::add_child_with_new_ns(). (Kjell Ahlstedt) Bug #737682 (Mathias Lorente) * Add XsdSchema and XsdValidator classes. Deprecate Schema and SchemaValidator. Add RelaxNGSchema and RelaxNGValidator. (Kjell Ahlstedt) Bug #737712 (Michel Stam) Thanks to Tjalling Hattink, who made initial versions of the RelaxNG classes. * Parser: Add input operator>>(std::istream& in, Parser& parser). (Kjell Ahlstedt) Bug #329281 (Pierre Thierry) * Parser: Add [set|get]_include_default_attributes() and [set|get]_parser_options(). (Kjell Ahlstedt) Bug #701674 (Bob Nolty) 2.36.0 (unstable): * Element::set_namespace_declaration(): It is not an error to set the same URI twice. (Kjell Ahlstedt) Bug #635846, comment 27. * Require libxml-2.0 >= 2.7.3. (Kjell Ahlstedt) * Parser::initialize_context(): Call xmlCtxtUseOptions(). (Kjell Ahlstedt) 2.35.4 (unstable): * Document: - Add process_xinclude(), using new XIncludeStart and XIncludeEnd classes, derived from Node. (Kjell Ahlsted) Bug #338521. - Make the Document(xmlDoc*) constructor public. (Kjell Ahlsted) Bug #668980. * Parser: Make it thread-safe. (Kjell Ahlstedt) Bug #681467. * Schema::set_document(): If the argument 'document' is 0 then create an empty document, as the documentation says. (Kjell Ahlstedt) * Improve the error handling. (Kjell Ahlstedt) Bug #635846. * Documentation: - Add incremental parsing to the SaxParser example program. - DtdValidation and SchemaValidation: Print all exception information. - Improve error descriptions. (Kjell Ahlstedt) 2.35.3 (unstable): * Node: - Add eval_to_[boolean|number|string]() methods. (Kjell Ahlstedt) Bug #316244 - Fix memory problems in import_node(). (Kjell Ahlstedt) Bug #672992 * Build: - The examples are now built and run during make check. (Kjell Ahlstedt) Bug #678390 - Define LIBXMLCPP_EXCEPTIONS_ENABLED unconditionally. (Kjell Ahlstedt) 2.35.2 (unstable): * Node: Add get_first_child(). (Murray Cumming, Based on a patch by Ilya Murav'jov in bug #648125) * Build: Remove the --disable-api-exceptions configure option. (Murray Cumming) 2.35.1 (unstable): * Handle attributes with default values correctly. (Kjell Ahlstedt) Bug #669635. * Improved handling of entity references and processing instructions. (Kjell Ahlstedt) Bug #669481 * Parser: Throw more detailed error messages. (Kjell Ahlstedt) Bug #304020 (Virgile Devaux) * Document: Make the Document(xmlDoc*) constructor protected. (Murray Cumming) Bug #668980 (A. Pignotti).
2016-03-10Set CHECK_SHLIBS_SUPPORTED=no for both the JRE and JDK, a bug in check-shlibsjperkin3-8/+5
was masking test failures for the JDK package.
2016-03-10Updated archivers/lzmalib to 0.0.1nb1jperkin1-1/+2
2016-03-10Ensure we append to LDFLAGS, fixes rpath issues that were only exposed afterjperkin3-4/+14
fixing check-shlibs. Bump PKGREVISION.
2016-03-10Updated security/mit-krb5 to 1.10.7nb9jperkin1-1/+2