diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2007-02-21 13:23:52 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2007-02-21 13:23:52 +0000 |
commit | 7ddc234e3477508556620718da13074d9d8c196e (patch) | |
tree | 1f365694569dbd7455d4fd0f84566c99c42d77c6 /cad/gschem/patches | |
parent | 4d2476efa1fc3f95832a74eafd465dab0f6dbd58 (diff) | |
download | pkgsrc-7ddc234e3477508556620718da13074d9d8c196e.tar.gz |
Update to 20070216 snapshot. Many changes and improvements since the
last snapshot. A highly abbreviated list is:
libgeda:
- fixes to postscript output
- fixes to arc handling
- added some functions for embedding and deembedding symbols
- many changes to the internal data structure.
- fix a bug which could cause missing connectivity on a bus
- improvements to attribute handling
- fix a bunch of compiler warnings.
- various other bug fixes
gschem:
- improvements and bug fixes to the autonumber code
- improvements to the various file selection dialogs
- improvements to attribute handling
- improvements to the internal data structure
- various other bug fixes
gnetlist:
- fixes for guile-1.8
- update the gsch2pcb backend to allow running or never running m4 for pcb
footprints.
- changed "package" to "refdes" in the BOM/BOM2 backends
- added a drc2 regression test
- bugfix in the allegro backend
- other misc fixes
symbols:
- added 4 missing characters to complete the hungarian character set
- add greek mu
gsymcheck:
- man page improvements
gattrib:
- enhanced sorting functions
- various bug fixes
utils:
- add an option to gsch2pcb to let the user prevent m4 from ever being run
when looking for pcb footprints.
- let gsch2pcb look both for "name" and "name.fp" when looking for a footprint
called "name".
- use some configure options to set the default gsch2pcb footprint search paths
rather than hardcoding them.
- added a gnet_hier_verilog.sh script to do non-flattened verilog netlisting
- added options to gschlas to embed or de-embed all symbols in a schematic
Diffstat (limited to 'cad/gschem/patches')
-rw-r--r-- | cad/gschem/patches/patch-aa | 26 | ||||
-rw-r--r-- | cad/gschem/patches/patch-ab | 16 | ||||
-rw-r--r-- | cad/gschem/patches/patch-ac | 15 |
3 files changed, 0 insertions, 57 deletions
diff --git a/cad/gschem/patches/patch-aa b/cad/gschem/patches/patch-aa deleted file mode 100644 index 3977e8b200e..00000000000 --- a/cad/gschem/patches/patch-aa +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-aa,v 1.13 2006/12/21 02:49:28 dmcmahill Exp $ - -Make this work with non-gcc. Patch in upstream sources already. - ---- include/globals.h.orig 2006-09-30 13:03:21.000000000 -0400 -+++ include/globals.h -@@ -97,5 +97,19 @@ extern SCM new_page_hook; - # define N_(String) (String) - #endif - -+/* -+ * __attribute__((unused)) is a gcc extension so define -+ * a portable macro, ATTRIBUTE_UNUSED, to use instead -+ */ -+#ifndef GCC_VERSION -+#define GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__) -+#endif /* GCC_VERSION */ -+ -+#if GCC_VERSION > 2007 -+#define ATTRIBUTE_UNUSED __attribute__((unused)) -+#else -+#define ATTRIBUTE_UNUSED -+#endif -+ - /*EK* used by prototype.h */ - #include "../include/x_states.h" diff --git a/cad/gschem/patches/patch-ab b/cad/gschem/patches/patch-ab deleted file mode 100644 index 91015b2d9ff..00000000000 --- a/cad/gschem/patches/patch-ab +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-ab,v 1.8 2006/10/21 19:22:12 rillig Exp $ - ---- scripts/makeimages.orig 2006-02-26 20:33:59.000000000 +0100 -+++ scripts/makeimages 2006-10-21 21:19:12.000000000 +0200 -@@ -7,9 +7,9 @@ - # - ghostscript (I use aladdin gs) - # - --if [ "$1" == "" ] -+if [ $# -ne 1 ] - then -- echo "usage: makeimages path_to_libary" -+ echo "usage: makeimages path_to_libary" 1>&2 - exit 1 - fi - diff --git a/cad/gschem/patches/patch-ac b/cad/gschem/patches/patch-ac deleted file mode 100644 index 45b5280ab50..00000000000 --- a/cad/gschem/patches/patch-ac +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ac,v 1.6 2006/12/24 10:20:34 dmcmahill Exp $ - -Make this work with non-gcc. Patch in upstream sources already. - ---- src/x_menus.c.orig 2006-08-06 12:45:29.000000000 -0400 -+++ src/x_menus.c -@@ -239,7 +239,7 @@ void get_main_menu(TOPLEVEL * w_current, - * - */ - static gchar* gettext_fn(const gchar *path, -- gpointer func_data __attribute__((unused))) -+ gpointer func_data ATTRIBUTE_UNUSED) - { - return gettext(path); - } |