Add --disable-cups option. (#513826, Alberto Ruiz)
2008-03-05 Johan Dahlin <johan@gnome.org> * configure.in: Add --disable-cups option. (#513826, Alberto Ruiz) svn path=/trunk/; revision=19715
This commit is contained in:
committed by
Johan Dahlin
parent
22900f7853
commit
e9b26a6412
@ -1,5 +1,8 @@
|
|||||||
2008-03-05 Johan Dahlin <johan@gnome.org>
|
2008-03-05 Johan Dahlin <johan@gnome.org>
|
||||||
|
|
||||||
|
* configure.in: Add --disable-cups option.
|
||||||
|
(#513826, Alberto Ruiz)
|
||||||
|
|
||||||
* gtk/gtk.h:
|
* gtk/gtk.h:
|
||||||
* gtk/Makefile.am:
|
* gtk/Makefile.am:
|
||||||
Separate broken and deprecated sources and headers into different sections
|
Separate broken and deprecated sources and headers into different sections
|
||||||
|
|||||||
37
configure.in
37
configure.in
@ -1596,8 +1596,15 @@ LIBS="$old_LIBS"
|
|||||||
# Printing system checks
|
# Printing system checks
|
||||||
################################################################
|
################################################################
|
||||||
|
|
||||||
AC_PATH_PROG(CUPS_CONFIG, cups-config, no)
|
AC_ARG_ENABLE(cups,
|
||||||
if test "x$CUPS_CONFIG" != "xno"; then
|
[AC_HELP_STRING([--disable-cups]
|
||||||
|
[disable cups print backend])],,
|
||||||
|
[enable_cups=auto])
|
||||||
|
|
||||||
|
if test "x$enable_cups" = "xauto"
|
||||||
|
then
|
||||||
|
AC_PATH_PROG(CUPS_CONFIG, cups-config, no)
|
||||||
|
if test "x$CUPS_CONFIG" != "xno"; then
|
||||||
CUPS_CFLAGS=`$CUPS_CONFIG --cflags | sed 's/-O[0-9]*//' | sed 's/-m[^\t]*//g'`
|
CUPS_CFLAGS=`$CUPS_CONFIG --cflags | sed 's/-O[0-9]*//' | sed 's/-m[^\t]*//g'`
|
||||||
CUPS_LIBS=`$CUPS_CONFIG --libs`
|
CUPS_LIBS=`$CUPS_CONFIG --libs`
|
||||||
|
|
||||||
@ -1616,22 +1623,26 @@ if test "x$CUPS_CONFIG" != "xno"; then
|
|||||||
AC_SUBST(CUPS_LIBS)
|
AC_SUBST(CUPS_LIBS)
|
||||||
|
|
||||||
AC_CHECK_HEADER(cups/cups.h,,AC_MSG_ERROR([[*** Sorry, cups-config present but cups/cups.h missing.]]))
|
AC_CHECK_HEADER(cups/cups.h,,AC_MSG_ERROR([[*** Sorry, cups-config present but cups/cups.h missing.]]))
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(HAVE_CUPS, test "x$CUPS_CONFIG" != "xno")
|
AM_CONDITIONAL(HAVE_CUPS, test "x$CUPS_CONFIG" != "xno")
|
||||||
|
|
||||||
gtk_save_cflags="$CFLAGS"
|
gtk_save_cflags="$CFLAGS"
|
||||||
CFLAGS="$CUPS_CFLAGS"
|
CFLAGS="$CUPS_CFLAGS"
|
||||||
AC_TRY_COMPILE([#include <cups/http.h>],
|
AC_TRY_COMPILE([#include <cups/http.h>],
|
||||||
[http_t http; char *s = http.authstring;],
|
[http_t http; char *s = http.authstring;],
|
||||||
[AC_DEFINE(HAVE_HTTP_AUTHSTRING,[],[Define if cups http_t authstring field is accessible])],)
|
[AC_DEFINE(HAVE_HTTP_AUTHSTRING,[],[Define if cups http_t authstring field is accessible])],)
|
||||||
CFLAGS="$gtk_save_cflags"
|
CFLAGS="$gtk_save_cflags"
|
||||||
|
|
||||||
AC_SUBST(HAVE_HTTP_AUTHSTRING)
|
AC_SUBST(HAVE_HTTP_AUTHSTRING)
|
||||||
|
|
||||||
gtk_save_libs="$LIBS"
|
gtk_save_libs="$LIBS"
|
||||||
LIBS="$CUPS_LIBS"
|
LIBS="$CUPS_LIBS"
|
||||||
AC_CHECK_FUNCS(httpGetAuthString)
|
AC_CHECK_FUNCS(httpGetAuthString)
|
||||||
LIBS="$gtk_save_libs"
|
LIBS="$gtk_save_libs"
|
||||||
|
|
||||||
|
else
|
||||||
|
AM_CONDITIONAL(HAVE_CUPS, false)
|
||||||
|
fi
|
||||||
|
|
||||||
gtk_save_cppflags="$CPPFLAGS"
|
gtk_save_cppflags="$CPPFLAGS"
|
||||||
CPPFLAGS="$CPPFLAGS $GTK_DEP_CFLAGS"
|
CPPFLAGS="$CPPFLAGS $GTK_DEP_CFLAGS"
|
||||||
|
|||||||
Reference in New Issue
Block a user