summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:33:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:33:47 +0000
commit25cc9face418e901c6ae0bb85b04cbefa4d1f0bb (patch)
tree4def38362be9843fb3cf88bc8f68eedec899a3ba
parent991863ab5e86d6c05eaf0449b6623825b56ee97c (diff)
downloadk9copy-25cc9fac.tar.gz
k9copy-25cc9fac.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
-rw-r--r--configure.in7
-rwxr-xr-xconfigure.in.in7
2 files changed, 8 insertions, 6 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
diff --git a/configure.in.in b/configure.in.in
index 81d28a6..3c1ef01 100755
--- a/configure.in.in
+++ b/configure.in.in
@@ -56,11 +56,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