mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 04:39:33 +01:00
tweaked panner appearance and consistency, panner line now distinct color from triangles. shift-click now reverts panner to center, left or right depending on number of channels. minor updates to osx app build script. fixed region editor re-show problem.
git-svn-id: svn://localhost/ardour2/trunk@1253 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
34a813c1a1
commit
4fa71e154f
8 changed files with 95 additions and 63 deletions
|
|
@ -102,14 +102,16 @@ end
|
|||
Dir.chdir(odir)
|
||||
|
||||
# copy ardour.bin to bindir/ardour
|
||||
$stdout.print("Copying bin to #{bindir} ...\n");
|
||||
|
||||
|
||||
if File.exist?("../../gtk2_ardour/ardour.bin") then
|
||||
$stdout.print("Copying bin to #{bindir} ...\n");
|
||||
`cp ../../gtk2_ardour/ardour.bin #{bindir}/ardour`
|
||||
end
|
||||
|
||||
`cp ../../libs/surfaces/*/*.dylib #{libdir}/surfaces`
|
||||
# remove the basenames from libdir that are in surfaces (copied earlier)
|
||||
`rm -f #{libdir}/surfaces/libardour_cp.dylib`
|
||||
begin
|
||||
Dir.foreach(libdir+"/surfaces") {|x| unless ( x[0] == 46 or x.include?("libardour_cp")) then File.delete(libdir + "/" +x) end}
|
||||
rescue
|
||||
|
|
@ -174,6 +176,7 @@ end
|
|||
if File.exist?(ppc_libdir) and File.exist?(i386_libdir) then
|
||||
$stdout.print("\nBoth platforms in place, lipo'ing...\n");
|
||||
`rm -rf lib/*`
|
||||
`rm -f bin/ardour`
|
||||
lipo_platforms_recurse(ppc_libdir, i386_libdir, "lib")
|
||||
lipo_platforms_recurse(i386_libdir, ppc_libdir, "lib")
|
||||
lipo_platforms_recurse(i386_bindir+'/ardour', ppc_bindir+'/ardour', "bin/ardour")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue