b68e301ec1
leaf node. Adds DESTDIR support. Drop maintainership. Nov. 21st, 2009 ivtools-1.2.8 - significant work on keeping up with gcc and libstdc++. A wrapper for stdio.h was inadvertently getting pulled in by /usr/include files, causing a lot of trouble. Now builds with gcc-4.4 on Ubuntu 9.10. August 25th, 2009 ivtools-1.2.7 - series of memory leak checking commands - added reference counting to OverlayView's (ComponentView's) referred from AttributeValue's (#define RESOURCE_COMPVIEW) - fixed attrname func. - fixed stddev func. - added BooleanType to NumFunc promotion method. - fixed graphdraw copy/paste of graph fragments - new SocketObj for use comterp - fix behavior of symbol manipulating funcs, by using internal bquote. - port to Ubuntu Heron - applied (most of) patch to build on Fedora 10 contributed by John Heidemann - balance of changes to support ipl-1.0.4 July 9th, 2008 ivtools-1.2.6 - Debian contributed patch for iostreams backward compatibility - bug fix for dispatcher.c contributed by Damon Permezel - add mute command to comterp - balance of changes to support ipl-1.0.2 March 4th, 2008 ivtools-1.2.5 - overall evolution to support use by ipl-1.0.1 (see http://sf.net/projects/ipl for further details)
45 lines
1.6 KiB
Text
45 lines
1.6 KiB
Text
$NetBSD: patch-ac,v 1.4 2010/04/05 22:52:23 markd Exp $
|
|
|
|
--- config/site.def.NETBSD.orig 2003-10-22 18:13:39.000000000 +0000
|
|
+++ config/site.def.NETBSD
|
|
@@ -16,6 +16,9 @@
|
|
#undef TroffCmd
|
|
#define TroffCmd groff
|
|
|
|
+#undef CppCmd
|
|
+#define CppCmd cpp
|
|
+
|
|
/*
|
|
* build RPC classes -- requires iostreams & TCP sockets
|
|
*/
|
|
@@ -35,7 +38,7 @@
|
|
#define ExtraCCLdLibs -lstdc++ -lm
|
|
|
|
/* command to create shared libraries */
|
|
-#define SharedLibraryCmd(ldobjs,extra_flags) gcc -shared extra_flags -o $@ ldobjs
|
|
+#define SharedLibraryCmd(ldobjs,extra_flags) ${CXX} ${CCLDFLAGS} -shared extra_flags -o $@ ldobjs
|
|
|
|
/*
|
|
* Install a shared library on NetBSD.
|
|
@@ -46,15 +46,15 @@
|
|
#ifndef InstallDynamicSharedLibrary
|
|
#define InstallDynamicSharedLibrary(libname,rev,dest) @@\
|
|
install:: Concat(lib,libname.so.rev) @@\
|
|
- MakeDir(dest) @@\
|
|
- $(INSTALL) -c $(INSTLIBFLAGS) Concat(lib,libname.so.rev) dest @@\
|
|
- -@$(RM) dest/Concat(lib,libname.so) @@\
|
|
- -@(cd dest;$(LN) Concat(lib,libname.so.rev) \ @@\
|
|
+ MakeDir($(DESTDIR)dest) @@\
|
|
+ $(INSTALL) -c $(INSTLIBFLAGS) Concat(lib,libname.so.rev) $(DESTDIR)dest @@\
|
|
+ -@$(RM) $(DESTDIR)dest/Concat(lib,libname.so) @@\
|
|
+ -@(cd $(DESTDIR)dest;$(LN) Concat(lib,libname.so.rev) \ @@\
|
|
Concat(lib,libname.so)) @@\
|
|
@@\
|
|
uninstall:: @@\
|
|
- $(RM) dest/Concat(lib,libname.so.rev) @@\
|
|
- $(RM) dest/Concat(lib,libname.so)
|
|
+ $(RM) $(DESTDIR)dest/Concat(lib,libname.so.rev) @@\
|
|
+ $(RM) $(DESTDIR)dest/Concat(lib,libname.so)
|
|
#endif
|
|
|
|
#ifndef ImakeFlags
|