Mercurial > mplayer.hg
diff configure @ 32169:e55fdf5b1dd7
Require DirectFB version 0.9.22.
This allows getting rid of a lot of library version check #ifdeffery.
Release 0.9.22 is from February 2005, so the requirement is reasonable.
author | diego |
---|---|
date | Wed, 15 Sep 2010 18:34:15 +0000 |
parents | c026f1657647 |
children | f002b9d0f4d1 |
line wrap: on
line diff
--- a/configure Wed Sep 15 17:22:04 2010 +0000 +++ b/configure Wed Sep 15 18:34:15 2010 +0000 @@ -4261,7 +4261,7 @@ cat > $TMPC << EOF #include <directfb.h> #include <directfb_version.h> -#if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 15) +#if (DIRECTFB_MAJOR_VERSION << 16 | DIRECTFB_MINOR_VERSION << 8 | DIRECTFB_MICRO_VERSION) < (0 << 16 | 9 << 8 | 22) #error "DirectFB version too old." #endif int main(void) { DirectFBInit(0, 0); return 0; }