Browse Source

Correct install target

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1414 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.62
sletz 19 years ago
parent
commit
e04b4f2c10
2 changed files with 2 additions and 3 deletions
  1. +0
    -1
      linux/Makefile
  2. +2
    -2
      linux/alsa/JackAlsaDriver.cpp

+ 0
- 1
linux/Makefile View File

@@ -109,7 +109,6 @@ install:
cp libjackdmp.so $(prefix)/lib
install -d $(prefix)/lib/jackmp/
cp jack_alsa.so $(prefix)/lib/jackmp
cp jack_freebob.so $(prefix)/lib/jackmp
cp jack_dummy.so $(prefix)/lib/jackmp
[ -f jack_freebob.so ] && cp jack_freebob.so $(prefix)/lib/jackmp || echo "freebob driver not installed"
cd $(prefix)/lib && [ -f libjack.so.0.0.23 ] && mv -f libjack.so.0.0.23 tmp_libjack.so.0.0.23 || echo "Jack not found, continue..."


+ 2
- 2
linux/alsa/JackAlsaDriver.cpp View File

@@ -2215,8 +2215,8 @@ int JackAlsaDriver::Read()
JackLog("ALSA XRun \n");
//NotifyXRun(jack_get_microseconds());
NotifyXRun(fLastWaitUst);
//return 0;
return -1;
return 0;
//return -1;
}

//fLastWaitUst = GetMicroSeconds(); // Take callback date here


Loading…
Cancel
Save