Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Masamichi Hosoda
poppler
Commits
932edfc3
Commit
932edfc3
authored
Mar 04, 2005
by
Kristian Høgsberg
Browse files
2005-03-04 Kristian Høgsberg <krh@redhat.com>
* configure.ac: Implement same check for gtk+-2.0 tests as for cairo.
parent
c632b35a
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
932edfc3
2005-03-04 Kristian Høgsberg <krh@redhat.com>
* configure.ac: Implement same check for gtk+-2.0 tests as for
cairo.
2005-03-04 Kristian Høgsberg <krh@redhat.com>
* configure.ac: Only fail hard in check for cairo if the user
...
...
configure.ac
View file @
932edfc3
...
...
@@ -125,12 +125,17 @@ AM_CONDITIONAL(BUILD_CAIRO_OUTPUT, test x$enable_cairo_output = xyes)
AC_ARG_ENABLE(gtk-test,
AC_HELP_STRING([--disable-gtk-test],
[Don't compile GTK+ test program.]),
,
enable_gtk_test=
"yes")
AM_CONDITIONAL(BUILD_GTK_TEST, test x$
enable_gtk_test
= xyes
)
[Don't compile GTK+ test program.]),
enable_gtk_test=
$enableval,
enable_gtk_test
="try"
)
if test x$enable_gtk_test = xyes; then
PKG_CHECK_MODULES(GTK_TEST, gtk+-2.0 >= 2.2.0)
elif test x$enable_gtk_test = xtry; then
PKG_CHECK_MODULES(GTK_TEST, gtk+-2.0 >= 2.2.0,
[enable_gtk_test="yes"],
[enable_gtk_test="no"])
fi
AM_CONDITIONAL(BUILD_GTK_TEST, test x$enable_gtk_test = xyes)
AC_OUTPUT([
Makefile
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment