Nico Sabbi wrote:
Ulion wrote:
Hello,
There's a little bug in libdvdnav/Makefile prevent from compiling minilib, here's fix:
Index: libdvdnav/Makefile =================================================================== --- libdvdnav/Makefile (revision 955) +++ libdvdnav/Makefile (working copy) @@ -21,7 +21,7 @@ CFLAGS += -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE CFLAGS += -DHAVE_CONFIG_H -DHAVE_DLFCN_H
-ifeq ($(DVDREAD),internal) +ifeq ($(DVDREAD),"internal") L=libdvdnav VPATH+= $(SRC_PATH_BARE)/src/dvdread HEADERS += src/dvdread/dvd_reader.h \
ok to commit (if someone is online)
I verified that in ffmpeg's and mplayer's Makefiles there's no such requirement: all iferq statements are without quotations. Can you post the output of the broken make and the details of your build tools?