diff options
author | Marc-André Lureau <marc-andre.lureau@nokia.com> | 2009-08-04 18:37:34 +0300 |
---|---|---|
committer | Marc-André Lureau <marc-andre.lureau@nokia.com> | 2009-08-04 18:39:09 +0300 |
commit | c6bd8c18af685b357839b533e409d1072c377a3a (patch) | |
tree | 089386f960044797c52e013dbdd6f764f9fd940e | |
parent | 66f0e842a7bd8f60af0cd9d890a2f9a253bb31ee (diff) |
debian: set NDEBUG, remove asserts
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 9c89a6180..32e2cffa9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pulseaudio (0.9.15-1maemo23) unstable; urgency=low + + * Remove pa_assert(). Fixes: NB#118688 + + -- Maemo Multimedia <multimedia@maemo.org> Tue, 04 Aug 2009 18:35:54 +0300 + pulseaudio (0.9.15-1maemo22) unstable; urgency=low * Make sure volume is updated after mixer change. Fixes: XX#130685 diff --git a/debian/rules b/debian/rules index cef0534d1..5858f8364 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/rules/patchsys-quilt.mk LDFLAGS = -CFLAGS = -Wall -g -DNOKIA=1 -DDEBUG_VOLUME=1 +CFLAGS = -Wall -g -DNOKIA=1 -DDEBUG_VOLUME=1 -DNDEBUG=1 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 -rdynamic -fno-omit-frame-pointer -mapcs-frame |