[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: ChangeLog
User: cnieves
Date: 05/02/19 18:27:30
Modified: . ChangeLog configure.ac
Log:
Added support for pictures within schematics and symbols.
Revision Changes Path
1.248 +11 -0 eda/geda/devel/libgeda/ChangeLog
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ChangeLog
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/libgeda/ChangeLog,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -b -r1.247 -r1.248
--- ChangeLog 18 Feb 2005 22:28:32 -0000 1.247
+++ ChangeLog 19 Feb 2005 23:27:29 -0000 1.248
@@ -1,3 +1,14 @@
+2005-02-19 Carlos Nieves Onega <cnieves@xxxxxxxxxx>
+
+ * configure.ac, include/funcs.h, include/libgeda.h,
+ include/o_types.h, include/prototype.h, include/struct.h,
+ noweb/Makefile.am, noweb/a_basic.nw, noweb/f_image.nw,
+ noweb/f_print.nw, noweb/gdk-pixbuf-hacks.nw, noweb/o_attrib.nw,
+ noweb/o_basic.nw, noweb/o_complex_basic.nw, noweb/o_list.nw,
+ noweb/o_picture.nw, noweb/s_basic.nw, noweb/s_toplevel.nw,
+ src/Makefile.am:
+ Added picture support.
+
2005-02-18 22:26 Dan McMahill <danmc>
* noweb/g_rc.nw: remove a static declaration to match prototype in
1.16 +40 -2 eda/geda/devel/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/devel/libgeda/configure.ac,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- configure.ac 4 Feb 2005 04:39:28 -0000 1.15
+++ configure.ac 19 Feb 2005 23:27:29 -0000 1.16
@@ -268,6 +268,44 @@
############################################################################
############################################################################
+# Check for gdk-pixbuf
+#
+
+# Check for pkg-config
+AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+if test $PKG_CONFIG = no; then
+ AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed and in your PATH])
+fi
+
+# Search for gdk-pixbuf (only if we are not forcing the gtk+ to 1.2)
+if test "$opt_gtkver" != "1.2"
+then
+ PKG_CHECK_MODULES(GDK_PIXBUF, gdk-pixbuf-2.0 >= 0.15.0, GDK_PIXBUF="yes", no_GDK_PIXBUF="yes")
+fi
+
+# This next bit of code figures out what gtk we need to use.
+if test "$GDK_PIXBUF" = "yes" -a "$opt_gtkver" != "1.2"
+then
+
+ AC_DEFINE(HAS_GDK_PIXBUF, 1, [If gdk-pixbuf has been installed, define this])
+ GDK_PIXBUF_CFLAGS=$GDK_PIXBUF_CFLAGS
+ GDK_PIXBUF_LIBS=$GDK_PIXBUF_LIBS
+ GDK_PIXBUF_VERSION=`$PKG_CONFIG gdk-pixbuf-2.0 --modversion`
+
+fi
+
+if test "$GDK_PIXBUF_VERSION" = ""
+then
+ AC_MSG_ERROR([Cannot find gdk-pixbuf.])
+fi
+
+#
+# Check for gdk-pixbuf end
+############################################################################
+
+
+
+############################################################################
# Check for notangle, noweave, texi2html, indent start
#
@@ -537,8 +575,8 @@
# Finally create the final CFLAGS and LDFLAGS for use in the makefiles
-LIBGEDA_CFLAGS="$MINGW_CFLAGS $GUILE_CFLAGS $GDGEDA_CFLAGS $GTK_CFLAGS $X_CFLAGS"
-LIBGEDA_LDFLAGS="$GUILE_LDFLAGS $GDGEDA_LIBS $GLIB_LIBS $MINGW_LIBS $DMALLOC_LIBS"
+LIBGEDA_CFLAGS="$MINGW_CFLAGS $GUILE_CFLAGS $GDGEDA_CFLAGS $GTK_CFLAGS $X_CFLAGS $GDK_PIXBUF_CFLAGS"
+LIBGEDA_LDFLAGS="$GUILE_LDFLAGS $GDGEDA_LIBS $GLIB_LIBS $MINGW_LIBS $DMALLOC_LIBS $GDK_PIXBUF_LIBS"
LIBTOOL_FLAGS="-version-info $SHARED_LIBRARY_VERSION"
# Makefile.in variable substitution