Skip to content

Commit

Permalink
Merge pull request #47 from coolo/master
Browse files Browse the repository at this point in the history
don't build fail on using deprecated gtk widgets
  • Loading branch information
mvidner committed May 6, 2014
2 parents 9cb2a2b + a885886 commit 7921019
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue May 6 09:58:49 UTC 2014 - [email protected]

- don't error out on deprecated gtk widgets
- 2.44.5

-------------------------------------------------------------------
Fri Apr 25 15:40:31 CEST 2014 - [email protected]

Expand Down
2 changes: 1 addition & 1 deletion VERSION.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SET( VERSION_MAJOR "2" )
SET( VERSION_MINOR "44" )
SET( VERSION_PATCH "4" )
SET( VERSION_PATCH "5" )
SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${VERSION_SHA1}" )

##### This is need for the libyui core, ONLY.
Expand Down
4 changes: 2 additions & 2 deletions libyui-gtk.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ This package has very few dependencies.

%build

export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG -Wno-error=deprecated-declarations"
export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG -Wno-error=deprecated-declarations"

./bootstrap.sh %{_prefix}

Expand Down

1 comment on commit 7921019

@anaselli
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should solve or at least workaround issue #42

Please sign in to comment.