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)
26 lines
1.2 KiB
Text
26 lines
1.2 KiB
Text
$NetBSD: patch-bi,v 1.1 2010/04/05 22:52:23 markd Exp $
|
|
|
|
--- config/site.def.FREEBSD.orig 2003-10-22 18:13:39.000000000 +0000
|
|
+++ config/site.def.FREEBSD
|
|
@@ -43,15 +43,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
|
|
|
|
/* file output by configure script */
|