locales, libconv: Sync with FreeBSD (extensive reach)What started out as a relatively simply upgrade to libiconv finallyresulted in a simultaneous overhaul to locales, strings, and stdio.All of t
locales, libconv: Sync with FreeBSD (extensive reach)What started out as a relatively simply upgrade to libiconv finallyresulted in a simultaneous overhaul to locales, strings, and stdio.All of these are interdependent and there is no way to upgrade themindividually or in steps.These cases are similar to what happened with libm where significantsyncing came from NetBSD previously, rendering contributions fromFreeBSD difficult. Libiconv and locales (both ancient) are now insync with FreeBSD HEAD.As several headers were signficantly updated and the mtree was updatedto accommodate the new include/xlocale directory, this commit willrequire a full world build. It also may cause some dports to no longerbuild due to prototype differences, but the dports will be adjusted.The regexp library was not being used. It was removed from FreeBSD fouryears ago. Since it required collate updates, I took the opportunity toremove it completely by adding re_comp functionality to 4.3 compatlibrary like FreeBSD did.__DragonFly_version has been bumped to 500300.
show more ...
libstdc++47: Fix iostream bug 2478c++ iostreams were segfaulting -- apparently _M_table isn't defined in allcases. Fix inspired from FreeBSD configuration files.https://bugs.dragonflybsd.org/is
libstdc++47: Fix iostream bug 2478c++ iostreams were segfaulting -- apparently _M_table isn't defined in allcases. Fix inspired from FreeBSD configuration files.https://bugs.dragonflybsd.org/issues/2478
GCC47: Add local modificationsThe majority of these changes are new files required to build GCC onDragonFly. They are identical to the lang/gcc-aux modifications. Ofinterest:1) The modificati
GCC47: Add local modificationsThe majority of these changes are new files required to build GCC onDragonFly. They are identical to the lang/gcc-aux modifications. Ofinterest:1) The modification to c-format.c is a carry-over from GCC44. It maintains support for the DragonFly-specific %b and %D conversions.2) The modification to tree-inline.c is a carry-over from GCC44. It maintains the suppression of "unlikely call" inline warnings.3) The gcc driver was modified to strip out all the bad paths in its search path. gcc -print-search-dirs is now short and accurate.