diff options
author | Timothy Pearson <[email protected]> | 2012-02-23 20:23:19 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-23 20:23:19 -0600 |
commit | f7e343598a97747be444a1407531e383b1187378 (patch) | |
tree | 77208b6f60fd44c905b2b80ba19b0ca1b1116255 | |
parent | f70d8f469954801e0e87c4592f3edbc39419b9aa (diff) | |
download | kopete-otr-f7e343598a97747be444a1407531e383b1187378.tar.gz kopete-otr-f7e343598a97747be444a1407531e383b1187378.zip |
Fix FTBFS
-rw-r--r-- | configure.in | 6 | ||||
-rw-r--r-- | configure.in.in | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 4e5632f..9c59261 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/tde/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],, diff --git a/configure.in.in b/configure.in.in index 28a5407..4978f90 100644 --- a/configure.in.in +++ b/configure.in.in @@ -6,7 +6,7 @@ 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 -I$kde_includes/kde/kopete" +CPPFLAGS="$CPPFLAGS $all_includes -I$kde_includes/kopete -I$kde_includes/tde/kopete" # check for libkopete headers and library |