[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: ChangeLog
User: pcjc2
Date: 07/02/11 18:59:02
Modified: . Tag: noscreen ChangeLog autogen.sh configure.ac
Log:
Sync with trunc
Revision Changes Path
No revision
No revision
1.366.2.6 +57 -0 eda/geda/gaf/libgeda/ChangeLog
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ChangeLog
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/libgeda/ChangeLog,v
retrieving revision 1.366.2.5
retrieving revision 1.366.2.6
diff -u -b -r1.366.2.5 -r1.366.2.6
--- ChangeLog 30 Dec 2006 14:57:51 -0000 1.366.2.5
+++ ChangeLog 11 Feb 2007 23:59:02 -0000 1.366.2.6
@@ -1,3 +1,60 @@
+2007-02-11 Peter Clifton <pcjc2@xxxxxxxxx>
+
+ Sync with trunc
+
+ 2007-02-11 Werner Hoch <werner.ho@xxxxxx>
+
+ * src/s_toplevel.c: added missing toplevel inits (tshowwindow, ...)
+
+ 2007-02-10 Ales Hvezda <ahvezda@xxxxxxxxxxxxx>
+
+ * include/funcs.h: Removed quit_func since it is completely unused.
+
+ * include/prototype.h, src/f_basic.c, src/o_arc_basic.c: Fixed
+ a whole bunch of compiler warnings and work on [ 1620806 ]
+ various probably bugs and comments about them
+
+ * configure.ac: Bumped package version to 20070216. Also changed
+ shared library's version number to 28:0:0
+
+ 2007-02-10 Carlos Nieves Onega <cnieves@xxxxxxxxxx>
+
+ * src/f_print.c: Make f_print_header return an error return value
+ if something goes wrong, and propagate it to the caller functions.
+ Unlink the file created by f_print_file if there is an error in
+ f_print_header.
+
+ * autogen.sh: Added automake version number check.
+
+ 2007-02-10 Mike Jarabek <mjarabek@xxxxxxxxx>
+
+ * include/struct.h, src/o_text_basic.c, src/s_toplevel.c: Added
+ code to scale the output postscript font under user control. This
+ is controlled via the postscript-font-scale rc keyword.
+
+ 2007-02-10 Mike Jarabek <mjarabek@xxxxxxxxx>
+
+ * src/f_print.c: Applied Wojciech Kazubski's patch for offset
+ printing orgins. Fixes bug #160757
+
+ 2007-01-16 Ales Hvezda <ahvezda@xxxxxxxxxxxxx>
+
+ * src/o_arc_basic.c: Applied patch by Peter Clifton to fix
+ the output of arcs when using libgd.
+
+ * src/Makefile.am: Applied patch by Peter Clifton to add --silent to
+ libtool.
+
+ 2007-01-08 Ales Hvezda <ahvezda@xxxxxxxxxxxxx>
+
+ * include/prototype.h, src/Makefile.am, src/o_embed.c: Moved
+ o_embed(...) and o_unembed(...) into o_embed.c so that gschlas
+ can also call these useful functions (to support scriptable
+ embedding and unembedding of components).
+
+ * src/.cvsignore: Oops, remove obsolete *.c rule that was causing
+ cvs to ignore new (but not added) C files.
+
2006-12-30 Peter Clifton <pcjc2@xxxxxxxxx>
* include/prototype.h, src/o_basic.c: Changed variable names and
1.4.6.1 +41 -0 eda/geda/gaf/libgeda/autogen.sh
(In the diff below, changes in quantity of whitespace are not shown.)
Index: autogen.sh
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/libgeda/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.4.6.1
diff -u -b -r1.4 -r1.4.6.1
--- autogen.sh 22 Jan 2006 13:55:33 -0000 1.4
+++ autogen.sh 11 Feb 2007 23:59:02 -0000 1.4.6.1
@@ -8,6 +8,11 @@
test -z "$srcdir" && srcdir=.
configure_script=configure.ac
+# Automake required version
+AM_1=1 # Major number
+AM_2=6
+AM_3=0 # Minor number
+
DIE=0
(test -f $srcdir/$configure_script) || {
@@ -51,6 +56,42 @@
NO_AUTOMAKE=yes
}
+# check automake version. Test came from gpsd version 2.34. cnieves 2007-02-10
+if [ -z "$NO_AUTOMAKE" ]; then
+ echo Checking automake version...
+ AM_VERSION=`automake --version | sed -n -e 's#[^0-9]* \([0-9]*\)\.\([0-9]*\)\.*\([0-9]*\).*$#\1 \2 \3#p'`
+ AM_V1=`echo $AM_VERSION | awk '{print $1}'`
+ AM_V2=`echo $AM_VERSION | awk '{print $2}'`
+ AM_V3=`echo $AM_VERSION | awk '{print $3}'`
+
+ if [ "$AM_1" -gt "$AM_V1" ]; then
+ AM_ERROR=1
+ else
+ if [ "$AM_1" -eq "$AM_V1" ]; then
+ if [ "$AM_2" -gt "$AM_V2" ]; then
+ echo "version 2 of automake failed"
+ AM_ERROR=1
+ else
+ if [ "$AM_2" -eq "$AM_V2" ]; then
+ if [ -n "$AM_V3" -a "$AM_3" -gt "$AM_V3" ]; then
+ echo "version 3 of automake failed"
+ AM_ERROR=1
+ fi
+ fi
+ fi
+ fi
+ fi
+
+ if [ -n "$AM_ERROR" ]; then
+ echo
+ echo "**Error**: Found automake version $AM_V1.$AM_V2.$AM_V3"
+ echo "You must have \`automake' version $AM_1.$AM_2.$AM_3 or greater installed."
+ echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"
+ DIE=1
+ fi
+fi
+
+
# if no automake, don't bother testing for aclocal
test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || {
1.38.6.1 +3 -3 eda/geda/gaf/libgeda/configure.ac
(In the diff below, changes in quantity of whitespace are not shown.)
Index: configure.ac
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/libgeda/configure.ac,v
retrieving revision 1.38
retrieving revision 1.38.6.1
diff -u -b -r1.38 -r1.38.6.1
--- configure.ac 21 Oct 2006 02:44:44 -0000 1.38
+++ configure.ac 11 Feb 2007 23:59:02 -0000 1.38.6.1
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.38 2006/10/21 02:44:44 ahvezda Exp $
+# $Id: configure.ac,v 1.38.6.1 2007/02/11 23:59:02 pcjc2 Exp $
#
# Process this file with autoconf to produce a configure script.
AC_INIT
@@ -6,8 +6,8 @@
AC_PREREQ(2.54)
PACKAGE=libgeda
-VERSION=20061020
-SHARED_LIBRARY_VERSION=27:0:0
+VERSION=20070216
+SHARED_LIBRARY_VERSION=28:0:0
echo Configuring $PACKAGE version $VERSION
# Init automake
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs