diff options
author | Timothy Pearson <[email protected]> | 2013-04-05 09:13:26 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-04-05 09:13:26 -0500 |
commit | 294bbfddc9f2277be27fd2913699e1f8bd03f25e (patch) | |
tree | 0e6f06ea3bb7caf4aca75ee0b4744fa367c31973 /conduits/configure.in.in | |
parent | 50aecf2cb30123665d715b0872f8680cbfb464e9 (diff) | |
download | kpilot-294bbfddc9f2277be27fd2913699e1f8bd03f25e.tar.gz kpilot-294bbfddc9f2277be27fd2913699e1f8bd03f25e.zip |
Fix FTBFS
This resolves Bug 945
Thanks to Darrell Anderson for the patch!
Diffstat (limited to 'conduits/configure.in.in')
-rw-r--r-- | conduits/configure.in.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/conduits/configure.in.in b/conduits/configure.in.in index dcf63fe..db7d8d7 100644 --- a/conduits/configure.in.in +++ b/conduits/configure.in.in @@ -170,9 +170,9 @@ dnl dnl ---------------------------------------------------------------------------- AC_DEFUN([KPILOT_CHECK_KABC],[HAVE_KABC=0 +kpilot_save_cflags="$CPPFLAGS -Itderesources/factory.h" KDE_CHECK_HEADER(tderesources/factory.h,HAVE_KABC=1, - AC_MSG_WARN([KPILOT: Older kaddressbook version detected. No address book - conduit will be compiled.])) + AC_MSG_WARN([KPILOT: No tderesources/factory.h found. No address book conduit will be compiled.])) AM_CONDITIONAL(include_abc, test "$HAVE_KABC" = 1) ]) @@ -183,12 +183,12 @@ dnl dnl ---------------------------------------------------------------------------- AC_DEFUN([KPILOT_CHECK_NOTEPAD],[HAVE_NOTEPAD=0 -kpilot_save_cflags="$CPPFLAGS" +kpilot_save_cflags="$CPPFLAGS -Ipi-notepad.h" kpilot_save_ldflags="$LDFLAGS" test -z "$PISOCK_INCLUDE" || CPPFLAGS="$CPPFLAGS $PISOCK_INCLUDE" KDE_CHECK_HEADER(pi-notepad.h,HAVE_NOTEPAD=1, - AC_MSG_WARN([KPILOT: No notepad.h for pilot-link. Your pilot-link is too old.])) + AC_MSG_WARN([KPILOT: No notepad.h for pilot-link found. No notepad conduit will be compiled.])) CPPFLAGS="$kpilot_save_cflags" LDFLAGS="$kpilot_save_ldflags" |