|
Revision tags: v3.3.0 |
|
| #
84d9c625 |
| 06-Dec-2013 |
Lionel Sambuc <lionel@minix3.org> |
Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC)
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gm
Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC)
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop
Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
show more ...
|
| #
fbd82e76 |
| 27-Feb-2013 |
Lionel Sambuc <lionel@minix3.org> |
Let the build system manage compilation flags
Do not hardcode warning and optimisation flags, otherwise the main options (i.e. DBG, CPPFLAGS) will not work as expected.
You can still provide specif
Let the build system manage compilation flags
Do not hardcode warning and optimisation flags, otherwise the main options (i.e. DBG, CPPFLAGS) will not work as expected.
You can still provide specific default by using DBG?=<value>.
Doing so leaves the opportunity to override the setting from the commandline, while the default value from the build system is then ignored for that particular package.
When crosscompiling, and using build.sh, adding -V DBG=<value> has this same effect as make DBG=<value>.
Change-Id: Ic610e4d33b945acad64571e1431f1814291e2d84
show more ...
|
|
Revision tags: v3.2.1 |
|
| #
c3db1c69 |
| 28-Jun-2012 |
Ben Gras <ben@minix3.org> |
various symbol referencing fixes
make weak symbol references and namespace renames references the renamed versions.
function renaming, weak symbol references and libc namespace.h protection interac
various symbol referencing fixes
make weak symbol references and namespace renames references the renamed versions.
function renaming, weak symbol references and libc namespace.h protection interact in hairy ways and causes weak symbol references for renamed functions to be unresolved; e.g. vfork should be an alias for _vfork but _vfork doesn't exist because __vfork14() exists.
this is a problem for dynamically linked executables as all symbols have to be resolved, used or not, at link time. it was masked by clang-compiled base system libraries but is a problem when gcc does it.
show more ...
|
|
Revision tags: v3.2.0 |
|
| #
490e0de5 |
| 14-Nov-2011 |
Thomas Veerman <thomas@minix3.org> |
Import librefuse and libpuffs
Import libpuffs and our port of libpuffs. The port was done as part of GSoC 2011 FUSE project, done by Evgeniy Ivanov. The librefuse import did not require any porting
Import librefuse and libpuffs
Import libpuffs and our port of libpuffs. The port was done as part of GSoC 2011 FUSE project, done by Evgeniy Ivanov. The librefuse import did not require any porting efforts. Libpuffs has been modified to understand our VFS-FS protocol and translate between that and PUFFS. As an example that it works, fuse-ntfs-3g from pkgsrc can be compiled and used to mount ntfs partitions: mount -t ntfs-3g <device> <mountpoint>
FUSE only works with the asynchronous version of VFS. See <docs/UPDATING> on how to run AVFS.
This patch further includes some changes to mount(1) and mount(2) so it's possible to use file systems provided by pkgsrc (note: manual modifications to /etc/system.conf are still needed. There has been made an exception for fuse-ntfs-3g, so it already as an entry).
show more ...
|