diff options
author | Volker Lendecke <vl@samba.org> | 2008-06-14 10:31:11 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-14 10:39:25 +0200 |
commit | c08611a6c53d3a965afd16e56cf5c90777344314 (patch) | |
tree | b90cf93545cab200412a568ad763d0aa50c25f0d | |
parent | 2d23da2cff2ce9ef2aaaa051ada42905c883cbe5 (diff) | |
download | samba-c08611a6c53d3a965afd16e56cf5c90777344314.tar.gz samba-c08611a6c53d3a965afd16e56cf5c90777344314.tar.bz2 samba-c08611a6c53d3a965afd16e56cf5c90777344314.zip |
Correctly check for presence of cups-devel
On SuSE at least cups-config belongs to cups-libs which does not contain the
headers which are in cups-devel.
(This used to be commit 2408d2493f7c6e0beee58febd547516bbeb0929d)
-rw-r--r-- | source3/configure.in | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 358d9da7b7..f3663d72c7 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -769,10 +769,24 @@ if test x$enable_cups != xno; then AC_PATH_PROG(CUPS_CONFIG, cups-config) if test "x$CUPS_CONFIG" != x; then - AC_DEFINE(HAVE_CUPS,1,[Whether we have CUPS]) + + ac_save_CFLAGS=$CFLAGS + ac_save_LDFLAGS=$LDFLAGS + ac_save_PRINT_LIBS=$PRINT_LIBS CFLAGS="$CFLAGS `$CUPS_CONFIG --cflags`" LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`" PRINT_LIBS="$PRINT_LIBS `$CUPS_CONFIG --libs`" + AC_CHECK_HEADERS(cups/cups.h cups/language.h) + if test x"$ac_cv_header_cups_cups_h" = xyes -a \ + x"$ac_cv_header_cups_language_h" = xyes; then + AC_DEFINE(HAVE_CUPS,1,[Whether we have CUPS]) + else + AC_MSG_WARN([cups-config around but cups-devel not installed]) + CFLAGS=$ac_save_CFLAGS + LDFLAGS=$ac_save_LDFLAGS + PRINT_LIBS=$ac_save_PRINT_LIBS + fi + elif test x"$enable_cups" = x"yes"; then AC_MSG_ERROR(Cups support required but cups-config not located. Make sure cups-devel related files are installed.) fi |