From 0912fc7efa606c51c8dbe073f0b20f1524c3c709 Mon Sep 17 00:00:00 2001 From: Evan Battaglia Date: Wed, 28 Sep 2005 03:55:43 +0000 Subject: [PATCH] Guilhem's autotools update --- ChangeLog | 10 ++++++++++ Makefile.am | 6 ++++-- TODO | 14 ++++++++------ configure.ac | 6 ++++-- 4 files changed, 26 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index b70b9beb..674968b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,16 @@ Alex Foobarian g_strtod (i18n glitch) + +2005-09-25 Guilhem BONNEFILLE + * src/globals.h (VIKING_VERSION): uses the PACKAGE_VERSION macro + * Makefile.am (EXTRA_DIST): handles viking-remote + * src/Makefile.am (AM_CFLAGS): substitution of CFLAGS by AM_CFLAGS + * doc/Makefile.am, doc/dev/Makefile.am: new files + * Makefile.am (SUBDIRS): handles doc directory + * configure.ac: handles doc and doc/dev directories 2005-09-16 Alex Foobarian : fix to v-vs-t (better drawing) diff --git a/Makefile.am b/Makefile.am index a18a906e..6181120e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ -SUBDIRS = src +SUBDIRS = src doc -bin_SCRIPTS = viking-remote \ No newline at end of file +bin_SCRIPTS = viking-remote + +EXTRA_DIST = viking-remote \ No newline at end of file diff --git a/TODO b/TODO index 87319ee6..7bfe450a 100644 --- a/TODO +++ b/TODO @@ -1,10 +1,13 @@ TODO till release 0.1.1 "desilusión": -CRASHES: +IMPORTANT STUFF: check out bgitemcount stuff in background.c (hangs on clear!) - try renaming a waypoint (track is OK): - "funky" & - IO MORIRÒ D'AMORE - ' + DND: make it an interface + DND: when moving layers, take into account the layer we're moving onto + and move it above. + DND: fix "(viking:3671): Gtk-CRITICAL **: gtk_tree_model_get_iter: assertion `path->depth > 0' failed" + Debugging output shouldn't be printf'd but we g_print'd, and we should have a DEBUG flag + Fix coord layer for various projections + BIG THINGS: selections (select area of waypoints, trackpoints, etc) Clipboard done right -- GtkClipboard, between processes @@ -462,7 +465,6 @@ then you need a duplicate function for each thing you want to copy. shouldn't be ~-~-~-~-~-~-~-~ 0.0.6 "Where no man has gone before" --------------- -DnD Map Download Background Thread LibGpsPoint Settabl eFonts diff --git a/configure.ac b/configure.ac index 50fa92d8..1c42bcd8 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(viking, 0.1.1) +AC_INIT(viking, 0.1.1pre1) AM_INIT_AUTOMAKE() dnl AC_CONFIG_SRCDIR([src/main.c]) dnl AC_CONFIG_HEADERS([config.h]) @@ -42,5 +42,7 @@ esac # Configuration AC_CONFIG_FILES([Makefile - src/Makefile]) + src/Makefile + doc/Makefile + doc/dev/Makefile]) AC_OUTPUT -- 2.39.5