-
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.
Version bump, check for GTK+3 and omit code using it (ui.c)
In preparation for adding Linux memory check, add GTK+3 check and config.h entry to exclude compilation of code depending on V3 (rather than V2) GTK+. Version bump to 0.2.3. modified: config.h.in modified: configure.ac modified: src/main.c modified: src/ui.c
- Loading branch information
Showing
4 changed files
with
13 additions
and
3 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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([scopedesign], [0.2.2], [[email protected]]) | ||
AC_INIT([scopedesign], [0.2.3], [[email protected]]) | ||
AM_INIT_AUTOMAKE | ||
AC_CONFIG_SRCDIR([src/main.c]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
|
@@ -26,8 +26,9 @@ AC_PROG_LN_S | |
AC_PROG_MAKE_SET | ||
AC_PROG_RANLIB dnl Needed by ARGTABLE, XPA | ||
|
||
PKG_CHECK_MODULES([GTK], [gtk+-3.0]) | ||
|
||
PKG_CHECK_MODULES([GTK], [gtk+-3.0], | ||
[AC_DEFINE([HAVE_GTK3], [1], [Use GTK3])], | ||
[AC_DEFINE([HAVE_GTK3], [0], [Use GTK3])] ) | ||
|
||
|
||
# Checks for header files. | ||
|
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