Commit c44a14d8 authored by Sam Hocevar's avatar Sam Hocevar

* Do not build examples/decode_mpeg on Win32.

parent d64243d8
...@@ -23,7 +23,11 @@ case x"${target_os}" in ...@@ -23,7 +23,11 @@ case x"${target_os}" in
xdarwin*) xdarwin*)
CFLAGS="${CFLAGS} -no-cpp-precomp" CFLAGS="${CFLAGS} -no-cpp-precomp"
;; ;;
*mingw32* | *cygwin* | *wince* | *mingwce* | *pe*)
HAVE_WIN32=yes
;;
esac esac
AM_CONDITIONAL(HAVE_WIN32, test "${HAVE_WIN32}" = "yes")
dnl --enable-debug dnl --enable-debug
AC_ARG_ENABLE(debug, AC_ARG_ENABLE(debug,
......
## Process this file with automake to produce Makefile.in ## Process this file with automake to produce Makefile.in
noinst_PROGRAMS = decode_pat decode_pmt decode_sdt decode_mpeg noinst_PROGRAMS = decode_pat decode_pmt decode_sdt
if !HAVE_WIN32
noinst_PROGRAMS += decode_mpeg
endif
decode_pat_SOURCES = decode_pat.c decode_pat_SOURCES = decode_pat.c
decode_pat_LDFLAGS = -L../src -ldvbpsi decode_pat_LDFLAGS = -L../src -ldvbpsi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment