diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:33:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:33:47 +0000 |
commit | 25cc9face418e901c6ae0bb85b04cbefa4d1f0bb (patch) | |
tree | 4def38362be9843fb3cf88bc8f68eedec899a3ba /configure.in | |
parent | 991863ab5e86d6c05eaf0449b6623825b56ee97c (diff) | |
download | k9copy-25cc9face418e901c6ae0bb85b04cbefa4d1f0bb.tar.gz k9copy-25cc9face418e901c6ae0bb85b04cbefa4d1f0bb.zip |
Accidentally reversed the logic in th previous commit; this reapirs the resulting FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1172276 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index c26bb16..7eb7746 100644 --- a/configure.in +++ b/configure.in @@ -113,11 +113,12 @@ cflags_safe="$CFLAGS" CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS" CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS" AC_MSG_CHECKING([if libavformat/avformat.h provides av_free_packet]) -AC_TRY_COMPILE([#include <libavformat/avformat.h> +AC_TRY_LINK([#include <libavformat/avformat.h> ],[AVPacket *packet; av_free_packet(packet);], [AC_MSG_RESULT(yes) -AC_DEFINE(NEEDS_AV_FREE_PACKET,1,[no])], -AC_MSG_RESULT(no)) +AC_DEFINE(NEEDS_AV_FREE_PACKET,0,[yes])], +[AC_MSG_RESULT(no) +AC_DEFINE(NEEDS_AV_FREE_PACKET,1,[no])]) CXXFLAGS="$cxx_flags_safe" CFLAGS="$cflags_safe" AC_LANG_RESTORE |