-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* configure.ac: * po/de.po: * src/ui/edit/edit-application.c (bt_edit_application_show_about): * src/ui/edit/settings-dialog.c (bt_settings_dialog_init_ui): Releasing
- Loading branch information
Showing
6 changed files
with
499 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2007-05-02 Stefan Kost <[email protected]> | ||
|
||
* NEWS: | ||
* configure.ac: | ||
* po/de.po: | ||
* src/ui/edit/edit-application.c (bt_edit_application_show_about): | ||
* src/ui/edit/settings-dialog.c (bt_settings_dialog_init_ui): | ||
Releasing | ||
|
||
2007-05-01 Stefan Kost <[email protected]> | ||
|
||
* NEWSLETTER: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
dnl $Id: configure.ac,v 1.97 2007-04-19 20:39:19 ensonic Exp $ | ||
dnl $Id: configure.ac,v 1.98 2007-05-02 19:35:02 ensonic Exp $ | ||
|
||
dnl | ||
dnl current : the interface : MAJOR + MINOR | ||
|
@@ -11,13 +11,13 @@ dnl 3: when the interface has changed (removing functions) : MAJOR++, MINOR=0, M | |
dnl | ||
|
||
dnl Initialise the autoconf/automake tool | ||
AC_INIT([buzztard], [0.1.0], [[email protected]]) | ||
AC_INIT([buzztard], [0.2.0], [[email protected]]) | ||
AC_CONFIG_SRCDIR([ChangeLog]) | ||
AC_CONFIG_HEADERS(config.h) | ||
AC_CONFIG_MACRO_DIR(m4) | ||
|
||
BT_MAJOR_VERSION=0 | ||
BT_MINOR_VERSION=1 | ||
BT_MINOR_VERSION=2 | ||
BT_MICRO_VERSION=0 | ||
BT_VERSION=$BT_MAJOR_VERSION.$BT_MINOR_VERSION.$BT_MICRO_VERSION | ||
BT_VERSION_INFO=`expr $BT_MAJOR_VERSION + $BT_MINOR_VERSION`:$BT_MICRO_VERSION:$BT_MINOR_VERSION | ||
|
@@ -26,11 +26,11 @@ BT_VERSION_NUMBER=`expr $BT_MAJOR_VERSION \* 10000 + $BT_MINOR_VERSION \* 100 + | |
dnl our libraries and install dirs use major.minor as a version | ||
BT_MAJORMINOR=$BT_MAJOR_VERSION.$BT_MINOR_VERSION | ||
dnl we override it here for release candidates | ||
dnl BT_MAJORMINOR=0.1 | ||
dnl BT_MAJORMINOR=0.2 | ||
|
||
dnl update this for each release (year-month-day) | ||
BT_RELEASE_YEAR=2005 | ||
BT_RELEASE_DATE=$BT_RELEASE_YEAR-02-10 | ||
BT_RELEASE_YEAR=2007 | ||
BT_RELEASE_DATE=$BT_RELEASE_YEAR-05-03 | ||
|
||
AC_SUBST(BT_MAJOR_VERSION) | ||
AC_SUBST(BT_MINOR_VERSION) | ||
|
@@ -233,7 +233,7 @@ PKG_CHECK_MODULES(GCONF_DEPS, gconf-2.0 >= 2.2.0, [ | |
] | ||
) | ||
|
||
PKG_CHECK_MODULES(GSTBT_DEPS, libgstbuzztard >= 0.1, [ | ||
PKG_CHECK_MODULES(GSTBT_DEPS, libgstbuzztard >= 0.2.0, [ | ||
AC_DEFINE(USE_GSTBT, [1], [Define to 1 if we can use gst-buzztard]) | ||
BASE_DEPS_CFLAGS="$BASE_DEPS_CFLAGS $GSTBT_DEPS_CFLAGS" | ||
BASE_DEPS_LIBS="$BASE_DEPS_LIBS $GSTBT_DEPS_LIBS" | ||
|
Oops, something went wrong.