On Wed, 2016-06-22 at 16:29 +0200, Jaromír Mikeš wrote: > 2016-06-22 14:49 GMT+02:00 James Cowgill <[email protected]>: > > On Tue, 2016-06-21 at 22:42 +0200, Jaromír Mikeš wrote: > > > Hi, > > > > > > can someone review rtmidi package please? [...] > > The build system clobbers CXXFLAGS. Line 81 of configure.ac seems > > to be the culprit. > > I've tried fix passing flags on this line in configure.ac file, but > it still doesn't work :(
I think it works if you reenable the line which is commented out so that $cxxflag is appended to CXXFLAGS instead of replacing it. Something like this: --- a/configure.ac +++ b/configure.ac @@ -77,8 +77,7 @@ fi CPPFLAGS="$CPPFLAGS $cppflag" # For debugging and optimization ... overwrite default because it has both -g and -O2 -#CXXFLAGS="$CXXFLAGS $cxxflag" -CXXFLAGS="$cxxflag" +CXXFLAGS="$CXXFLAGS $cxxflag" # Check compiler and use -Wall if gnu. if [test $GXX = "yes" ;] then James
signature.asc
Description: This is a digitally signed message part
_______________________________________________ pkg-multimedia-maintainers mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
