fix for c++11 for linux build (the correct way is to use CONFIG, not QMAKE_CXXFLAGS)
This commit is contained in:
parent
d1146bb722
commit
5e62699518
2 changed files with 12 additions and 7 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,5 +1,14 @@
|
||||||
|
|
||||||
|
|
||||||
|
TODO server list split on query
|
||||||
|
|
||||||
|
TODO WIP support internationalization
|
||||||
|
|
||||||
|
TODO implement panning for channels (Ticket #52, #145)
|
||||||
|
|
||||||
|
TODO show mute state of others
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +19,7 @@
|
||||||
|
|
||||||
- for CoreAudio and 4 channel input, support mixing channels 1&2 with 3&4
|
- for CoreAudio and 4 channel input, support mixing channels 1&2 with 3&4
|
||||||
|
|
||||||
- added bassoon/oboe/harp instrument icons created by dszgit;
|
- added bassoon/oboe/harp instrument icons created by dszgit,
|
||||||
congas/bongo created by bspeer (Ticket #131)
|
congas/bongo created by bspeer (Ticket #131)
|
||||||
|
|
||||||
- link to docs from application Help menu (Ticket #90)
|
- link to docs from application Help menu (Ticket #90)
|
||||||
|
@ -30,14 +39,10 @@
|
||||||
|
|
||||||
- bug fix: better handling of disconnect message in the client
|
- bug fix: better handling of disconnect message in the client
|
||||||
|
|
||||||
|
- note: Jamulus is no longer compatible to Qt4
|
||||||
|
|
||||||
TODO check if Tickets #130, #168 are really solved by code from pljones
|
|
||||||
|
|
||||||
TODO WIP support internationalization
|
|
||||||
|
|
||||||
TODO implement panning for channels (Ticket #52, #145)
|
|
||||||
|
|
||||||
TODO show mute state of others
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -262,7 +262,7 @@ DISTFILES_OBOE += libs/oboe/AUTHORS \
|
||||||
|
|
||||||
} else:unix {
|
} else:unix {
|
||||||
# we want to compile with C++11
|
# we want to compile with C++11
|
||||||
QMAKE_CXXFLAGS += -std=c++11
|
CONFIG += c++11
|
||||||
|
|
||||||
# we assume to have lrintf() one moderately modern linux distributions
|
# we assume to have lrintf() one moderately modern linux distributions
|
||||||
# would be better to have that tested, though
|
# would be better to have that tested, though
|
||||||
|
|
Loading…
Reference in a new issue