blob: 17eb4ec871a0d8adb8419d1d5880369607a533b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
diff -ur work/quicktime4linux-2.0.0/Makefile work.new/quicktime4linux-2.0.0/Makefile
--- work/quicktime4linux-2.0.0/Makefile 2003-08-09 18:11:59.000000000 -0400
+++ work.new/quicktime4linux-2.0.0/Makefile 2003-10-02 04:36:06.296870072 -0400
@@ -9,11 +9,7 @@
endif
-ifeq ($(origin CFLAGS), environment)
HAVE_CFLAGS := y
-else
-HAVE_CFLAGS := n
-endif
#ENCORE_DIR := encore2/src
#DECORE_DIR := decore2/src
@@ -21,7 +17,8 @@
DECORE_DIR := decore50
ENCORE_INCLUDE := $(ENCORE_DIR)/encore.h
DECORE_INCLUDE := $(DECORE_DIR)/decore.h
-MPEG3_DIR := $(shell expr ../libmpeg3* )
+MPEG3_DIR := /usr/include/libmpeg3
+LAME_DIR := /usr/include/lame
OBJS :=
@@ -54,11 +51,11 @@
-include Makefile.jpeg
-include Makefile.vorbis
-include Makefile.ffmpeg
-include Makefile.lame
-include Makefile.dv
+#include Makefile.jpeg
+#include Makefile.vorbis
+#include Makefile.ffmpeg
+#include Makefile.lame
+#include Makefile.dv
include Makefile.encore50
@@ -67,12 +64,13 @@
#CFLAGS += -g
+CFLAGS = $(MYCFLAGS)
CFLAGS += -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
CFLAGS += -DHAVE_FIREWIRE
CFLAGS += -I. \
- -I$(JPEG_DIR) \
+ -I/usr/include/ffmpeg \
-I$(MPEG3_DIR) \
- -I$(LAME_DIR)/include \
+ -I$(LAME_DIR) \
$(shell glib-config --cflags)
@@ -227,7 +225,9 @@
$(OBJDIR)/$(ENCORE_DIR)/mbtransquant/intel_mmx
-LIBS := $(OUTPUT) $(MPEG3_DIR)/$(OBJDIR)/libmpeg3.a -lpng -lz -lpthread -lglib -ldl -lm
+LIBS := $(OUTPUT) \
+ -logg -lmpeg3 -lmp3lame -ldv -ljpeg -lvorbis -lvorbisenc -lavcodec -a52 \
+ -lpng -lz -lpthread -lglib -ldl -lm
$(shell if ! test -d $(OBJDIR) \; then mkdir -p $(DIRS) \; fi )
Only in work.new/quicktime4linux-2.0.0: Makefile.orig
Only in work/quicktime4linux-2.0.0: i686
Only in work/quicktime4linux-2.0.0: jpeg
|