OSDN Git Service

LinGui: fix me_method/me_range dependency
[handbrake-jp/handbrake-jp-git.git] / libhb / Jamfile
index 7bfb57e..364e17f 100644 (file)
@@ -7,11 +7,11 @@
 SubDir TOP libhb : hbversion.h ;
 
 LIBHB_SRC =
-ipodutil.cpp common.c hb.c ports.c scan.c work.c decmpeg2.c encavcodec.c update.c
+common.c hb.c ports.c scan.c work.c decmpeg2.c encavcodec.c update.c
 demuxmpeg.c fifo.c render.c reader.c muxcommon.c muxmp4.c sync.c stream.c
 decsub.c deca52.c decdca.c encfaac.c declpcm.c encx264.c decavcodec.c encxvid.c
 muxavi.c enclame.c muxogm.c encvorbis.c dvd.c muxmkv.c deblock.c deinterlace.c 
-denoise.c detelecine.c decomb.c lang.c enctheora.c ;
+denoise.c detelecine.c decomb.c lang.c enctheora.c decmetadata.c ;
 
 Library libhb : $(LIBHB_SRC) ;
 
@@ -27,8 +27,14 @@ rule HBVersion
 }
 actions HBVersion
 {
-    echo "#ifndef HB_BUILD\n#define HB_BUILD $(HB_BUILD)\n#endif" > $(TOP)/libhb/$(1)
-    echo "#ifndef HB_VERSION\n#define HB_VERSION \"$(HB_VERSION)\"\n#endif" >> $(TOP)/libhb/$(1)
-    echo "#ifndef HB_APPCAST_URL\n#define APPCAST_URL \"$(APPCAST_URL)\"\n#endif" >> $(TOP)/libhb/$(1)
+    echo "#ifndef HB_BUILD" > $(TOP)/libhb/$(1)
+    echo "#define HB_BUILD $(HB_BUILD)" >> $(TOP)/libhb/$(1)
+    echo "#endif" >> $(TOP)/libhb/$(1)
+    echo "#ifndef HB_VERSION" >> $(TOP)/libhb/$(1)
+    echo "#define HB_VERSION \"$(HB_VERSION)\"" >> $(TOP)/libhb/$(1)
+    echo "#endif" >> $(TOP)/libhb/$(1)
+    echo "#ifndef HB_APPCAST_URL" >> $(TOP)/libhb/$(1)
+    echo "#define APPCAST_URL \"$(APPCAST_URL)\"" >> $(TOP)/libhb/$(1)
+    echo "#endif" >> $(TOP)/libhb/$(1)
 }
 HBVersion hbversion.h ;