dockapps/wmmixer/debian/patches/02_Makefile_optimization.patch

22 lines
439 B
Diff
Raw Normal View History

Description: This patch includes the optimization parameters for g++
Author: Sandro Tosi <matrixhasu@gmail.com>
Last-Update: 2007-10-08
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,14 @@
mandir = ${prefix}/share/man
2014-10-05 15:29:59 +00:00
CXX = g++
-CXXFLAGS = -O -Wall
+CXXFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CXXFLAGS += -O0
+else
+ CXXFLAGS += -O2
+endif
+
EXTRA_LIBS = -L/usr/X11R6/lib -lX11 -lXpm -lXext
2014-10-05 15:29:59 +00:00