Move system_exec from gtk2_ardour/ to libs/pbd/

This commit is contained in:
Colin Fletcher 2013-10-07 21:16:42 +01:00
parent 2a93f7a25e
commit 070bb7a8ab
7 changed files with 5 additions and 5 deletions

View file

@ -122,7 +122,7 @@ typedef uint64_t microseconds_t;
#include "video_server_dialog.h" #include "video_server_dialog.h"
#include "add_video_dialog.h" #include "add_video_dialog.h"
#include "transcode_video_dialog.h" #include "transcode_video_dialog.h"
#include "system_exec.h" #include "pbd/system_exec.h"
#include "i18n.h" #include "i18n.h"

View file

@ -22,7 +22,7 @@
#include <string> #include <string>
#include "ardour/types.h" #include "ardour/types.h"
#include "system_exec.h" #include "pbd/system_exec.h"
/** @class TranscodeFfmpeg /** @class TranscodeFfmpeg

View file

@ -26,7 +26,7 @@
#include "ardour/types.h" #include "ardour/types.h"
#include "ardour/session.h" #include "ardour/session.h"
#include "ardour/session_handle.h" #include "ardour/session_handle.h"
#include "system_exec.h" #include "pbd/system_exec.h"
namespace ARDOUR { namespace ARDOUR {
class Session; class Session;

View file

@ -246,7 +246,6 @@ gtk2_ardour_sources = [
'add_video_dialog.cc', 'add_video_dialog.cc',
'editor_videotimeline.cc', 'editor_videotimeline.cc',
'video_timeline.cc', 'video_timeline.cc',
'system_exec.cc',
'video_monitor.cc', 'video_monitor.cc',
'transcode_ffmpeg.cc', 'transcode_ffmpeg.cc',
'transcode_video_dialog.cc', 'transcode_video_dialog.cc',

View file

@ -40,7 +40,7 @@
#endif #endif
#include "system_exec.h" #include "pbd/system_exec.h"
using namespace std; using namespace std;
void * interposer_thread (void *arg); void * interposer_thread (void *arg);

View file

@ -71,6 +71,7 @@ libpbd_sources = [
'stateful.cc', 'stateful.cc',
'strreplace.cc', 'strreplace.cc',
'strsplit.cc', 'strsplit.cc',
'system_exec.cc',
'textreceiver.cc', 'textreceiver.cc',
'transmitter.cc', 'transmitter.cc',
'undo.cc', 'undo.cc',