1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
AC_INIT([gmerlin-encoders], [2.0.0])
AC_CONFIG_SRCDIR([include/gmerlin_encoders.h])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(include/config.h)
SAVE_CFLAGS=$CFLAGS
SAVE_LDFLAGS=$LDFLAGS
AC_DISABLE_STATIC
AC_LANG(C)
AC_PROG_LIBTOOL
CFLAGS=$SAVE_CFLAGS
dnl
dnl Endianess
dnl
AC_C_BIGENDIAN(,,AC_MSG_ERROR("Cannot detect endianess"))
dnl
dnl Required libraries
dnl
GMERLIN_REQUIRED="2.0.0"
PKG_CHECK_MODULES(GMERLIN, gmerlin >= $GMERLIN_REQUIRED, , AC_MSG_ERROR("gmerlin not found"))
gmerlin_plugindir='$(libdir)/gmerlin/plugins'
dnl LDFLAGS for plugins
GMERLIN_PLUGIN_LDFLAGS="-export-symbols "`$PKG_CONFIG --variable=prefix gmerlin`"/share/gmerlin/plugin.sym $SAVE_LDFLAGS"
AC_SUBST(GMERLIN_PLUGIN_LDFLAGS)
AC_SUBST(gmerlin_plugindir)
AC_SUBST(GMERLIN_REQUIRED)
AM_GNU_GETTEXT([external])
dnl
dnl Optional libraries
dnl
dnl
dnl Ogg
dnl
GMERLIN_CHECK_OGG
dnl
dnl Vorbis
dnl
GMERLIN_CHECK_VORBIS
dnl
dnl Theora
dnl
GMERLIN_CHECK_THEORAENC
GMERLIN_CHECK_THEORADEC
dnl
dnl Speex
dnl
GMERLIN_CHECK_SPEEX
dnl
dnl OPUS
dnl
GMERLIN_CHECK_OPUS
dnl
dnl FLAC
dnl
GMERLIN_CHECK_FLAC
dnl
dnl lame
dnl
GMERLIN_CHECK_LAME
dnl
dnl faac
dnl
GMERLIN_CHECK_FAAC
dnl
dnl mjpegtools
dnl
GMERLIN_CHECK_MJPEGTOOLS
dnl
dnl libavcodec
dnl
GMERLIN_CHECK_AVCODEC
dnl
dnl libavformat
dnl
GMERLIN_CHECK_AVFORMAT
dnl
dnl libshout
dnl
GMERLIN_CHECK_SHOUT
dnl
dnl schroedinger
dnl
GMERLIN_CHECK_SCHROEDINGER
dnl
dnl Check if we have at least one video encoder
dnl available
dnl
AM_CONDITIONAL(HAVE_OGG_VIDEO,
test "x$have_theora" = "xtrue" -o "x$have_schroedinger" = "xtrue")
dnl
dnl CFLAGS
dnl
LQT_OPT_CFLAGS(["-O3 -fomit-frame-pointer -ffast-math"])
CFLAGS="$CFLAGS -D_REENTRANT -D_FILE_OFFSET_BITS=64 $OPT_CFLAGS $GMERLIN_CFLAGS"
LQT_TRY_CFLAGS(-Wall, CFLAGS="$CFLAGS -Wall")
LQT_TRY_CFLAGS(-Wmissing-declarations, CFLAGS="$CFLAGS -Wmissing-declarations" )
LQT_TRY_CFLAGS(-Wdeclaration-after-statement, CFLAGS="$CFLAGS -Wdeclaration-after-statement")
dnl
dnl LIBS
dnl
LIBS="$GMERLIN_LIBS"
if test "x$prefix" = xNONE; then
prefix="${ac_default_prefix}"
fi
if test "x$exec_prefix" = xNONE; then
exec_prefix="${prefix}"
fi
AC_CONFIG_FILES([Makefile \
po/Makefile.in \
gmerlin_encoders.spec \
include/Makefile \
lib/Makefile \
m4/Makefile \
utils/Makefile \
plugins/Makefile \
plugins/flac/Makefile \
plugins/ogg/Makefile \
plugins/lame/Makefile \
plugins/faac/Makefile \
plugins/yuv4mpeg/Makefile \
plugins/ffmpeg/Makefile \
])
AC_OUTPUT
echo ""
echo "=== Libraries: ================================="
echo -n "flac: "
if test "x$have_flac" = "xtrue"; then
echo "Found (CFLAGS=$FLAC_CFLAGS LIBS=$FLAC_LIBS)"
else
echo "Missing (Go to: http://flac.sourceforge.net/)"
fi
echo -n "ogg: "
if test "x$have_ogg" = "xtrue"; then
echo "Found (CFLAGS=$OGG_CFLAGS LIBS=$OGG_LIBS)"
else
echo "Missing (Go to: http://www.xiph.org/)"
fi
echo -n "vorbis: "
if test "x$have_vorbis" = "xtrue"; then
echo "Found (CFLAGS=$VORBIS_CFLAGS LIBS=$VORBIS_LIBS)"
else
echo "Missing (Go to: http://www.vorbis.com/)"
fi
echo -n "theoraenc: "
if test "x$have_theoraenc" = "xtrue"; then
echo "Found (CFLAGS=$THEORAENC_CFLAGS LIBS=$THEORAENC_LIBS)"
else
echo "Missing (Go to: http://www.theora.org/)"
fi
echo -n "speex: "
if test "x$have_speex" = "xtrue"; then
echo "Found (CFLAGS=$SPEEX_CFLAGS LIBS=$SPEEX_LIBS)"
else
echo "Missing (Go to: http://www.speex.org/)"
fi
echo -n "opus: "
if test "x$have_opus" = "xtrue"; then
echo "Found (CFLAGS=$OPUS_CFLAGS LIBS=$OPUS_LIBS)"
else
echo "Missing (Go to: http://www.opus-codec.org/)"
fi
echo -n "lame: "
if test "x$have_lame" = "xtrue"; then
echo "Found (CFLAGS=$LAME_CFLAGS LIBS=$LAME_LIBS)"
else
echo "Missing (Go to: http://www.mp3dev.org/)"
fi
echo -n "faac: "
if test "x$have_faac" = "xtrue"; then
echo "Found (CFLAGS=$FAAC_CFLAGS LIBS=$FAAC_LIBS)"
else
echo "Missing (Go to: http://www.audiocoding.com/)"
fi
echo -n "mjpegtools: "
if test "x$have_mjpegtools" = "xtrue"; then
echo "Found (CFLAGS=$MJPEGTOOLS_CFLAGS LIBS=$MJPEGTOOLS_LIBS)"
else
echo "Missing (Go to: http://mjpeg.sourceforge.net/)"
fi
echo -n "ffmpeg: "
if test "x$have_avformat" = "xtrue"; then
echo "Found (CFLAGS=$AVFORMAT_CFLAGS LIBS=$AVFORMAT_LIBS)"
else
echo "Missing (Go to: http://ffmpeg.org/)"
fi
echo -n "libshout: "
if test "x$have_shout" = "xtrue"; then
echo "Found (CFLAGS=$SHOUT_CFLAGS LIBS=$SHOUT_LIBS)"
else
echo "Missing (Go to: http://icecast.org/)"
fi
echo -n "schroedinger: "
if test "x$have_schroedinger" = "xtrue"; then
echo "Found (CFLAGS=$SCHROEDINGER_CFLAGS LIBS=$SCHROEDINGER_LIBS)"
else
echo "Missing (Go to: http://diracvideo.org/)"
fi
echo
echo "If you installed a library but it was not detected, check the file INSTALL"
echo "for troubleshooting tips. Also note that if the configure script reaches"
echo "this point, all missing packages are optional so compilation should succeed"
echo "anyway."
|