diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-23 20:23:19 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-07-31 02:02:56 +0200 |
commit | 99fdf1d80292626614b0253f1eec638f544af7af (patch) | |
tree | 7467e35ff3b08362bc383857fa1b1487512f2daf | |
parent | 84de8725823198f350717db34dda4c434a360e16 (diff) | |
download | kopete-otr-99fdf1d80292626614b0253f1eec638f544af7af.tar.gz kopete-otr-99fdf1d80292626614b0253f1eec638f544af7af.zip |
Fix FTBFS
(cherry picked from commit f7e343598a97747be444a1407531e383b1187378)
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 4459b7b..703022a 100644 --- a/configure.in +++ b/configure.in @@ -48,6 +48,8 @@ dnl generate the config header AM_CONFIG_HEADER(config.h) dnl at the distribution this done dnl Checks for programs. +AC_PROG_CC +AC_PROG_CXX AC_CHECK_COMPILERS AC_ENABLE_SHARED(yes) AC_ENABLE_STATIC(no) @@ -71,11 +73,11 @@ AC_C_BIGENDIAN AC_CHECK_KDEMAXPATHLEN # Make sure that kde includes, etc. are part of the CPPFLAGS ... -CPPFLAGS="$CPPFLAGS $all_includes -I$kde_includes/kopete" +CPPFLAGS="$CPPFLAGS $all_includes -I$kde_includes/kopete -I$kde_includes/kde/kopete" # check for libkopete headers and library -AC_CHECK_HEADER(kopeteversion.h,, +KDE_CHECK_HEADER(kopeteversion.h,, AC_MSG_ERROR([libkopete header files missing])) #AC_CHECK_LIB([kopete], [_ZN6Kopete7AccountD0Ev],, |