Skip to content

Commit fa7076c

Browse files
committed
fixed makefiles (damn kdevelop)
git-svn-id: http://svn.xiph.org/trunk/speex@14026 0101bb08-14d6-0310-b084-bc0e0c8e3800
1 parent 5c4dea4 commit fa7076c

File tree

3 files changed

+37
-40
lines changed

3 files changed

+37
-40
lines changed

Speex.kdevelop

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
<ignoreparts/>
1010
<projectdirectory>.</projectdirectory>
1111
<absoluteprojectpath>false</absoluteprojectpath>
12-
<description></description>
12+
<description/>
1313
<secondaryLanguages/>
1414
<versioncontrol>kdevsubversion</versioncontrol>
15-
<defaultencoding></defaultencoding>
15+
<defaultencoding/>
1616
<projectname>Speex</projectname>
1717
</general>
1818
<kdevautoproject>
1919
<general>
2020
<activetarget>libspeex/libspeex.la</activetarget>
21-
<useconfiguration>fixed</useconfiguration>
21+
<useconfiguration>float</useconfiguration>
2222
</general>
2323
<run>
2424
<mainprogram>src/Speex</mainprogram>
@@ -40,14 +40,14 @@
4040
<cflags>-O2 -g -Wall</cflags>
4141
<envvars/>
4242
<configargs>--disable-shared</configargs>
43-
<topsourcedir></topsourcedir>
44-
<cppflags></cppflags>
45-
<ldflags></ldflags>
46-
<ccompilerbinary></ccompilerbinary>
47-
<cxxcompilerbinary></cxxcompilerbinary>
48-
<f77compilerbinary></f77compilerbinary>
49-
<cxxflags></cxxflags>
50-
<f77flags></f77flags>
43+
<topsourcedir/>
44+
<cppflags/>
45+
<ldflags/>
46+
<ccompilerbinary/>
47+
<cxxcompilerbinary/>
48+
<f77compilerbinary/>
49+
<cxxflags/>
50+
<f77flags/>
5151
</float>
5252
<fixed>
5353
<configargs>--enable-fixed-point --disable-shared</configargs>
@@ -57,14 +57,14 @@
5757
<f77compiler>kdevpgf77options</f77compiler>
5858
<cflags>-O2 -g -Wall</cflags>
5959
<envvars/>
60-
<topsourcedir></topsourcedir>
61-
<cppflags></cppflags>
62-
<ldflags></ldflags>
63-
<ccompilerbinary></ccompilerbinary>
64-
<cxxcompilerbinary></cxxcompilerbinary>
65-
<f77compilerbinary></f77compilerbinary>
66-
<cxxflags></cxxflags>
67-
<f77flags></f77flags>
60+
<topsourcedir/>
61+
<cppflags/>
62+
<ldflags/>
63+
<ccompilerbinary/>
64+
<cxxcompilerbinary/>
65+
<f77compilerbinary/>
66+
<cxxflags/>
67+
<f77flags/>
6868
</fixed>
6969
<default>
7070
<envvars/>
@@ -87,10 +87,10 @@
8787
<general>
8888
<dbgshell>libtool</dbgshell>
8989
<programargs/>
90-
<gdbpath></gdbpath>
91-
<configGdbScript></configGdbScript>
92-
<runShellScript></runShellScript>
93-
<runGdbScript></runGdbScript>
90+
<gdbpath/>
91+
<configGdbScript/>
92+
<runShellScript/>
93+
<runGdbScript/>
9494
<breakonloadinglibs>true</breakonloadinglibs>
9595
<separatetty>false</separatetty>
9696
<floatingtoolbar>false</floatingtoolbar>
@@ -136,6 +136,8 @@
136136
<usePermanentCaching>true</usePermanentCaching>
137137
<alwaysIncludeNamespaces>true</alwaysIncludeNamespaces>
138138
<includePaths>.;</includePaths>
139+
<parseMissingHeadersExperimental>false</parseMissingHeadersExperimental>
140+
<resolveIncludePathsUsingMakeExperimental>false</resolveIncludePathsUsingMakeExperimental>
139141
</codecompletion>
140142
<qt>
141143
<used>false</used>
@@ -148,7 +150,7 @@
148150
<designerpluginpaths/>
149151
</qt>
150152
<creategettersetter>
151-
<prefixGet></prefixGet>
153+
<prefixGet/>
152154
<prefixSet>set</prefixSet>
153155
<prefixVariable>m_,_</prefixVariable>
154156
<parameterName>theValue</parameterName>

include/speex/Makefile.am

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@
33

44
nodist_pkginclude_HEADERS = speex_config_types.h
55

6-
pkginclude_HEADERS = speex.h \
7-
speex_types.h \
8-
speex_bits.h \
9-
speex_header.h \
10-
speex_callbacks.h \
11-
speex_stereo.h \
12-
speex_preprocess.h \
13-
speex_jitter.h \
14-
speex_echo.h \
15-
speex_resampler.h
6+
pkginclude_HEADERS = speex.h speex_bits.h speex_buffer.h speex_callbacks.h \
7+
speex_echo.h speex_header.h speex_jitter.h speex_preprocess.h speex_resampler.h \
8+
speex_stereo.h speex_types.h
169

libspeex/Makefile.am

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir) @
99
lib_LTLIBRARIES = libspeex.la libspeexdsp.la
1010

1111
# Sources for compilation in the library
12-
libspeex_la_SOURCES = nb_celp.c sb_celp.c lpc.c ltp.c lsp.c quant_lsp.c \
13-
lsp_tables_nb.c gain_table.c gain_table_lbr.c cb_search.c filters.c bits.c \
14-
modes.c speex.c vq.c high_lsp_tables.c vbr.c hexc_table.c \
15-
exc_5_256_table.c exc_5_64_table.c exc_8_128_table.c exc_10_32_table.c \
16-
exc_10_16_table.c exc_20_32_table.c hexc_10_32_table.c speex_header.c \
17-
speex_callbacks.c stereo.c window.c
12+
libspeex_la_SOURCES = bits.c cb_search.c exc_10_32_table.c exc_20_32_table.c \
13+
exc_5_64_table.c exc_8_128_table.c filters.c gain_table.c gain_table_lbr.c \
14+
hexc_10_32_table.c hexc_table.c high_lsp_tables.c lbr_48k_tables.c lpc.c lsp.c ltp.c \
15+
mdf.c preprocess.c quant_lsp.c sb_celp.c smallft.c speex.c \
16+
speex_header.c stereo.c vbr.c vq.c _kiss_fft_guts.h buffer.c exc_10_16_table.c \
17+
exc_5_256_table.c fftwrap.c filterbank.c jitter.c kiss_fft.c kiss_fft.h kiss_fftr.c \
18+
kiss_fftr.h lsp_tables_nb.c modes.c nb_celp.c resample.c speex_callbacks.c \
19+
vorbis_psy.c window.c
1820

1921
libspeexdsp_la_SOURCES = preprocess.c smallft.c lbr_48k_tables.c \
2022
jitter.c mdf.c fftwrap.c kiss_fft.c _kiss_fft_guts.h kiss_fft.h \

0 commit comments

Comments
 (0)