| 1 | # ChangeLog for Path Sandbox |
1 | # ChangeLog for Path Sandbox |
| 2 | # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 |
2 | # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 |
| 3 | # $Header$ |
3 | # $Header$ |
|
|
4 | |
|
|
5 | 02 May 2005; Martin Schlemmer <azarah@gentoo.org> Makefile.am, canonicalize.c, |
|
|
6 | configure.in getcwd.c libsandbox.c symbols.in: |
|
|
7 | Fix inverse test logic in canonicalize.c, use a strncpy. Fix gcc warning in |
|
|
8 | getcwd.c. Add symbols.in and logic to Makefile.am to generate symbol versions |
|
|
9 | for glibc and other libc's that use this. Update libsandbox.c to use these |
|
|
10 | symbol versions if available. Fix exec wrapper to re-export LD_PRELOAD if the |
|
|
11 | process unset it. |
| 4 | |
12 | |
| 5 | 01 May 2005; Brian Harring <ferringb@gentoo.org> libsandbox.c: |
13 | 01 May 2005; Brian Harring <ferringb@gentoo.org> libsandbox.c: |
| 6 | killed off _init and _fini in favor of |
14 | killed off _init and _fini in favor of |
| 7 | void __attribute__ ((constructor)) init_func and |
15 | void __attribute__ ((constructor)) init_func and |
| 8 | void __attribute__ ((destructor)) closing_func. _(init|func) were deprecated. |
16 | void __attribute__ ((destructor)) closing_func. _(init|func) were deprecated. |