X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=configure.in;h=d3b4297181e610afc2e13c64545a83626a914d68;hb=1a6617c9845b3531b4d80d2da26093729d088406;hp=29eb9f46a70f492be5306bc81daedaca232bb73a;hpb=d75890a891ae689ca44ae076e0b17557648cc16d;p=vlc diff --git a/configure.in b/configure.in index 29eb9f46a7..d3b4297181 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ AC_CONFIG_HEADER(include/defs.h) AC_CANONICAL_SYSTEM PACKAGE="vlc" -VERSION="0.3.1" +VERSION="0.4.4" CODENAME=Ourumov dnl Save CFLAGS and LDFLAGS @@ -39,7 +39,7 @@ else fi dnl Gettext stuff -ALL_LINGUAS="de en_GB fr ja no ru nl" +ALL_LINGUAS="de en_GB fr ja no ru nl pl" AC_DEFINE_UNQUOTED(VLC_PACKAGE, "$PACKAGE", [Package name]) AC_DEFINE_UNQUOTED(VLC_VERSION, "$VERSION", [Package version]) @@ -79,6 +79,8 @@ case x"${target_os}" in vlc_LDFLAGS="${vlc_LDFLAGS} -mwindows -Xlinker --force-exe-suffix" vlc_LDFLAGS="${vlc_LDFLAGS} -lws2_32 -lnetapi32" ipv4_LDFLAGS="${ipv4_LDFLAGS} -lws2_32" + ipv6_LDFLAGS="${ipv6_LDFLAGS} -lws2_32" + http_LDFLAGS="${http_LDFLAGS} -lws2_32" rc_LDFLAGS="${rc_LDFLAGS} -lws2_32" ;; x*nto*) @@ -91,7 +93,7 @@ case x"${target_os}" in save_CFLAGS="${save_CFLAGS} -Wno-multichar -Wno-ctor-dtor-privacy -Woverloaded-virtual" vlc_LDFLAGS="${vlc_LDFLAGS} -lbe" plugins_LDFLAGS="${plugins_LDFLAGS} -nostart" - beos_LDFLAGS="${beos_LDFLAGS} -lbe -lgame -lroot -ltracker" + beos_LDFLAGS="${beos_LDFLAGS} -lbe -lgame -lroot -ltracker -ltranslation -lstdc++.r4" ipv4_LDFLAGS="${ipv4_LDFLAGS} -lbind" ;; x*) @@ -111,7 +113,7 @@ dnl The -DSYS_FOO flag save_CFLAGS="${save_CFLAGS} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`" dnl Check for system libs needed -AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol isatty usleep vasprintf swab sigrelse getpwuid memalign posix_memalign gethostbyname2) +AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol isatty vasprintf swab sigrelse getpwuid memalign posix_memalign gethostbyname2 atoll) AC_CHECK_FUNC(connect,,[ AC_CHECK_LIB(socket,connect, @@ -124,11 +126,18 @@ AC_CHECK_FUNC(gethostbyname,,[ AC_CHECK_FUNC(gethostbyname,,[ AC_CHECK_LIB(bind,gethostbyname,ipv4_LDFLAGS="${ipv4_LDFLAGS} -lbind") ]) -AC_CHECK_FUNC(nanosleep,,[ - AC_CHECK_LIB(rt,nanosleep,vlc_LDFLAGS="${vlc_LDFLAGS} -lrt",[ - AC_CHECK_LIB(posix4,nanosleep,vlc_LDFLAGS="${vlc_LDFLAGS} -lposix4") - ]) +have_nanosleep=0 +AC_CHECK_FUNC(nanosleep,have_nanosleep=1,[ + AC_CHECK_LIB(rt,nanosleep, + [vlc_LDFLAGS="${vlc_LDFLAGS} -lrt"; have_nanosleep=1], + [AC_CHECK_LIB(posix4,nanosleep, + [vlc_LDFLAGS="${vlc_LDFLAGS} -lposix4"; have_nanosleep=1])] + ) ]) +if test x$have_nanosleep = x1; then + AC_DEFINE(HAVE_NANOSLEEP, 1, + Define if nanosleep is available.) +fi AC_CHECK_FUNC(inet_aton,,[ AC_CHECK_LIB(resolv,inet_aton,ipv4_LDFLAGS="${ipv4_LDFLAGS} -lresolv") ]) @@ -184,7 +193,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[ Define if defines strncasecmp.)]) dnl Check for headers -AC_CHECK_HEADERS(getopt.h strings.h) +AC_CHECK_HEADERS(stdint.h getopt.h strings.h inttypes.h sys/int_types.h) AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h) AC_CHECK_HEADERS(dlfcn.h image.h) AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h) @@ -193,6 +202,18 @@ AC_CHECK_HEADERS(linux/version.h) AC_HEADER_TIME +dnl Mac OS X and other OSes don't have declaration for nanosleep +AC_EGREP_HEADER(nanosleep,time.h,[ + AC_DEFINE(HAVE_DECL_NANOSLEEP, 1, + Define if defines nanosleep.) +]) + +dnl Make sure we have timespecs +AC_EGREP_HEADER(timespec,sys/time.h,[ + AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1, + Define if defines struct timespec.) +]) + dnl Check for threads library AC_CHECK_HEADERS(cthreads.h pthread.h kernel/scheduler.h kernel/OS.h) @@ -406,7 +427,12 @@ dnl dnl default modules dnl BUILTINS="${BUILTINS} idct idctclassic motion imdct downmix chroma_i420_rgb chroma_i420_yuy2 chroma_i422_yuy2 chroma_i420_ymga mpeg_adec ac3_adec mpeg_vdec" -PLUGINS="${PLUGINS} dummy null rc logger mpeg_es mpeg_ps mpeg_ts mpeg_audio file udp http ipv4 memcpy lpcm_adec ac3_spdif spudec filter_deinterlace filter_invert filter_wall filter_transform filter_distort filter_clone fx_scope" +PLUGINS="${PLUGINS} dummy null rc logger mpeg_es mpeg_ps mpeg_ts mpeg_audio file memcpy lpcm_adec ac3_spdif spudec filter_deinterlace filter_invert filter_wall filter_transform filter_distort filter_clone filter_crop fx_scope" + +dnl +dnl Network modules +dnl +NETWORK_MODULES="udp http ipv4" dnl dnl Accelerated modules @@ -417,6 +443,11 @@ THREEDNOW_MODULES="memcpy3dn imdct3dn downmix3dn" SSE_MODULES="imdctsse downmixsse" ALTIVEC_MODULES="idctaltivec motionaltivec memcpyaltivec" +if test x$SYS != xbeos +then + PLUGINS="${PLUGINS} ${NETWORK_MODULES}" +fi + AC_CACHE_CHECK([if \$CC groks MMX inline assembly], [ac_cv_mmx_inline], [AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));], @@ -703,28 +734,68 @@ if test "x$enable_dvbpsi" != "xno" then AC_ARG_WITH(dvbpsi, [ --with-dvbpsi=PATH libdvbpsi headers and libraries]) - if test "x$with_dvbpsi" = x - then - test_LDFLAGS="" - test_CFLAGS="" - else - test_LDFLAGS="-L${with_dvbpsi}/lib" - test_CFLAGS="-I${with_dvbpsi}/include" - fi - CPPFLAGS="$save_CPPFLAGS $test_CFLAGS" - AC_CHECK_HEADER([dvbpsi/dvbpsi.h],[ - PLUGINS="${PLUGINS} mpeg_ts_dvbpsi" - mpeg_ts_dvbpsi_LDFLAGS="${mpeg_ts_dvbpsi_LDFLAGS} ${test_LDFLAGS} -ldvbpsi" - mpeg_ts_dvbpsi_CFLAGS="${mpeg_ts_dvbpsi_CFLAGS} ${test_CFLAGS}" - ],[ - if test "x$enable_dvbpsi" != x + AC_ARG_WITH(dvbpsi, + [ --with-dvbpsi-tree=PATH libdvbpsi tree for static linking]) + case "x$with_dvbpsi" in + x|xyes) + if test "x$with_dvbpsi_tree" = x then - AC_MSG_ERROR([Could not find libdvbpsi on your system: you may get it from www.videolan.org]) + AC_CHECK_HEADERS(dvbpsi/dr.h, + [ PLUGINS="${PLUGINS} mpeg_ts_dvbpsi" + mpeg_ts_dvbpsi_LDFLAGS="${mpeg_ts_dvbpsi_LDFLAGS} -ldvbpsi" ], [], + [ AC_MSG_ERROR([cannot find libdvbpsi headers]) ]) + else + AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree}) + real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`" + if test "x$real_dvbpsi_tree" = x + then + dnl The given directory can't be found + AC_MSG_RESULT(no) + AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}]) + fi + if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" + then + dnl Use a custom libdvbpsi + AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a) + BUILTINS="${BUILTINS} mpeg_ts_dvbpsi" + mpeg_ts_dvbpsi_LDFLAGS="${mpeg_ts_dvbpsi_LDFLAGS} ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" + mpeg_ts_dvbpsi_CFLAGS="${mpeg_ts_dvbpsi_CFLAGS} -I${real_dvbpsi_tree}/src" + else + dnl The given libdvbpsi wasn't built + AC_MSG_RESULT(no) + AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}]) + fi fi - ]) - CPPFLAGS="$save_CPPFLAGS" + ;; + xno) + dnl Compile without dvbpsi (dlopen version, works only under Linux) + ;; + *) + AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi}) + if test "x$with_dvbpsi" = x + then + test_LDFLAGS="" + test_CFLAGS="" + else + test_LDFLAGS="-L${with_dvbpsi}/lib" + test_CFLAGS="-I${with_dvbpsi}/include" + fi + CPPFLAGS="$save_CPPFLAGS $test_CFLAGS" + AC_CHECK_HEADER([dvbpsi/dr.h],[ + PLUGINS="${PLUGINS} mpeg_ts_dvbpsi" + mpeg_ts_dvbpsi_LDFLAGS="${mpeg_ts_dvbpsi_LDFLAGS} ${test_LDFLAGS} -ldvbpsi" + mpeg_ts_dvbpsi_CFLAGS="${mpeg_ts_dvbpsi_CFLAGS} ${test_CFLAGS}" + ],[ + if test "x$enable_dvbpsi" != x + then + AC_MSG_ERROR([Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1]) + fi + ]) + CPPFLAGS="$save_CPPFLAGS" + ;; + esac fi - + dnl dnl VCD module dnl @@ -767,10 +838,16 @@ AC_ARG_ENABLE(satellite, dnl dnl ipv6 plugin - not for QNX yet dnl -if test x$SYS != xnto +if test x$SYS != xnto && test "x$SYS" != "xmingw32" then AC_CHECK_FUNC(inet_pton,[PLUGINS="${PLUGINS} ipv6"]) fi +if test "x$SYS" = "xmingw32" +then + AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h) + AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes) + PLUGINS="${PLUGINS} ipv6"],[AC_MSG_RESULT(no)]) +fi dnl dnl AVI demux plugin @@ -795,29 +872,58 @@ AC_ARG_ENABLE(mad, [ --enable-mad libmad module (default disabled)]) if test x$enable_mad = xyes then - PLUGINS="${PLUGINS} mad" - mad_LDFLAGS="${mad_LDFLAGS} -lmad" AC_ARG_WITH(mad, - [ --with-mad=PATH path to libmad], - [ if test "x$with_mad" != "xno" -a "x$with_mad" != "x" - then - mad_CFLAGS="${mad_CFLAGS} -I$with_mad/include" - mad_LDFLAGS="${mad_LDFLAGS} -L$with_mad/lib" - fi ]) - save_CFLAGS=$CFLAGS - save_LDFLAGS=$LDFLAGS - CFLAGS="$CFLAGS $mad_CFLAGS" - LDFLAGS="$LDFLAGS $mad_LDFLAGS" - AC_CHECK_HEADERS(mad.h, , - [ echo "Cannot find development headers for libmad..." - exit 1 - ]) - AC_CHECK_LIB(mad, mad_bit_init, , - [ echo "Cannot find libmad library..." - exit 1 - ]) - CFLAGS=$save_CFLAGS - LDFLAGS=$save_LDFLAGS + [ --with-mad=PATH path to libmad],[],[]) + if test "x$with_mad" != "xno" -a "x$with_mad" != "x" + then + mad_CFLAGS="${mad_CFLAGS} -I$with_mad/include" + mad_LDFLAGS="${mad_LDFLAGS} -L$with_mad/lib" + fi + + AC_ARG_WITH(mad-tree, + [ --with-mad-tree=PATH mad tree for static linking],[],[]) + if test "x$with_mad_tree" != "xno" -a "x$with_mad_tree" != "x" + then + real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`" + if test "x$real_mad_tree" = x + then + dnl The given directory can't be found + AC_MSG_RESULT(no) + AC_MSG_ERROR([${with_mad_tree} directory doesn't exist]) + fi + dnl Use a custom libmad + AC_MSG_CHECKING(for mad.h in ${real_mad_tree}/libmad) + if test -f ${real_mad_tree}/libmad/mad.h + then + AC_MSG_RESULT(yes) + mad_CFLAGS="${mad_CFLAGS} -I${real_mad_tree}/libmad" + mad_LDFLAGS="${mad_LDFLAGS} -L${real_mad_tree}/libmad/.libs" + save_LDFLAGS=$LDFLAGS + LDFLAGS=$mad_LDFLAGS + AC_CHECK_LIB(mad, mad_bit_init, [ + BUILTINS="${BUILTINS} mad" + mad_LDFLAGS="${mad_LDFLAGS} -lmad" + ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ]) + ],[]) + LDFLAGS=$save_LDFLAGS + else + AC_MSG_RESULT(no) + AC_MSG_ERROR([the specified tree doesn't have mad.h]) + fi + else + save_CFLAGS=$CFLAGS + save_LDFLAGS=$LDFLAGS + CFLAGS="$CFLAGS $mad_CFLAGS" + LDFLAGS="$LDFLAGS $mad_LDFLAGS" + AC_CHECK_HEADERS(mad.h, , + [ AC_MSG_ERROR([Cannot find development headers for libmad...]) ]) + AC_CHECK_LIB(mad, mad_bit_init, [ + PLUGINS="${PLUGINS} mad" + mad_LDFLAGS="${mad_LDFLAGS} -lmad" ], + [ AC_MSG_ERROR([Cannot find libmad library...]) ]) + CFLAGS=$save_CFLAGS + LDFLAGS=$save_LDFLAGS + fi fi dnl @@ -827,12 +933,18 @@ AC_ARG_ENABLE(ffmpeg, [ --enable-ffmpeg ffmpeg codec (default disabled)]) if test "x$enable_ffmpeg" = "xyes" then + AC_ARG_WITH(ffmpeg, + [ --with-ffmpeg=PATH path to ffmpeg installation],[],[]) + if test "x$with_ffmpeg" != "xno" -a "x$with_ffmpeg" != "x" + then + ffmpeg_CFLAGS="${ffmpeg_CFLAGS} -I$with_ffmpeg/include/libffmpeg" + ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -L$with_ffmpeg/lib" + fi + AC_ARG_WITH(ffmpeg-tree, [ --with-ffmpeg-tree=PATH ffmpeg tree for static linking]) - if test "x$with_ffmpeg_tree" = x + if test "x$with_ffmpeg_tree" != "x" then - AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a]) - else AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree}) real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`" if test "x$real_ffmpeg_tree" = x @@ -847,12 +959,35 @@ then AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a) BUILTINS="${BUILTINS} ffmpeg" ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} ${real_ffmpeg_tree}/libavcodec/libavcodec.a" + if test x$SYS != xbeos + then + ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lm" + fi ffmpeg_CFLAGS="${ffmpeg_CFLAGS} -I${real_ffmpeg_tree}/libavcodec" else dnl The given libavcodec wasn't built AC_MSG_RESULT(no) AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}]) fi + else + save_CFLAGS=$CFLAGS + save_LDFLAGS=$LDFLAGS + CFLAGS="$CFLAGS $ffmpeg_CFLAGS" + LDFLAGS="$LDFLAGS $ffmpeg_LDFLAGS" + if test x$SYS != xbeos + then + ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lm" + fi + AC_CHECK_LIB(avcodec, avcodec_init, [ + BUILTINS="${BUILTINS} ffmpeg" + ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lavcodec" + if test x$SYS != xbeos + then + ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lm" + fi ], + [ AC_MSG_ERROR([Cannot find libavcodec library...]) ]) + CFLAGS=$save_CFLAGS + LDFLAGS=$save_LDFLAGS fi fi @@ -1049,6 +1184,39 @@ from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day. fi fi +dnl +dnl Qt Embedded module +dnl (disabled by default) +dnl +AC_ARG_ENABLE(qte, + [ --enable-qte QT Embedded support (default disabled)]) +if test "x${enable_qte}" != "xno" +then + AC_ARG_WITH(qte, + [ --with-qte=PATH Qt Embedded headers and libraries]) + if test "x${with_qte}" = "x" + then + test_LDFLAGS="-L${QTDIR}/lib" + test_CFLAGS="-I$(QTDIR)/include" + else + test_LDFLAGS="-L${with_qte}/lib" + test_CFLAGS="-I${with_qte}/include" + fi + + CPPFLAGS="${save_CPPFLAGS} ${test_CFLAGS}" + AC_CHECK_HEADERS(qt.h, [ + qte_CFLAGS="${qte_CFLAGS} ${test_CFLAGS} -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti" + qte_LDFLAGS="${qte_LDFLAGS} ${test_LDFLAGS} -lqpe -lqte" + if test "x${with_qte}" = "x" + then + PLUGINS="${PLUGINS} qte" + else + BUILTINS="${BUILTINS} qte" + fi + ]) + CPPFLAGS="${save_CPPFLAGS}" +fi + dnl dnl Windows DirectX module dnl @@ -1285,6 +1453,51 @@ then fi fi +dnl +dnl Familiar module uses Gtk+ library +dnl +AC_ARG_ENABLE(familiar, + [ --enable-familiar Familiar Gtk+ support (default disabled)]) +if test "x${enable_familiar}" = "xyes" +then + GTK_PATH="${PATH}" + AC_ARG_WITH(gtk-config-path, + [ --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)], + [ if test "x${with_gtk_config_path}" != "xno" + then + GTK_PATH="${with_gtk_config_path}:${PATH}" + fi ]) + # look for gtk-config + AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH}) + GTK_CONFIG=${GTK12_CONFIG} + if test "x${GTK_CONFIG}" = "xno" + then + AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH}) + fi + if test "x${GTK_CONFIG}" != "xno" + then + if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null + then + AC_MSG_ERROR([Your development package for Gtk+ is too old, you need at least version 1.2.0. Please upgrade and try again. Alternatively you can also configure with --disable-familiar.]) + fi + familiar_CFLAGS="${familiar_CFLAGS} `${GTK_CONFIG} --cflags gtk gthread`" + familiar_LDFLAGS="${familiar_LDFLAGS} `${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`" + # now look for the gtk.h header + CPPFLAGS="${save_CPPFLAGS} ${familiar_CFLAGS}" + ac_cv_gtk_headers=yes + AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [ + ac_cv_gtk_headers=no + echo "Cannot find gtk development headers." + ]) + if test "x${ac_cv_gtk_headers}" = "xyes" + then + PLUGINS="${PLUGINS} familiar" + NEED_GTK_MAIN=yes + fi + CPPFLAGS="${save_CPPFLAGS}" + fi +fi + dnl dnl Gnome module dnl @@ -1347,6 +1560,34 @@ AC_ARG_ENABLE(kde, fi fi]) +dnl +dnl Opie QT embedded module +dnl +AC_ARG_ENABLE(opie, + [ --enable-opie Qt embedded interface support (default disabled)], + [if test "x${enable_opie}" = "xyes"; then + AC_ARG_WITH(qte, + [ --with-qte=PATH Qt Embedded headers and libraries]) + if test "x${with_qte}" = "x" + then + test_LDFLAGS="-L$(QTDIR)/lib" + test_CFLAGS="-I${QTDIR}/include" + else + test_LDFLAGS="-L${with_qte}/lib" + test_CFLAGS="-I${with_qte}/include" + fi + + PLUGINS="${PLUGINS} opie" + opie_LDFLAGS="${opie_LDFLAGS} ${test_LDFLAGS} -lqpe -lqte" + opie_CFLAGS="${opie_CFLAGS} ${test_CFLAGS}-DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti" + if test -x ${QTDIR}/bin/moc + then + MOC=${QTDIR}/bin/moc + else + MOC=moc + fi + fi]) + dnl dnl MacOS X module dnl @@ -1598,6 +1839,7 @@ AC_SUBST(dvdread_CFLAGS) AC_SUBST(mpeg_ts_dvbpsi_CFLAGS) AC_SUBST(directx_CFLAGS) AC_SUBST(esd_CFLAGS) +AC_SUBST(familiar_CFLAGS) AC_SUBST(ffmpeg_CFLAGS) AC_SUBST(glide_CFLAGS) AC_SUBST(gnome_CFLAGS) @@ -1608,7 +1850,9 @@ AC_SUBST(macosx_CFLAGS) AC_SUBST(mad_CFLAGS) AC_SUBST(memcpyaltivec_CFLAGS) AC_SUBST(motionaltivec_CFLAGS) +AC_SUBST(opie_CFLAGS) AC_SUBST(qt_CFLAGS) +AC_SUBST(qte_CFLAGS) AC_SUBST(sdl_CFLAGS) AC_SUBST(x11_CFLAGS) AC_SUBST(xvideo_CFLAGS) @@ -1629,17 +1873,20 @@ AC_SUBST(dvd_LDFLAGS) AC_SUBST(dvdread_LDFLAGS) AC_SUBST(mpeg_ts_dvbpsi_LDFLAGS) AC_SUBST(esd_LDFLAGS) +AC_SUBST(familiar_LDFLAGS) AC_SUBST(filter_distort_LDFLAGS) AC_SUBST(ffmpeg_LDFLAGS) AC_SUBST(ggi_LDFLAGS) AC_SUBST(glide_LDFLAGS) AC_SUBST(gnome_LDFLAGS) AC_SUBST(gtk_LDFLAGS) +AC_SUBST(http_LDFLAGS) AC_SUBST(idctaltivec_LDFLAGS) AC_SUBST(imdct_LDFLAGS) AC_SUBST(imdct3dn_LDFLAGS) AC_SUBST(imdctsse_LDFLAGS) AC_SUBST(ipv4_LDFLAGS) +AC_SUBST(ipv6_LDFLAGS) AC_SUBST(kde_LDFLAGS) AC_SUBST(lirc_LDFLAGS) AC_SUBST(macosx_LDFLAGS) @@ -1647,8 +1894,10 @@ AC_SUBST(mad_LDFLAGS) AC_SUBST(memcpyaltivec_LDFLAGS) AC_SUBST(motionaltivec_LDFLAGS) AC_SUBST(ncurses_LDFLAGS) +AC_SUBST(opie_LDFLAGS) AC_SUBST(qnx_LDFLAGS) AC_SUBST(qt_LDFLAGS) +AC_SUBST(qte_LDFLAGS) AC_SUBST(rc_LDFLAGS) AC_SUBST(sdl_LDFLAGS) AC_SUBST(vcd_LDFLAGS) @@ -1657,7 +1906,7 @@ AC_SUBST(waveout_LDFLAGS) AC_SUBST(x11_LDFLAGS) AC_SUBST(xvideo_LDFLAGS) -AC_OUTPUT([Makefile.opts po/Makefile.in]) +AC_OUTPUT([Makefile.config Makefile.opts po/Makefile.in]) echo " vlc configuration