Add implementation of analog TV signal generator (PAL so far)
Quick and dirty Howto: make && tv/osmotv --sdr-soapy --sdr-tx-gain 60 -r 15000000 -c 21 tx-fubk --sdr-tune-args "OFFSET=-3000000"
This commit is contained in:
39
configure.ac
39
configure.ac
@@ -29,6 +29,39 @@ AC_CHECK_LIB([pthread], [main])
|
||||
|
||||
PKG_CHECK_MODULES(ALSA, alsa >= 1.0)
|
||||
|
||||
# disabled due to problems with api compatibilty with imagemagick
|
||||
#AC_ARG_ENABLE(graphicsmagick,
|
||||
# [AS_HELP_STRING(
|
||||
# [--disable-graphicsmagick],
|
||||
# [Disable building graphicsmagick]
|
||||
# )],
|
||||
# [enable_graphicsmagick=$enableval], [enable_graphicsmagick="yes"])
|
||||
#if test x"$enable_graphicsmagick" = x"yes"
|
||||
#then
|
||||
# PKG_CHECK_MODULES(GRAPHICSMAGICK, GraphicsMagick >= 1.3.16, , enable_graphicsmagick=no)
|
||||
#fi
|
||||
#if test x"$enable_graphicsmagick" = x"yes"
|
||||
#then
|
||||
# somethingmagick=yes
|
||||
#fi
|
||||
|
||||
AC_ARG_ENABLE(imagemagick,
|
||||
[AS_HELP_STRING(
|
||||
[--disable-imagemagick],
|
||||
[Disable building imagemagick]
|
||||
)],
|
||||
[enable_imagemagick=$enableval], [enable_imagemagick="yes"])
|
||||
if test x"$enable_imagemagick" = x"yes"
|
||||
then
|
||||
PKG_CHECK_MODULES(IMAGEMAGICK, ImageMagick >= 6.0.0, , enable_imagemagick=no)
|
||||
fi
|
||||
if test x"$enable_imagemagick" = x"yes"
|
||||
then
|
||||
somethingmagick=yes
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(ENABLE_MAGICK, test x"$somethingmagick" = x"yes")
|
||||
|
||||
with_sdr=no
|
||||
AC_ARG_WITH([uhd], [AS_HELP_STRING([--with-uhd], [compile with UHD driver @<:@default=check@:>@]) ], [], [with_uhd="check"])
|
||||
AC_ARG_WITH([soapy], [AS_HELP_STRING([--with-soapy], [compile with SoapySDR driver @<:@default=check@:>@]) ], [], [with_soapy="check"])
|
||||
@@ -37,8 +70,9 @@ AS_IF([test "x$with_soapy" != xno], [PKG_CHECK_MODULES(SOAPY, SoapySDR >= 0.6.0,
|
||||
AM_CONDITIONAL(HAVE_UHD, test "x$with_uhd" == "xyes" )
|
||||
AM_CONDITIONAL(HAVE_SOAPY, test "x$with_soapy" == "xyes" )
|
||||
AM_CONDITIONAL(HAVE_SDR, test "x$with_sdr" == "xyes" )
|
||||
AS_IF([test "x$with_uhd" == "xyes"],[AC_MSG_NOTICE( Compiling with UHD SDR support )], [AC_MSG_NOTICE( UHD SDR not support )])
|
||||
AS_IF([test "x$with_soapy" == "xyes"],[AC_MSG_NOTICE( Compiling with SoapySDR support )], [AC_MSG_NOTICE( SoapySDR not support )])
|
||||
AS_IF([test "x$with_uhd" == "xyes"],[AC_MSG_NOTICE( Compiling with UHD SDR support )], [AC_MSG_NOTICE( UHD SDR not supported )])
|
||||
AS_IF([test "x$with_soapy" == "xyes"],[AC_MSG_NOTICE( Compiling with SoapySDR support )], [AC_MSG_NOTICE( SoapySDR not supported )])
|
||||
AS_IF([test "x$somethingmagick" == "xyes"],[AC_MSG_NOTICE( Compiling with ImageMagick )],[AC_MSG_NOTICE( ImageMagick not supported )])
|
||||
|
||||
AC_OUTPUT(
|
||||
src/common/Makefile
|
||||
@@ -50,6 +84,7 @@ AC_OUTPUT(
|
||||
src/tacs/Makefile
|
||||
src/jtacs/Makefile
|
||||
src/r2000/Makefile
|
||||
src/tv/Makefile
|
||||
src/test/Makefile
|
||||
src/Makefile
|
||||
sim/Makefile
|
||||
|
Reference in New Issue
Block a user