Thread: [Gpredict-svn] SF.net SVN: gpredict:[55] trunk/configure.ac
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <cs...@us...> - 2008-08-20 13:03:16
|
Revision: 55
http://gpredict.svn.sourceforge.net/gpredict/?rev=55&view=rev
Author: csete
Date: 2008-08-20 13:03:23 +0000 (Wed, 20 Aug 2008)
Log Message:
-----------
Disabled hamlib checks.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-05-02 23:35:22 UTC (rev 54)
+++ trunk/configure.ac 2008-08-20 13:03:23 UTC (rev 55)
@@ -39,17 +39,18 @@
])
+dnl Hamlib not needed if we go for the TCP based I/F
dnl check for hamlib
-PKG_CHECK_MODULES(HAMLIB, hamlib, [
- CFLAGS="$CFLAGS $HAMLIB_CFLAGS";
- LIBS="$LIBS $HAMLIB_LIBS";
- havehamlib=true;
- AC_DEFINE(HAVE_HAMLIB, 1, [Define if hamlib is available])
- ], [
- havehamlib=false;
- AC_DEFINE(HAVE_HAMLIB, 0, [Define if hamlib is unvailable])
+dnl PKG_CHECK_MODULES(HAMLIB, hamlib, [
+dnl CFLAGS="$CFLAGS $HAMLIB_CFLAGS";
+dnl LIBS="$LIBS $HAMLIB_LIBS";
+dnl havehamlib=true;
+dnl AC_DEFINE(HAVE_HAMLIB, 1, [Define if hamlib is available])
+dnl ], [
+dnl havehamlib=false;
+dnl AC_DEFINE(HAVE_HAMLIB, 0, [Define if hamlib is unvailable])
-])
+dnl])
dnl Add the languages which your application supports here.
dnl Note that other progs only have ALL_LINGUAS and AM_GLIB_GNU_GETTEXT
@@ -67,7 +68,7 @@
AC_ARG_ENABLE(coverage, [ --enable-coverage enable coverge reports],enable_coerage=yes,enable_coverage=no)
if test "$enable_coverage" = yes ; then
CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage";
- AC_DEFINE(ENABLE_COV, 1, [Define if hardware is disabled.])
+ AC_DEFINE(ENABLE_COV, 1, [Define if code coverage should be enabled.])
fi
@@ -79,9 +80,9 @@
if test "$havecurl" = true ; then
CURL_V=`pkg-config --modversion libcurl`
fi
-if test "$havehamlib" = true ; then
- HAML_V=`pkg-config --modversion hamlib`
-fi
+dnl if test "$havehamlib" = true ; then
+dnl HAML_V=`pkg-config --modversion hamlib`
+dnl fi
AC_SUBST(CFLAGS)
@@ -118,11 +119,11 @@
else
echo Curl version....... : none
fi
-if test "$havehamlib" = true ; then
-echo Hamlib version..... : $HAML_V
-else
-echo Hamlib version..... : none
-fi
-echo Enable coverage.... : $enable_coverage
-echo
+dnl if test "$havehamlib" = true ; then
+dnl echo Hamlib version..... : $HAML_V
+dnl else
+dnl echo Hamlib version..... : none
+dnl fi
+dnl echo Enable coverage.... : $enable_coverage
+dnl echo
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2008-10-24 17:56:22
|
Revision: 151
http://gpredict.svn.sourceforge.net/gpredict/?rev=151&view=rev
Author: csete
Date: 2008-10-24 17:56:20 +0000 (Fri, 24 Oct 2008)
Log Message:
-----------
Updated version number.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-10-11 22:12:45 UTC (rev 150)
+++ trunk/configure.ac 2008-10-24 17:56:20 UTC (rev 151)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.0b1)
+AM_INIT_AUTOMAKE(gpredict, 1.1_beta)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-03-01 10:34:35
|
Revision: 197
http://gpredict.svn.sourceforge.net/gpredict/?rev=197&view=rev
Author: csete
Date: 2009-03-01 10:34:33 +0000 (Sun, 01 Mar 2009)
Log Message:
-----------
Changed required GooCanvas version from 0.10 to 0.9 to be vompatible with older linux distributions, too (e.g. Ubuntu 8.04).
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-03-01 10:26:49 UTC (rev 196)
+++ trunk/configure.ac 2009-03-01 10:34:33 UTC (rev 197)
@@ -21,7 +21,7 @@
fi
dnl check for glib, gtk, and goocanvas libraries
-pkg_modules="gtk+-2.0 >= 2.12.0 glib-2.0 >= 2.14.0 gthread-2.0 >= 2.14.0 goocanvas >= 0.10"
+pkg_modules="gtk+-2.0 >= 2.12.0 glib-2.0 >= 2.14.0 gthread-2.0 >= 2.14.0 goocanvas >= 0.9"
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
AC_SUBST(PACKAGE_CFLAGS)
AC_SUBST(PACKAGE_LIBS)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-04-15 20:55:22
|
Revision: 275
http://gpredict.svn.sourceforge.net/gpredict/?rev=275&view=rev
Author: csete
Date: 2009-04-15 20:55:11 +0000 (Wed, 15 Apr 2009)
Log Message:
-----------
Updated version number.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-04-15 10:28:27 UTC (rev 274)
+++ trunk/configure.ac 2009-04-15 20:55:11 UTC (rev 275)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.0b2)
+AM_INIT_AUTOMAKE(gpredict, 1.0b3)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-05-11 13:04:19
|
Revision: 301
http://gpredict.svn.sourceforge.net/gpredict/?rev=301&view=rev
Author: csete
Date: 2009-05-11 13:04:14 +0000 (Mon, 11 May 2009)
Log Message:
-----------
Increment version number.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-05-11 12:04:08 UTC (rev 300)
+++ trunk/configure.ac 2009-05-11 13:04:14 UTC (rev 301)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.0b3)
+AM_INIT_AUTOMAKE(gpredict, 1.0b4)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-05-15 09:40:35
|
Revision: 316
http://gpredict.svn.sourceforge.net/gpredict/?rev=316&view=rev
Author: csete
Date: 2009-05-15 09:40:22 +0000 (Fri, 15 May 2009)
Log Message:
-----------
Increment version.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-05-15 09:38:29 UTC (rev 315)
+++ trunk/configure.ac 2009-05-15 09:40:22 UTC (rev 316)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.0b4)
+AM_INIT_AUTOMAKE(gpredict, 1.0b5)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-05-24 15:29:04
|
Revision: 333
http://gpredict.svn.sourceforge.net/gpredict/?rev=333&view=rev
Author: csete
Date: 2009-05-24 15:28:59 +0000 (Sun, 24 May 2009)
Log Message:
-----------
Updated version.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-05-24 12:47:28 UTC (rev 332)
+++ trunk/configure.ac 2009-05-24 15:28:59 UTC (rev 333)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.0b5)
+AM_INIT_AUTOMAKE(gpredict, 1.0b6)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-07-30 08:42:42
|
Revision: 336
http://gpredict.svn.sourceforge.net/gpredict/?rev=336&view=rev
Author: csete
Date: 2009-07-30 08:42:35 +0000 (Thu, 30 Jul 2009)
Log Message:
-----------
Increment version.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-05-30 12:26:30 UTC (rev 335)
+++ trunk/configure.ac 2009-07-30 08:42:35 UTC (rev 336)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.0b6)
+AM_INIT_AUTOMAKE(gpredict, 1.1svn)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-10-01 15:32:47
|
Revision: 463
http://gpredict.svn.sourceforge.net/gpredict/?rev=463&view=rev
Author: csete
Date: 2009-10-01 15:32:41 +0000 (Thu, 01 Oct 2009)
Log Message:
-----------
Freeze for release.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-10-01 14:16:29 UTC (rev 462)
+++ trunk/configure.ac 2009-10-01 15:32:41 UTC (rev 463)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.1svn)
+AM_INIT_AUTOMAKE(gpredict, 1.1)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-10-03 12:10:27
|
Revision: 469
http://gpredict.svn.sourceforge.net/gpredict/?rev=469&view=rev
Author: csete
Date: 2009-10-03 12:10:18 +0000 (Sat, 03 Oct 2009)
Log Message:
-----------
Hold release until satellite editor is ready.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-10-01 19:46:30 UTC (rev 468)
+++ trunk/configure.ac 2009-10-03 12:10:18 UTC (rev 469)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.1)
+AM_INIT_AUTOMAKE(gpredict, 1.1svn)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-10-04 11:59:27
|
Revision: 474
http://gpredict.svn.sourceforge.net/gpredict/?rev=474&view=rev
Author: csete
Date: 2009-10-04 11:59:17 +0000 (Sun, 04 Oct 2009)
Log Message:
-----------
Updated.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-10-04 11:01:54 UTC (rev 473)
+++ trunk/configure.ac 2009-10-04 11:59:17 UTC (rev 474)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.1svn)
+AM_INIT_AUTOMAKE(gpredict, 1.1)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-10-12 22:17:49
|
Revision: 491
http://gpredict.svn.sourceforge.net/gpredict/?rev=491&view=rev
Author: csete
Date: 2009-10-12 22:17:42 +0000 (Mon, 12 Oct 2009)
Log Message:
-----------
Increase version number.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-10-12 22:15:44 UTC (rev 490)
+++ trunk/configure.ac 2009-10-12 22:17:42 UTC (rev 491)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.1)
+AM_INIT_AUTOMAKE(gpredict, 1.2svn)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-10-30 16:43:26
|
Revision: 506
http://gpredict.svn.sourceforge.net/gpredict/?rev=506&view=rev
Author: csete
Date: 2009-10-30 16:43:19 +0000 (Fri, 30 Oct 2009)
Log Message:
-----------
Add .desktop file.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-10-30 16:42:35 UTC (rev 505)
+++ trunk/configure.ac 2009-10-30 16:43:19 UTC (rev 506)
@@ -59,7 +59,12 @@
AC_DEFINE(ENABLE_COV, 1, [Define if code coverage should be enabled.])
fi
+AC_ARG_ENABLE(caches,[ --enable-caches Run update-* to update desktop and icon caches when installing (disable if you install as not root)],,[enable_caches="yes"])
+AM_CONDITIONAL(UPDATE_CACHES, test x"$enable_caches" = "xyes")
+
+
+
GLIB_V=`pkg-config --modversion glib-2.0`
GIO_V=`pkg-config --modversion gio-2.0`
GTHR_V=`pkg-config --modversion gthread-2.0`
@@ -89,6 +94,7 @@
pixmaps/maps/Makefile
pixmaps/icons/Makefile
data/Makefile
+data/desktop/Makefile
data/satdata/Makefile
data/trsp/Makefile
po/Makefile.in
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2009-11-30 14:23:58
|
Revision: 531
http://gpredict.svn.sourceforge.net/gpredict/?rev=531&view=rev
Author: csete
Date: 2009-11-30 14:23:51 +0000 (Mon, 30 Nov 2009)
Log Message:
-----------
Changed default of --enable-caches to NO
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-11-30 14:23:25 UTC (rev 530)
+++ trunk/configure.ac 2009-11-30 14:23:51 UTC (rev 531)
@@ -59,7 +59,7 @@
AC_DEFINE(ENABLE_COV, 1, [Define if code coverage should be enabled.])
fi
-AC_ARG_ENABLE(caches,[ --enable-caches Run update-* to update desktop and icon caches when installing (disable if you install as not root)],,[enable_caches="yes"])
+AC_ARG_ENABLE(caches,[ --enable-caches Run update-* to update desktop and icon caches when installing (disable if you install as not root)],,[enable_caches="no"])
AM_CONDITIONAL(UPDATE_CACHES, test x"$enable_caches" = "xyes")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2010-10-10 12:19:58
|
Revision: 668
http://gpredict.svn.sourceforge.net/gpredict/?rev=668&view=rev
Author: csete
Date: 2010-10-10 12:19:52 +0000 (Sun, 10 Oct 2010)
Log Message:
-----------
Include new translations.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2010-10-10 12:18:40 UTC (rev 667)
+++ trunk/configure.ac 2010-10-10 12:19:52 UTC (rev 668)
@@ -42,7 +42,7 @@
dnl Add the languages which your application supports here.
dnl Note that other progs only have ALL_LINGUAS and AM_GLIB_GNU_GETTEXT
-ALL_LINGUAS="en_GB en_US fr"
+ALL_LINGUAS="cs de en_GB en_US es fi fr it lt ru th"
GETTEXT_PACKAGE=gpredict
AC_SUBST(GETTEXT_PACKAGE)
AM_GLIB_GNU_GETTEXT
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2010-10-12 09:55:31
|
Revision: 672
http://gpredict.svn.sourceforge.net/gpredict/?rev=672&view=rev
Author: csete
Date: 2010-10-12 09:55:25 +0000 (Tue, 12 Oct 2010)
Log Message:
-----------
Updated version string.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2010-10-12 09:54:41 UTC (rev 671)
+++ trunk/configure.ac 2010-10-12 09:55:25 UTC (rev 672)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.2svn)
+AM_INIT_AUTOMAKE(gpredict, 1.2)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2010-10-15 13:30:48
|
Revision: 680
http://gpredict.svn.sourceforge.net/gpredict/?rev=680&view=rev
Author: csete
Date: 2010-10-15 13:30:42 +0000 (Fri, 15 Oct 2010)
Log Message:
-----------
Ready for next development cycle.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2010-10-12 11:11:59 UTC (rev 679)
+++ trunk/configure.ac 2010-10-15 13:30:42 UTC (rev 680)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.2)
+AM_INIT_AUTOMAKE(gpredict, 1.3svn)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <cs...@us...> - 2011-03-01 15:48:19
|
Revision: 778
http://gpredict.svn.sourceforge.net/gpredict/?rev=778&view=rev
Author: csete
Date: 2011-03-01 15:48:13 +0000 (Tue, 01 Mar 2011)
Log Message:
-----------
Update version number.
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2011-03-01 15:47:33 UTC (rev 777)
+++ trunk/configure.ac 2011-03-01 15:48:13 UTC (rev 778)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.3svn)
+AM_INIT_AUTOMAKE(gpredict, 1.3)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
@@ -45,7 +45,7 @@
dnl Add the languages which your application supports here.
dnl Note that other progs only have ALL_LINGUAS and AM_GLIB_GNU_GETTEXT
-ALL_LINGUAS="cs de en_GB en_US es fi fr it lt ru th"
+ALL_LINGUAS="cs da de en_GB en_US es fi fr it lt ru th"
GETTEXT_PACKAGE=gpredict
AC_SUBST(GETTEXT_PACKAGE)
AM_GLIB_GNU_GETTEXT
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <aa...@us...> - 2011-03-13 16:03:21
|
Revision: 785
http://gpredict.svn.sourceforge.net/gpredict/?rev=785&view=rev
Author: aa1vs
Date: 2011-03-13 16:03:15 +0000 (Sun, 13 Mar 2011)
Log Message:
-----------
Change version to 1.4svn
Modified Paths:
--------------
trunk/configure.ac
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2011-03-13 03:10:32 UTC (rev 784)
+++ trunk/configure.ac 2011-03-13 16:03:15 UTC (rev 785)
@@ -2,7 +2,7 @@
AM_CONFIG_HEADER(build-config.h)
-AM_INIT_AUTOMAKE(gpredict, 1.3)
+AM_INIT_AUTOMAKE(gpredict, 1.4svn)
AM_MAINTAINER_MODE
AC_PROG_INTLTOOL([0.21])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|