fix the cairo-fletcher-fluctuation
[ardour.git] / libs / surfaces / control_protocol / wscript
index 235c6c06cba224f518c1af4db9533c26aed518c1..b3fcf236e4ebccfe61a60b4eb86b49ca11e30d56 100644 (file)
@@ -2,13 +2,6 @@
 from waflib.extras import autowaf as autowaf
 import os
 
-# Library version (UNIX style major, minor, micro)
-# major increment <=> incompatible changes
-# minor increment <=> compatible changes (additions)
-# micro increment <=> no interface changes
-APPNAME = 'libardour_cp'
-LIBARDOUR_CP_LIB_VERSION = '4.1.0'
-
 # Mandatory variables
 top = '.'
 out = 'build'
@@ -28,9 +21,7 @@ def build(bld):
     if bld.is_defined ('INTERNAL_SHARED_LIBS'):
         obj              = bld.shlib(features = 'c cxx cshlib cxxshlib', source=controlcp_sources)
         # defines for this library
-        obj.defines      = [ 'LIBCONTROLCP_DLL_EXPORTS=1' ]
-        obj.cxxflags     = [ '-fvisibility=hidden' ]
-        obj.cflags       = [ '-fvisibility=hidden' ]
+        obj.defines      = [ 'LIBCONTROLCP_DLL_EXPORTS' ]
     else:
         obj              = bld.stlib(features = 'c cxx cstlib cxxstlib', source=controlcp_sources)
         obj.cxxflags     = [ '-fPIC' ]
@@ -42,8 +33,7 @@ def build(bld):
     obj.name         = 'libardour_cp'
     obj.target       = 'ardourcp'
     obj.use          = 'libardour'
-    obj.vnum         = LIBARDOUR_CP_LIB_VERSION
-    obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
+    obj.install_path = bld.env['LIBDIR']
 
 def shutdown():
     autowaf.shutdown()