the master branch(20140609) broken on osx10.9

6df3d4747b8bf733d426df883fb9fd201b149736

Sorry, due to my network connection, I can not access issue tracker.

The following is the output:

canvasview.cpp:3045:7: warning: unused variable 'starttime' [-Wunused-variable]
        Time starttime = get_canvas()->rend_desc().get_time_start();
             ^
canvasview.cpp:3890:24: error: use of undeclared identifier 'get_jack_offset';
      did you mean 'Glib::DateTime::get_utc_offset'?
        prev->set_jack_offset(get_jack_offset());
                              ^~~~~~~~~~~~~~~
                              Glib::DateTime::get_utc_offset
/opt/local/include/glibmm-2.4/glibmm/datetime.h:614:12: note:
      'Glib::DateTime::get_utc_offset' declared here
  TimeSpan get_utc_offset() const;
           ^
canvasview.cpp:3890:24: error: call to non-static member function without an
      object argument
        prev->set_jack_offset(get_jack_offset());
                              ^~~~~~~~~~~~~~~

after change the code of line 3890 to

prev->set_jack_offset(work_area->get_jack_offset());

it works. but now a similar issue raises:

preview.cpp:1383:26: error: use of undeclared identifier 'on_jack_sync'
        if (get_jack_enabled()) on_jack_sync();
                                ^

any tips?

I can run my custom in house build script successfully and have not error compiling…
I’m building revision fbf895e232eba8d09612a125c661d2c5c34ca1b0
Maybe it is simply because I don’t have jack installed and so all the jack compilation is ignored?
-G

I am using the fork of your build script :smiley:

I don’t have JACK installed on my OSX as well. After update my port, problem still here.

fixed in new gtk-3 branch :laughing:

Hi!
The problem comes from the missing #ifdef statements for JACK feature. The commit 6df3d47 is broken, but the issue was fixed later. The latest master (referenced by Genete - fbf895 ) should work fine.
Sorry for troubles. :slight_smile:

K.