mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 14:15:46 +01:00
fix build error on linux (caused by OS X-related changes)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2852 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
94fb67c00d
commit
d1c0815e49
1 changed files with 3 additions and 1 deletions
|
|
@ -854,6 +854,8 @@ EngineControl::find_jack_servers (vector<string>& strings)
|
|||
}
|
||||
return;
|
||||
}
|
||||
#else
|
||||
string path;
|
||||
#endif
|
||||
|
||||
PathScanner scanner;
|
||||
|
|
@ -862,7 +864,7 @@ EngineControl::find_jack_servers (vector<string>& strings)
|
|||
|
||||
path = getenv ("PATH");
|
||||
|
||||
jack_servers = scanner(path, jack_server_filter, 0, false, true);
|
||||
jack_servers = scanner (path, jack_server_filter, 0, false, true);
|
||||
|
||||
vector<string *>::iterator iter;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue