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
v3.5.13-sru
tpearson 14 years ago
parent 991863ab5e
commit 25cc9face4

@ -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

@ -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

Loading…
Cancel
Save