mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
no audio / video decoding, yet :-(
Origin commit data
------------------
Branch: master
Commit: 92edef3e48
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-10-05 (Sat, 05 Oct 2013)
------------------
This commit was generated by Migit
46 lines
988 B
Plaintext
46 lines
988 B
Plaintext
AC_INIT([libstb-hal], [0.1.1])
|
|
AM_INIT_AUTOMAKE
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
AC_GNU_SOURCE
|
|
LT_INIT
|
|
|
|
## ugly, disables shared library build (not wanted yet)
|
|
enable_shared=no
|
|
|
|
TUXBOX_APPS
|
|
TUXBOX_APPS_DIRECTORY
|
|
TUXBOX_APPS_PKGCONFIG
|
|
TUXBOX_BOXTYPE
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
AC_DISABLE_STATIC
|
|
AC_SYS_LARGEFILE
|
|
AM_PROG_LIBTOOL
|
|
|
|
if test x"$BOXTYPE" = x"tripledragon"; then
|
|
TUXBOX_APPS_LIB_PKGCONFIG(DIRECTFB, directfb)
|
|
fi
|
|
|
|
if test x$BOXTYPE = xgeneric -a x$BOXMODEL != xraspi; then
|
|
PKG_CHECK_MODULES([AVFORMAT], [libavformat >= 53.21.1])
|
|
PKG_CHECK_MODULES([AVCODEC], [libavcodec >= 54.28.0])
|
|
# don't know which version is exactly needed here...
|
|
PKG_CHECK_MODULES([AVUTIL], [libavutil])
|
|
PKG_CHECK_MODULES([SWSCALE], [libswscale])
|
|
PKG_CHECK_MODULES([SWRESAMPLE], [libswresample])
|
|
fi
|
|
AC_OUTPUT([
|
|
Makefile
|
|
common/Makefile
|
|
libeplayer3/Makefile
|
|
azbox/Makefile
|
|
generic-pc/Makefile
|
|
libtriple/Makefile
|
|
libspark/Makefile
|
|
raspi/Makefile
|
|
tools/Makefile
|
|
])
|
|
|