mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-15 15:49:36 +02:00
Fix build for Debian Stable
This commit is contained in:
parent
df6a7c5464
commit
dad346ec23
@ -1101,7 +1101,7 @@ libaudacity_la_SOURCES = \
|
|||||||
xml/XMLTagHandler.h \
|
xml/XMLTagHandler.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
audacity_CPPFLAGS = -Wno-deprecated-declarations \
|
audacity_CPPFLAGS = -std=c++11 -Wno-deprecated-declarations \
|
||||||
-D__STDC_CONSTANT_MACROS -DLIBDIR=\"$(libdir)\" \
|
-D__STDC_CONSTANT_MACROS -DLIBDIR=\"$(libdir)\" \
|
||||||
$(EXPAT_CFLAGS) $(FILEDIALOG_CFLAGS) $(PORTAUDIO_CFLAGS) \
|
$(EXPAT_CFLAGS) $(FILEDIALOG_CFLAGS) $(PORTAUDIO_CFLAGS) \
|
||||||
$(PORTMIXER_CFLAGS) $(SNDFILE_CFLAGS) $(SOXR_CFLAGS) \
|
$(PORTMIXER_CFLAGS) $(SNDFILE_CFLAGS) $(SOXR_CFLAGS) \
|
||||||
|
@ -763,7 +763,7 @@ void Mixer::Reposition(double t)
|
|||||||
|
|
||||||
void Mixer::SetTimesAndSpeed(double t0, double t1, double speed)
|
void Mixer::SetTimesAndSpeed(double t0, double t1, double speed)
|
||||||
{
|
{
|
||||||
wxASSERT(isfinite(speed));
|
wxASSERT(std::isfinite(speed));
|
||||||
mT0 = t0;
|
mT0 = t0;
|
||||||
mT1 = t1;
|
mT1 = t1;
|
||||||
mSpeed = fabs(speed);
|
mSpeed = fabs(speed);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user