OSDN Git Service

bump libtheora to official 1.1 release
[handbrake-jp/handbrake-jp-git.git] / contrib / ffmpeg / A04-disable-depend.patch
1 diff -Naur ffmpeg-r19067.orig/common.mak ffmpeg-r19067/common.mak
2 --- ffmpeg-r19067.orig/common.mak       2009-05-29 07:56:54.000000000 -0400
3 +++ ffmpeg-r19067/common.mak    2009-06-23 20:36:58.000000000 -0400
4 @@ -29,17 +29,6 @@
5  %.ho: %.h
6         $(CC) $(CFLAGS) $(LIBOBJFLAGS) -Wno-unused -c -o $@ -x c $<
7  
8 -%.d: %.c
9 -       $(DEPEND_CMD) > $@
10 -
11 -%.d: %.S
12 -       $(DEPEND_CMD) > $@
13 -
14 -%.d: %.cpp
15 -       $(DEPEND_CMD) > $@
16 -
17 -%.o: %.d
18 -
19  %$(EXESUF): %.c
20  
21  SVN_ENTRIES = $(SRC_PATH_BARE)/.svn/entries
22 @@ -76,11 +65,6 @@
23  ALLHEADERS := $(subst $(SRC_DIR)/,$(SUBDIR),$(wildcard $(SRC_DIR)/*.h $(SRC_DIR)/$(ARCH)/*.h))
24  checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.ho))
25  
26 -DEPS := $(OBJS:.o=.d)
27 -depend dep: $(DEPS)
28 -
29  CLEANSUFFIXES     = *.o *~ *.ho *.map
30  DISTCLEANSUFFIXES = *.d *.pc
31  LIBSUFFIXES       = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp
32 -
33 --include $(DEPS)