forked from GNOME/gtkmm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Murray Cumming
committed
Sep 7, 2005
1 parent
8c1c8a5
commit 6a69ad5
Showing
4 changed files
with
52 additions
and
9 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,7 @@ | ||
2.8.0: | ||
|
||
Updated NEWS and increased version. | ||
|
||
2.7.4: | ||
|
||
2005-08-17 Murray Cumming <[email protected]> | ||
|
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,8 +1,3 @@ | ||
This version of gtkmm is aimed at Gtk+ 2.5/2.6 | ||
See CHANGES for a comparison with gtkmm 2.4 | ||
This is gtkmm, a C++ API for GTK+. | ||
See http://www.gtkmm.org/ | ||
|
||
Required Libraries | ||
------------------ | ||
|
||
* Of course, you will need gtk+ 2 and its dependencies. | ||
* glibmm (which requires libsigc++ 2.0) |
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 |
---|---|---|
|
@@ -14,8 +14,8 @@ | |
|
||
#We use pushdef here because we can't use shell variables before AC_INIT, but we want to use a variable with AC_INIT: | ||
pushdef([GTKMM_MAJOR_VERSION], [2]) | ||
pushdef([GTKMM_MINOR_VERSION], [7]) | ||
pushdef([GTKMM_MICRO_VERSION], [4]) | ||
pushdef([GTKMM_MINOR_VERSION], [8]) | ||
pushdef([GTKMM_MICRO_VERSION], [0]) | ||
pushdef([GTKMM_EXTRA_VERSION], []) | ||
pushdef([GTKMM_VERSION], GTKMM_MAJOR_VERSION.GTKMM_MINOR_VERSION.GTKMM_MICRO_VERSION[]GTKMM_EXTRA_VERSION) | ||
AC_INIT([gtkmm], GTKMM_VERSION, [[email protected]]) | ||
|