diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-06-03 08:16:58 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-06-03 08:16:58 +0000 |
commit | a334cf60edab25703bfd69449fadcf1dd815b235 (patch) | |
tree | 1e93a9f74904c9c8fdb783d50ccabb5f5903cbe2 /lang/TenDRA/files/patch-install | |
parent | Update to 5.0.18 (diff) |
- Update to CVS snapshot 20030526, which fixes the build problems on 5.x
- Give maintainership to submitter
"Unfortunately FreeBSD 5.x uses the GNU C extension
__attribute__((__aligned__(x))) in a couple of system headers
(<machine/npx.h>, <machine/signal.h> and <machine/ucontext.h> for i386). To
avoid a syntax error __aligned(x) is removed by a #define, but programs that
use struct sigcontext, struct savexmm or mcontext_t probably won't work."
PR: 52619
Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org>
Notes
Notes:
svn path=/head/; revision=82189
Diffstat (limited to 'lang/TenDRA/files/patch-install')
-rw-r--r-- | lang/TenDRA/files/patch-install | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lang/TenDRA/files/patch-install b/lang/TenDRA/files/patch-install new file mode 100644 index 000000000000..2d0a32c6745b --- /dev/null +++ b/lang/TenDRA/files/patch-install @@ -0,0 +1,12 @@ +--- mk/base/tendra.install.mk.orig Mon Mar 31 10:00:01 2003 ++++ mk/base/tendra.install.mk Mon May 12 21:20:53 2003 +@@ -60,6 +60,9 @@ + for i in ${.OBJDIR}.api/*.h; do \ + ${INSTALL} $$i ${INSTALL_PREFIX}/lib/include/${API}.api; \ + done ++ for i in `${FIND} ${.OBJDIR}.api/ -type d -mindepth 1` ; do \ ++ ${CP} -pR $$i ${INSTALL_PREFIX}/lib/include/${API}.api; \ ++ done + for i in ${.OBJDIR:C/apis/apis\/shared/}.api/*.h; do \ + ${INSTALL} $$i ${INSTALL_PREFIX}/lib/include/shared/${API}.api; \ + done |