diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 07:08:26 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 07:08:26 +0000 |
commit | 67ad8f16cd122cb3cc3097fbde2db59257ae2a3e (patch) | |
tree | 4fcb44e60a2af95025221879b78e4009e242e0ff /configure.in | |
parent | 4215e5acbaf799c4e26e57f5879a12534a36e537 (diff) | |
download | kchmviewer-67ad8f16cd122cb3cc3097fbde2db59257ae2a3e.tar.gz kchmviewer-67ad8f16cd122cb3cc3097fbde2db59257ae2a3e.zip |
Fix kchmviewer FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kchmviewer@1239258 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 45b5bc5..5061cac 100644 --- a/configure.in +++ b/configure.in @@ -19,8 +19,13 @@ AC_DEFINE_UNQUOTED(APP_NAME, "$PACKAGE", [ Application name ] ) AC_DEFINE_UNQUOTED(APP_VERSION, "$VERSION", [ Application version as text ]) AC_DEFINE_UNQUOTED(APP_INT_VERSION,$INT_VERSION, [ Application version as integer ]) -dnl Checks for programs. +# Checks for programs. +AC_PROG_CC +AC_PROG_CXX AC_CHECK_COMPILERS +AC_ENABLE_SHARED(yes) +AC_ENABLE_STATIC(no) +KDE_PROG_LIBTOOL dnl Check for X and extra X libs needed AC_PATH_XTRA @@ -28,11 +33,6 @@ if test "$no_x" = yes; then AC_MSG_ERROR(You need to have the X11 libraries and headers installed) fi -KDE_PROG_LIBTOOL -AC_ENABLE_SHARED(yes) -AC_ENABLE_STATIC(no) -AC_PATH_QT - CHMLIBDIR="lib/chmlib" EXTRA_SUBDIRS="" |