diff --git a/SConstruct b/SConstruct index 86f121024c..35a67d1879 100644 --- a/SConstruct +++ b/SConstruct @@ -1056,6 +1056,8 @@ if env['SYSLIBS']: libraries['pangomm'].ParseConfig ('pkg-config --cflags --libs pangomm-1.4') libraries['libgnomecanvasmm'] = LibraryInfo() libraries['libgnomecanvasmm'].ParseConfig ('pkg-config --cflags --libs libgnomecanvasmm-2.6') + libraries['taglib'] = LibraryInfo() + libraries['taglib'].ParseConfig ('pkg-config --cflags --libs taglib') # libraries['libglademm'] = LibraryInfo() # libraries['libglademm'].ParseConfig ('pkg-config --cflags --libs libglademm-2.4') @@ -1073,10 +1075,6 @@ if env['SYSLIBS']: libraries['sndfile'] = LibraryInfo() libraries['sndfile'].ParseConfig ('pkg-config --cflags --libs sndfile') - libraries['taglib'] = LibraryInfo(LIBS='libtaglib', - LIBPATH='#libs/taglib', - CPPPATH=['#libs/taglib/headers','#libs/taglib/headers/taglib']) - coredirs = [ 'templates', 'manual' diff --git a/libs/ardour/ardour/automation_event.h b/libs/ardour/ardour/automation_event.h index 18190aa9b6..4362b9c867 100644 --- a/libs/ardour/ardour/automation_event.h +++ b/libs/ardour/ardour/automation_event.h @@ -139,11 +139,11 @@ class AutomationList : public PBD::StatefulDestructible void set_automation_state (AutoState); AutoState automation_state() const { return _state; } - sigc::signal automation_style_changed; + sigc::signal automation_state_changed; void set_automation_style (AutoStyle m); AutoStyle automation_style() const { return _style; } - sigc::signal automation_state_changed; + sigc::signal automation_style_changed; bool automation_playback() const { return (_state & Play) || ((_state & Touch) && !_touching); diff --git a/libs/ardour/ardour/parameter.h b/libs/ardour/ardour/parameter.h index b86174aa0a..a5dd9cdca9 100644 --- a/libs/ardour/ardour/parameter.h +++ b/libs/ardour/ardour/parameter.h @@ -98,7 +98,6 @@ public: * * */ - inline bool operator<(const Parameter& id) const { #ifndef NDEBUG if (_type == NullAutomation)