f278361648
This is mostly a bug fix release. Selection of changes: - most pkgsrc patches have been integrated - amd64 support for NetBSD/OpenBSD (thanks to drochner@) - enhanced Darwin support For a complete list see: http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/recent_changes
28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
$NetBSD: patch-af,v 1.8 2004/07/09 00:18:54 recht Exp $
|
|
|
|
--- Makefile.in.orig 2004-03-25 01:46:35.000000000 +0100
|
|
+++ Makefile.in 2004-04-04 14:43:08.000000000 +0200
|
|
@@ -170,6 +170,9 @@
|
|
include/gc_pthread_redirects.h include/gc_config_macros.h \
|
|
include/leak_detector.h include/gc_typed.h @addincludes@
|
|
|
|
+include_PRIVATE_HEADERS = include/private/gc_hdrs.h \
|
|
+include/private/gc_locks.h include/private/gc_priv.h \
|
|
+include/private/gcconfig.h
|
|
|
|
EXTRA_HEADERS = include/gc_cpp.h include/gc_allocator.h
|
|
|
|
@@ -540,6 +543,13 @@
|
|
echo " $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f"; \
|
|
$(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f; \
|
|
done
|
|
+ $(mkinstalldirs) $(DESTDIR)$(pkgincludedir)/private
|
|
+ @list='$(include_PRIVATE_HEADERS)'; for p in $$list; do \
|
|
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
+ f="`echo $$p | sed -e 's|^.*/||'`"; \
|
|
+ echo " $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(pkgincludedir)/private/$$f"; \
|
|
+ $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(pkgincludedir)/private/$$f; \
|
|
+ done
|
|
|
|
uninstall-includeHEADERS:
|
|
@$(NORMAL_UNINSTALL)
|