author | kergoth <kergoth> | 2002-11-06 07:19:29 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-06 07:19:29 (UTC) |
commit | 6e56bf9fbc047c51ffa8a9a7760d78dbe2e3cdef (patch) (unidiff) | |
tree | 453feb2aed7f5a3b28b7488cbfb8330b96d1b7d3 | |
parent | b914ee28517e2be6b27a48e6d9fb9734c99d6e24 (diff) | |
download | opie-6e56bf9fbc047c51ffa8a9a7760d78dbe2e3cdef.zip opie-6e56bf9fbc047c51ffa8a9a7760d78dbe2e3cdef.tar.gz opie-6e56bf9fbc047c51ffa8a9a7760d78dbe2e3cdef.tar.bz2 |
Removed ifs within the sources line, qmake doesnt like that at -all- .. need to find a workaround to pass .pro changes based on config system..
-rw-r--r-- | core/multimedia/opieplayer/libmad/libmad.pro | 4 | ||||
-rw-r--r-- | core/multimedia/opieplayer/libmpeg3/libmpeg3.pro | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmad.pro b/core/multimedia/opieplayer/libmad/libmad.pro index 976b626..999d1ed 100644 --- a/core/multimedia/opieplayer/libmad/libmad.pro +++ b/core/multimedia/opieplayer/libmad/libmad.pro | |||
@@ -1,32 +1,30 @@ | |||
1 | QMAKE_CFLAGS += $(if $(CONFIG_TARGET_X86),-DFPM_INTEL) \ | 1 | QMAKE_CFLAGS += $(if $(CONFIG_TARGET_X86),-DFPM_INTEL) \ |
2 | $(if $(CONFIG_TARGET_IPAQ),-DFPM_ARM) \ | 2 | $(if $(CONFIG_TARGET_IPAQ),-DFPM_ARM) \ |
3 | $(if $(CONFIG_TARGET_SHARP),-DFPM_ARM) | 3 | $(if $(CONFIG_TARGET_SHARP),-DFPM_ARM) |
4 | TEMPLATE = lib | 4 | TEMPLATE = lib |
5 | CONFIG += qt warn_on release | 5 | CONFIG += qt warn_on release |
6 | HEADERS = libmad_version.h fixed.h bit.h timer.h stream.h frame.h synth.h decoder.h \ | 6 | HEADERS = libmad_version.h fixed.h bit.h timer.h stream.h frame.h synth.h decoder.h \ |
7 | layer12.h layer3.h huffman.h libmad_global.h mad.h libmadplugin.h libmadpluginimpl.h | 7 | layer12.h layer3.h huffman.h libmad_global.h mad.h libmadplugin.h libmadpluginimpl.h |
8 | SOURCES = $(if $(CONFIG_TARGET_IPAQ),idmt_arm.S) \ | 8 | SOURCES = version.c fixed.c bit.c timer.c stream.c frame.c synth.c decoder.c \ |
9 | $(if $(CONFIG_TARGET_SHARP),idmt_arm.S) \ | ||
10 | version.c fixed.c bit.c timer.c stream.c frame.c synth.c decoder.c \ | ||
11 | layer12.c layer3.c huffman.c libmadplugin.cpp libmadpluginimpl.cpp | 9 | layer12.c layer3.c huffman.c libmadplugin.cpp libmadpluginimpl.cpp |
12 | TARGET = madplugin | 10 | TARGET = madplugin |
13 | DESTDIR = $(OPIEDIR)/plugins/codecs | 11 | DESTDIR = $(OPIEDIR)/plugins/codecs |
14 | INCLUDEPATH += $(OPIEDIR)/include .. | 12 | INCLUDEPATH += $(OPIEDIR)/include .. |
15 | DEPENDPATH += ../$(OPIEDIR)/include .. | 13 | DEPENDPATH += ../$(OPIEDIR)/include .. |
16 | LIBS += -lqpe -lm | 14 | LIBS += -lqpe -lm |
17 | VERSION = 1.0.0 | 15 | VERSION = 1.0.0 |
18 | 16 | ||
19 | TRANSLATIONS = ../../../../i18n/de/libmadplugin.ts \ | 17 | TRANSLATIONS = ../../../../i18n/de/libmadplugin.ts \ |
20 | ../../../../i18n/en/libmadplugin.ts \ | 18 | ../../../../i18n/en/libmadplugin.ts \ |
21 | ../../../../i18n/es/libmadplugin.ts \ | 19 | ../../../../i18n/es/libmadplugin.ts \ |
22 | ../../../../i18n/fr/libmadplugin.ts \ | 20 | ../../../../i18n/fr/libmadplugin.ts \ |
23 | ../../../../i18n/hu/libmadplugin.ts \ | 21 | ../../../../i18n/hu/libmadplugin.ts \ |
24 | ../../../../i18n/ja/libmadplugin.ts \ | 22 | ../../../../i18n/ja/libmadplugin.ts \ |
25 | ../../../../i18n/ko/libmadplugin.ts \ | 23 | ../../../../i18n/ko/libmadplugin.ts \ |
26 | ../../../../i18n/no/libmadplugin.ts \ | 24 | ../../../../i18n/no/libmadplugin.ts \ |
27 | ../../../../i18n/pl/libmadplugin.ts \ | 25 | ../../../../i18n/pl/libmadplugin.ts \ |
28 | ../../../../i18n/pt/libmadplugin.ts \ | 26 | ../../../../i18n/pt/libmadplugin.ts \ |
29 | ../../../../i18n/pt_BR/libmadplugin.ts \ | 27 | ../../../../i18n/pt_BR/libmadplugin.ts \ |
30 | ../../../../i18n/sl/libmadplugin.ts \ | 28 | ../../../../i18n/sl/libmadplugin.ts \ |
31 | ../../../../i18n/zh_CN/libmadplugin.ts \ | 29 | ../../../../i18n/zh_CN/libmadplugin.ts \ |
32 | ../../../../i18n/zh_TW/libmadplugin.ts | 30 | ../../../../i18n/zh_TW/libmadplugin.ts |
diff --git a/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro b/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro index 586bb1c..338fe29 100644 --- a/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro +++ b/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro | |||
@@ -1,62 +1,62 @@ | |||
1 | QMAKE_CFLAGS += $(if $(CONFIG_TARGET_X86),-DHAVE_MMX -DHAVE_CSS) \ | 1 | QMAKE_CFLAGS += $(if $(CONFIG_TARGET_X86),-DHAVE_MMX -DHAVE_CSS) \ |
2 | $(if $(CONFIG_TARGET_IPAQ),-DUSE_FIXED_POINT) \ | 2 | $(if $(CONFIG_TARGET_IPAQ),-DUSE_FIXED_POINT) \ |
3 | $(if $(CONFIG_TARGET_SHARP),-DUSE_FIXED_POINT) | 3 | $(if $(CONFIG_TARGET_SHARP),-DUSE_FIXED_POINT) |
4 | QMAKE_CC = $(CXX) | 4 | QMAKE_CC = $(CXX) |
5 | TEMPLATE = lib | 5 | TEMPLATE = lib |
6 | CONFIG += qt warn_on release | 6 | CONFIG += qt warn_on release |
7 | HEADERS = libmpeg3plugin.h libmpeg3pluginimpl.h | 7 | HEADERS = libmpeg3plugin.h libmpeg3pluginimpl.h |
8 | SOURCES = $(if $(CONFIG_TARGET_X86),video/mmxidct.S video/reconmmx.s) libmpeg3plugin.cpp libmpeg3pluginimpl.cpp \ | 8 | SOURCES = libmpeg3plugin.cpp libmpeg3pluginimpl.cpp \ |
9 | bitstream.c \ | 9 | bitstream.c \ |
10 | libmpeg3.c \ | 10 | libmpeg3.c \ |
11 | mpeg3atrack.c \ | 11 | mpeg3atrack.c \ |
12 | mpeg3css.c \ | 12 | mpeg3css.c \ |
13 | mpeg3demux.c \ | 13 | mpeg3demux.c \ |
14 | mpeg3io.c \ | 14 | mpeg3io.c \ |
15 | mpeg3title.c \ | 15 | mpeg3title.c \ |
16 | mpeg3vtrack.c \ | 16 | mpeg3vtrack.c \ |
17 | audio/ac3.c \ | 17 | audio/ac3.c \ |
18 | audio/bit_allocation.c \ | 18 | audio/bit_allocation.c \ |
19 | audio/dct.c \ | 19 | audio/dct.c \ |
20 | audio/exponents.c \ | 20 | audio/exponents.c \ |
21 | audio/header.c \ | 21 | audio/header.c \ |
22 | audio/layer2.c \ | 22 | audio/layer2.c \ |
23 | audio/layer3.c \ | 23 | audio/layer3.c \ |
24 | audio/mantissa.c \ | 24 | audio/mantissa.c \ |
25 | audio/mpeg3audio.c \ | 25 | audio/mpeg3audio.c \ |
26 | audio/pcm.c \ | 26 | audio/pcm.c \ |
27 | audio/synthesizers.c \ | 27 | audio/synthesizers.c \ |
28 | audio/tables.c \ | 28 | audio/tables.c \ |
29 | video/getpicture.c \ | 29 | video/getpicture.c \ |
30 | video/headers.c \ | 30 | video/headers.c \ |
31 | video/idct.c \ | 31 | video/idct.c \ |
32 | video/macroblocks.c \ | 32 | video/macroblocks.c \ |
33 | video/mmxtest.c \ | 33 | video/mmxtest.c \ |
34 | video/motion.c \ | 34 | video/motion.c \ |
35 | video/mpeg3video.c \ | 35 | video/mpeg3video.c \ |
36 | video/output.c \ | 36 | video/output.c \ |
37 | video/reconstruct.c \ | 37 | video/reconstruct.c \ |
38 | video/seek.c \ | 38 | video/seek.c \ |
39 | video/slice.c \ | 39 | video/slice.c \ |
40 | video/vlc.c | 40 | video/vlc.c |
41 | TARGET = mpeg3plugin | 41 | TARGET = mpeg3plugin |
42 | TMAKE_CC=$(CXX) | 42 | TMAKE_CC=$(CXX) |
43 | DESTDIR = $(OPIEDIR)/plugins/codecs | 43 | DESTDIR = $(OPIEDIR)/plugins/codecs |
44 | INCLUDEPATH += $(OPIEDIR)/include .. | 44 | INCLUDEPATH += $(OPIEDIR)/include .. |
45 | DEPENDPATH += ../$(OPIEDIR)/include .. | 45 | DEPENDPATH += ../$(OPIEDIR)/include .. |
46 | LIBS += -lqpe -lpthread -lm | 46 | LIBS += -lqpe -lpthread -lm |
47 | VERSION = 1.0.0 | 47 | VERSION = 1.0.0 |
48 | 48 | ||
49 | TRANSLATIONS = ../../../../i18n/de/libmpeg3plugin.ts \ | 49 | TRANSLATIONS = ../../../../i18n/de/libmpeg3plugin.ts \ |
50 | ../../../../i18n/en/libmpeg3plugin.ts \ | 50 | ../../../../i18n/en/libmpeg3plugin.ts \ |
51 | ../../../../i18n/es/libmpeg3plugin.ts \ | 51 | ../../../../i18n/es/libmpeg3plugin.ts \ |
52 | ../../../../i18n/fr/libmpeg3plugin.ts \ | 52 | ../../../../i18n/fr/libmpeg3plugin.ts \ |
53 | ../../../../i18n/hu/libmpeg3plugin.ts \ | 53 | ../../../../i18n/hu/libmpeg3plugin.ts \ |
54 | ../../../../i18n/ja/libmpeg3plugin.ts \ | 54 | ../../../../i18n/ja/libmpeg3plugin.ts \ |
55 | ../../../../i18n/ko/libmpeg3plugin.ts \ | 55 | ../../../../i18n/ko/libmpeg3plugin.ts \ |
56 | ../../../../i18n/no/libmpeg3plugin.ts \ | 56 | ../../../../i18n/no/libmpeg3plugin.ts \ |
57 | ../../../../i18n/pl/libmpeg3plugin.ts \ | 57 | ../../../../i18n/pl/libmpeg3plugin.ts \ |
58 | ../../../../i18n/pt/libmpeg3plugin.ts \ | 58 | ../../../../i18n/pt/libmpeg3plugin.ts \ |
59 | ../../../../i18n/pt_BR/libmpeg3plugin.ts \ | 59 | ../../../../i18n/pt_BR/libmpeg3plugin.ts \ |
60 | ../../../../i18n/sl/libmpeg3plugin.ts \ | 60 | ../../../../i18n/sl/libmpeg3plugin.ts \ |
61 | ../../../../i18n/zh_CN/libmpeg3plugin.ts \ | 61 | ../../../../i18n/zh_CN/libmpeg3plugin.ts \ |
62 | ../../../../i18n/zh_TW/libmpeg3plugin.ts | 62 | ../../../../i18n/zh_TW/libmpeg3plugin.ts |