Commit c3064219 authored by Gildas Bazin's avatar Gildas Bazin

* Makefile.am: fixed build problem.

parent 7dd8cdfd
...@@ -417,15 +417,15 @@ bin_PROGRAMS = vlc ...@@ -417,15 +417,15 @@ bin_PROGRAMS = vlc
vlc_SOURCES = src/vlc.c vlc_SOURCES = src/vlc.c
vlc_LDFLAGS = `$(VLC_CONFIG) --libs vlc builtin`
vlc_LDADD = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl)
vlc_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
# Work around a bug in the arm-wince-pe linker # Work around a bug in the arm-wince-pe linker
if HAVE_WINCE if HAVE_WINCE
vlc_LDFLAGS += lib/libvlc.a vlc_WORKAROUNDLDFLAGS = lib/libvlc.a
endif endif
vlc_LDFLAGS = `$(VLC_CONFIG) --libs vlc builtin` $(vlc_WORKAROUNDLDFLAGS)
vlc_LDADD = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl)
vlc_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
# We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an # We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an
# old automake-1.5 bug (automake/279). # old automake-1.5 bug (automake/279).
DEPENDENCIES_vlc = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl) DEPENDENCIES_vlc = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl)
......
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