diff options
author | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2005-09-11 09:06:23 +0000 |
---|---|---|
committer | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2005-09-11 09:06:23 +0000 |
commit | dadf70441d0f13fd9e43f49ae036008609b42563 (patch) | |
tree | 4d923c6cb4f9991351c6a38fc0e5d4cdfab12cbd | |
parent | b37c027677204b0052dd98b209edea6cb65cd8f7 (diff) | |
download | libgpod-dadf70441d0f13fd9e43f49ae036008609b42563.tar.gz libgpod-dadf70441d0f13fd9e43f49ae036008609b42563.tar.xz libgpod-dadf70441d0f13fd9e43f49ae036008609b42563.zip |
* configure.ac: changed position of AC_GNU_SOURCE (caused error
strange error messages)
* autogen.sh: replaced so it works without gnome-common and
modified for intltools support
* src/itdb.h: replaced '//' by '/* ... */' to avoid strange error
message during compile.
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1085 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | INSTALL_CVS | 8 | ||||
-rwxr-xr-x | autogen.sh | 3 | ||||
-rw-r--r-- | src/itdb.h | 4 |
4 files changed, 12 insertions, 8 deletions
@@ -1,5 +1,10 @@ 2005-09-11 Jorg Schuler <jcsjcs at users.sourceforge.net> + * configure.ac: changed position of AC_GNU_SOURCE (caused error + strange error messages) + * autogen.sh: replace so it works without gnome-common + * src/itdb.h: replaced '//' by '/* ... */' to avoid strange error + message during compile. * src/itdb_playlist.c: (itdb_splr_validate) Guilherme Salgado <salgado@freeshell.org> patch to make 'inthelast' SPL work. diff --git a/INSTALL_CVS b/INSTALL_CVS index 741285f..f754919 100644 --- a/INSTALL_CVS +++ b/INSTALL_CVS @@ -1,12 +1,8 @@ If you install from CVS, call ./autogen.sh - -to generate and run the configure script. - -You can then proceed with - +./configure make make install -to make and install the library. +See the INSTALL and TROUBLESHOOTING file for more information. @@ -24,6 +24,9 @@ find -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \ echo Running autoreconf... autoreconf --force --install +echo "Running intltoolize" +intltoolize --copy --force --automake + # For the Debian package build test -d debian && { # link these in Debian builds @@ -1,4 +1,4 @@ -/* Time-stamp: <2005-06-17 22:25:30 jcs> +/* Time-stamp: <2005-09-11 17:51:54 jcs> | | Copyright (C) 2002-2005 Jorg Schuler <jcsjcs at users sourceforge net> | Part of the gtkpod project. @@ -198,7 +198,7 @@ enum { #define SPLACTION_LAST_MINUTES_VALUE 60 // number of seconds in 1 minute #define SPLACTION_LAST_YEARS_VALUE 31536000 // number of seconds in 365 days -// fun ones.. Near as I can tell, all of these work. It's open like that. :) +/* fun ones.. Near as I can tell, all of these work. It's open like that. :)*/ #define SPLACTION_LAST_LUNARCYCLE_VALUE 2551443 // a "lunar cycle" is the time it takes the moon to circle the earth #define SPLACTION_LAST_SIDEREAL_DAY 86164 // a "sidereal day" is time in one revolution of earth on its axis #define SPLACTION_LAST_SWATCH_BEAT 86 // a "swatch beat" is 1/1000th of a day.. search for "internet time" on google |