summaryrefslogtreecommitdiff
path: root/devel/gtl/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2004-11-02 20:36:50 +0000
committerwiz <wiz@pkgsrc.org>2004-11-02 20:36:50 +0000
commit118c827617fe1e83112924d4196c1769c08bf45d (patch)
treedbac9ac1e79914ae7930ac367d823c41e62d0c2d /devel/gtl/patches
parentd380d0814017985d09f7cbbce4523cf07af8fc75 (diff)
downloadpkgsrc-118c827617fe1e83112924d4196c1769c08bf45d.tar.gz
Update to 1.2.0:
# 1.2.0 * New algorithm added: Bidirectional Dijkstra's shortest path * A lot of bugfixes * Revised documentation # 1.1.0 * Returned to the libtool versioning style * New algorithms added o Dijkstra's shortest path o Bellman Ford shortest path o New variant of Maximal Flow * graph::load now creates nodes in the same order as they are in the gml file * graph::load now with parameter 'preserve_ids' to use the same ids as in the gml file * A lot of bugfixes * Documentation adapted to doxygen # 1.0.0 * First stable release * quick fix of bug in graph::del_node (thanks to David Auber) * bug fix in graph::hide_node (thanks to David Auber) * optimization of reallocation procedure in node_ and edge_maps (again, thanks to David)
Diffstat (limited to 'devel/gtl/patches')
-rw-r--r--devel/gtl/patches/patch-aa13
-rw-r--r--devel/gtl/patches/patch-ab20
2 files changed, 0 insertions, 33 deletions
diff --git a/devel/gtl/patches/patch-aa b/devel/gtl/patches/patch-aa
deleted file mode 100644
index 7d64e5e2fd3..00000000000
--- a/devel/gtl/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2000/07/13 15:10:35 jlam Exp $
-
---- src/Makefile.in.orig Tue Mar 7 04:14:07 2000
-+++ src/Makefile.in Tue May 9 11:46:57 2000
-@@ -92,7 +92,7 @@
- libGTL_la_SOURCES = gml_scanner.cpp gml_parser.cpp edge.cpp graph.cpp node.cpp dfs.cpp biconnectivity.cpp bfs.cpp topsort.cpp st_number.cpp embedding.cpp pq_node.cpp pq_tree.cpp planarity.cpp maxflow_ff.cpp maxflow_pp.cpp debug.cpp components.cpp fm_partition.cpp ratio_cut_partition.cpp
-
-
--libGTL_la_LDFLAGS = -version-info $(MINOR_VERSION):$(MINI_VERSION):0
-+libGTL_la_LDFLAGS = -version-info $(GTL_VERS)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_CLEAN_FILES =
- LTLIBRARIES = $(lib_LTLIBRARIES)
diff --git a/devel/gtl/patches/patch-ab b/devel/gtl/patches/patch-ab
deleted file mode 100644
index ec6640b4afb..00000000000
--- a/devel/gtl/patches/patch-ab
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2000/07/31 04:53:56 jlam Exp $
-
---- include/GTL/GTL.h.orig Thu Feb 3 07:50:16 2000
-+++ include/GTL/GTL.h Mon Jul 31 00:30:39 2000
-@@ -133,6 +133,7 @@
- #include <map>
- #include <memory>
-
-+#ifndef __STL_USE_STD_ALLOCATORS
- /**
- * @internal
- */
-@@ -141,6 +142,7 @@
- {
- };
-
-+#endif
- #endif
-
- //--------------------------------------------------------------------------