i18n MISSING

added version files and strreplace.cc to xcode projects for pbd and midi++.


git-svn-id: svn://localhost/ardour2/trunk@1515 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Taybin Rutkin 2007-02-26 19:26:49 +00:00
parent 3f95dc7a08
commit a793f76fbe
8 changed files with 51 additions and 11 deletions

View file

@ -159,7 +159,7 @@ Editor::add_audio_region_to_region_display (boost::shared_ptr<AudioRegion> regio
} }
if (missing_source) { if (missing_source) {
str += " (MISSING)"; str += _(" (MISSING)");
} }
row[region_list_columns.name] = str; row[region_list_columns.name] = str;

View file

@ -471,11 +471,11 @@ PluginSelector::ladspa_display_selection_changed()
void void
PluginSelector::added_list_selection_changed() PluginSelector::added_list_selection_changed()
{ {
if (added_list.get_selection()->count_selected_rows() != 0) { if (added_list.get_selection()->count_selected_rows() != 0) {
btn_remove->set_sensitive (true); btn_remove->set_sensitive (true);
} else { } else {
btn_remove->set_sensitive (false); btn_remove->set_sensitive (false);
} }
} }
int int

View file

@ -39,6 +39,8 @@
69A0E0B00B8A3BEF00A24967 /* CoreMIDI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69A0E0AF0B8A3BEF00A24967 /* CoreMIDI.framework */; }; 69A0E0B00B8A3BEF00A24967 /* CoreMIDI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69A0E0AF0B8A3BEF00A24967 /* CoreMIDI.framework */; };
69A0E0B50B8A3C0B00A24967 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69A0E0B40B8A3C0B00A24967 /* CoreFoundation.framework */; }; 69A0E0B50B8A3C0B00A24967 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69A0E0B40B8A3C0B00A24967 /* CoreFoundation.framework */; };
69A0E0BA0B8A3C2000A24967 /* glibmm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69A0E0B90B8A3C2000A24967 /* glibmm.framework */; }; 69A0E0BA0B8A3C2000A24967 /* glibmm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69A0E0B90B8A3C2000A24967 /* glibmm.framework */; };
69C63C4C0B936ACF00BC0BCA /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69C63C4A0B936ACF00BC0BCA /* version.cc */; };
69C63C4D0B936ACF00BC0BCA /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C63C4B0B936ACF00BC0BCA /* version.h */; };
69D5F6010B8D55B100301E71 /* pbd.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69D5F6000B8D55A000301E71 /* pbd.framework */; }; 69D5F6010B8D55B100301E71 /* pbd.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69D5F6000B8D55A000301E71 /* pbd.framework */; };
8D07F2BE0486CC7A007CD1D0 /* midi++_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32BAE0B70371A74B00C91783 /* midi++_Prefix.pch */; settings = {ATTRIBUTES = (Public, ); }; }; 8D07F2BE0486CC7A007CD1D0 /* midi++_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32BAE0B70371A74B00C91783 /* midi++_Prefix.pch */; settings = {ATTRIBUTES = (Public, ); }; };
8D07F2C00486CC7A007CD1D0 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; }; 8D07F2C00486CC7A007CD1D0 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; };
@ -96,6 +98,8 @@
69A0E0AF0B8A3BEF00A24967 /* CoreMIDI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = /System/Library/Frameworks/CoreMIDI.framework; sourceTree = "<absolute>"; }; 69A0E0AF0B8A3BEF00A24967 /* CoreMIDI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = /System/Library/Frameworks/CoreMIDI.framework; sourceTree = "<absolute>"; };
69A0E0B40B8A3C0B00A24967 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; }; 69A0E0B40B8A3C0B00A24967 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
69A0E0B90B8A3C2000A24967 /* glibmm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = glibmm.framework; path = /Library/Frameworks/glibmm.framework; sourceTree = "<absolute>"; }; 69A0E0B90B8A3C2000A24967 /* glibmm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = glibmm.framework; path = /Library/Frameworks/glibmm.framework; sourceTree = "<absolute>"; };
69C63C4A0B936ACF00BC0BCA /* version.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = version.cc; sourceTree = "<group>"; };
69C63C4B0B936ACF00BC0BCA /* version.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
69D5F5FB0B8D55A000301E71 /* pbd.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = pbd.xcodeproj; path = ../../pbd/macosx/pbd.xcodeproj; sourceTree = SOURCE_ROOT; }; 69D5F5FB0B8D55A000301E71 /* pbd.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = pbd.xcodeproj; path = ../../pbd/macosx/pbd.xcodeproj; sourceTree = SOURCE_ROOT; };
8D07F2C70486CC7A007CD1D0 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; 8D07F2C70486CC7A007CD1D0 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8D07F2C80486CC7A007CD1D0 /* midi++.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = "midi++.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 8D07F2C80486CC7A007CD1D0 /* midi++.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = "midi++.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
@ -132,6 +136,8 @@
0867D691FE84028FC02AAC07 /* midi++ */ = { 0867D691FE84028FC02AAC07 /* midi++ */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
69C63C4A0B936ACF00BC0BCA /* version.cc */,
69C63C4B0B936ACF00BC0BCA /* version.h */,
08FB77ACFE841707C02AAC07 /* Source */, 08FB77ACFE841707C02AAC07 /* Source */,
089C1665FE841158C02AAC07 /* Resources */, 089C1665FE841158C02AAC07 /* Resources */,
0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */, 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */,
@ -221,6 +227,7 @@
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
69C63C4D0B936ACF00BC0BCA /* version.h in Headers */,
8D07F2BE0486CC7A007CD1D0 /* midi++_Prefix.pch in Headers */, 8D07F2BE0486CC7A007CD1D0 /* midi++_Prefix.pch in Headers */,
69A0E0800B8A3B1200A24967 /* channel.h in Headers */, 69A0E0800B8A3B1200A24967 /* channel.h in Headers */,
69A0E0810B8A3B1200A24967 /* coremidi_midiport.h in Headers */, 69A0E0810B8A3B1200A24967 /* coremidi_midiport.h in Headers */,
@ -267,7 +274,6 @@
0867D690FE84028FC02AAC07 /* Project object */ = { 0867D690FE84028FC02AAC07 /* Project object */ = {
isa = PBXProject; isa = PBXProject;
buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "midi++" */; buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "midi++" */;
compatibilityVersion = "Xcode 3.0";
hasScannedForEncodings = 1; hasScannedForEncodings = 1;
mainGroup = 0867D691FE84028FC02AAC07 /* midi++ */; mainGroup = 0867D691FE84028FC02AAC07 /* midi++ */;
productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */;
@ -279,7 +285,6 @@
}, },
); );
projectRoot = ""; projectRoot = "";
shouldCheckCompatibility = 1;
targets = ( targets = (
8D07F2BC0486CC7A007CD1D0 /* midi++ */, 8D07F2BC0486CC7A007CD1D0 /* midi++ */,
); );
@ -322,6 +327,7 @@
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
69C63C4C0B936ACF00BC0BCA /* version.cc in Sources */,
69A0E07A0B8A3B1200A24967 /* coremidi_midiport.cc in Sources */, 69A0E07A0B8A3B1200A24967 /* coremidi_midiport.cc in Sources */,
69A0E07B0B8A3B1200A24967 /* fd_midiport.cc in Sources */, 69A0E07B0B8A3B1200A24967 /* fd_midiport.cc in Sources */,
69A0E07C0B8A3B1200A24967 /* fifomidi.cc in Sources */, 69A0E07C0B8A3B1200A24967 /* fifomidi.cc in Sources */,

View file

@ -0,0 +1,3 @@
int midipp_major_version = 2;
int midipp_minor_version = 1;
int midipp_micro_version = 1;

View file

@ -0,0 +1,7 @@
#ifndef __midipp_version_h__
#define __midipp_version_h__
extern const char* midipp_revision;
extern int midipp_major_version;
extern int midipp_minor_version;
extern int midipp_micro_version;
#endif /* __midipp_version_h__ */

View file

@ -84,7 +84,11 @@
694120DB0B8A36CD00AF661E /* libgmodule-2.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 694120D70B8A36CD00AF661E /* libgmodule-2.0.dylib */; }; 694120DB0B8A36CD00AF661E /* libgmodule-2.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 694120D70B8A36CD00AF661E /* libgmodule-2.0.dylib */; };
694120DC0B8A36CD00AF661E /* libgobject-2.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 694120D80B8A36CD00AF661E /* libgobject-2.0.dylib */; }; 694120DC0B8A36CD00AF661E /* libgobject-2.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 694120D80B8A36CD00AF661E /* libgobject-2.0.dylib */; };
694120DD0B8A36CD00AF661E /* libgthread-2.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 694120D90B8A36CD00AF661E /* libgthread-2.0.dylib */; }; 694120DD0B8A36CD00AF661E /* libgthread-2.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 694120D90B8A36CD00AF661E /* libgthread-2.0.dylib */; };
8D07F2BE0486CC7A007CD1D0 /* pbd_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32BAE0B70371A74B00C91783 /* pbd_Prefix.pch */; settings = {ATTRIBUTES = (Public, ); }; }; 69C63C150B9369CB00BC0BCA /* strreplace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69C63C140B9369CB00BC0BCA /* strreplace.cc */; };
69C63C190B9369DE00BC0BCA /* replace_all.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C63C180B9369DE00BC0BCA /* replace_all.h */; settings = {ATTRIBUTES = (Public, ); }; };
69C63C2B0B936A6E00BC0BCA /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69C63C290B936A6E00BC0BCA /* version.cc */; };
69C63C2C0B936A6E00BC0BCA /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C63C2A0B936A6E00BC0BCA /* version.h */; settings = {ATTRIBUTES = (Public, ); }; };
8D07F2BE0486CC7A007CD1D0 /* pbd_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32BAE0B70371A74B00C91783 /* pbd_Prefix.pch */; settings = {ATTRIBUTES = (); }; };
8D07F2C00486CC7A007CD1D0 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; }; 8D07F2C00486CC7A007CD1D0 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C1666FE841158C02AAC07 /* InfoPlist.strings */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
@ -168,6 +172,10 @@
694120D70B8A36CD00AF661E /* libgmodule-2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libgmodule-2.0.dylib"; path = "/Library/Frameworks/GLib.framework/Versions/2.12.3/Libraries/libgmodule-2.0.dylib"; sourceTree = "<absolute>"; }; 694120D70B8A36CD00AF661E /* libgmodule-2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libgmodule-2.0.dylib"; path = "/Library/Frameworks/GLib.framework/Versions/2.12.3/Libraries/libgmodule-2.0.dylib"; sourceTree = "<absolute>"; };
694120D80B8A36CD00AF661E /* libgobject-2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libgobject-2.0.dylib"; path = "/Library/Frameworks/GLib.framework/Versions/2.12.3/Libraries/libgobject-2.0.dylib"; sourceTree = "<absolute>"; }; 694120D80B8A36CD00AF661E /* libgobject-2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libgobject-2.0.dylib"; path = "/Library/Frameworks/GLib.framework/Versions/2.12.3/Libraries/libgobject-2.0.dylib"; sourceTree = "<absolute>"; };
694120D90B8A36CD00AF661E /* libgthread-2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libgthread-2.0.dylib"; path = "/Library/Frameworks/GLib.framework/Versions/2.12.3/Libraries/libgthread-2.0.dylib"; sourceTree = "<absolute>"; }; 694120D90B8A36CD00AF661E /* libgthread-2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libgthread-2.0.dylib"; path = "/Library/Frameworks/GLib.framework/Versions/2.12.3/Libraries/libgthread-2.0.dylib"; sourceTree = "<absolute>"; };
69C63C140B9369CB00BC0BCA /* strreplace.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = strreplace.cc; path = ../strreplace.cc; sourceTree = SOURCE_ROOT; };
69C63C180B9369DE00BC0BCA /* replace_all.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = replace_all.h; sourceTree = "<group>"; };
69C63C290B936A6E00BC0BCA /* version.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = version.cc; sourceTree = "<group>"; };
69C63C2A0B936A6E00BC0BCA /* version.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
8D07F2C70486CC7A007CD1D0 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; 8D07F2C70486CC7A007CD1D0 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8D07F2C80486CC7A007CD1D0 /* pbd.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = pbd.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8D07F2C80486CC7A007CD1D0 /* pbd.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = pbd.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */ /* End PBXFileReference section */
@ -201,6 +209,8 @@
0867D691FE84028FC02AAC07 /* pbd */ = { 0867D691FE84028FC02AAC07 /* pbd */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
69C63C290B936A6E00BC0BCA /* version.cc */,
69C63C2A0B936A6E00BC0BCA /* version.h */,
08FB77ACFE841707C02AAC07 /* Source */, 08FB77ACFE841707C02AAC07 /* Source */,
089C1665FE841158C02AAC07 /* Resources */, 089C1665FE841158C02AAC07 /* Resources */,
0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */, 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */,
@ -235,6 +245,7 @@
08FB77ACFE841707C02AAC07 /* Source */ = { 08FB77ACFE841707C02AAC07 /* Source */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
69C63C140B9369CB00BC0BCA /* strreplace.cc */,
694120270B8A34AB00AF661E /* base_ui.cc */, 694120270B8A34AB00AF661E /* base_ui.cc */,
694120280B8A34AB00AF661E /* basename.cc */, 694120280B8A34AB00AF661E /* basename.cc */,
694120290B8A34AB00AF661E /* command.cc */, 694120290B8A34AB00AF661E /* command.cc */,
@ -270,6 +281,7 @@
694120360B8A34AB00AF661E /* pbd */ = { 694120360B8A34AB00AF661E /* pbd */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
69C63C180B9369DE00BC0BCA /* replace_all.h */,
694120380B8A34AB00AF661E /* abstract_ui.cc */, 694120380B8A34AB00AF661E /* abstract_ui.cc */,
694120390B8A34AB00AF661E /* abstract_ui.h */, 694120390B8A34AB00AF661E /* abstract_ui.h */,
6941203A0B8A34AB00AF661E /* base_ui.h */, 6941203A0B8A34AB00AF661E /* base_ui.h */,
@ -326,6 +338,8 @@
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
69C63C2C0B936A6E00BC0BCA /* version.h in Headers */,
69C63C190B9369DE00BC0BCA /* replace_all.h in Headers */,
8D07F2BE0486CC7A007CD1D0 /* pbd_Prefix.pch in Headers */, 8D07F2BE0486CC7A007CD1D0 /* pbd_Prefix.pch in Headers */,
6941207F0B8A34AB00AF661E /* abstract_ui.cc in Headers */, 6941207F0B8A34AB00AF661E /* abstract_ui.cc in Headers */,
694120780B8A34AB00AF661E /* gettext.h in Headers */, 694120780B8A34AB00AF661E /* gettext.h in Headers */,
@ -405,13 +419,11 @@
0867D690FE84028FC02AAC07 /* Project object */ = { 0867D690FE84028FC02AAC07 /* Project object */ = {
isa = PBXProject; isa = PBXProject;
buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "pbd" */; buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "pbd" */;
compatibilityVersion = "Xcode 3.0";
hasScannedForEncodings = 1; hasScannedForEncodings = 1;
mainGroup = 0867D691FE84028FC02AAC07 /* pbd */; mainGroup = 0867D691FE84028FC02AAC07 /* pbd */;
productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */;
projectDirPath = ""; projectDirPath = "";
projectRoot = ""; projectRoot = "";
shouldCheckCompatibility = 1;
targets = ( targets = (
8D07F2BC0486CC7A007CD1D0 /* pbd */, 8D07F2BC0486CC7A007CD1D0 /* pbd */,
); );
@ -444,7 +456,9 @@
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
69C63C2B0B936A6E00BC0BCA /* version.cc in Sources */,
6941206F0B8A34AB00AF661E /* base_ui.cc in Sources */, 6941206F0B8A34AB00AF661E /* base_ui.cc in Sources */,
69C63C150B9369CB00BC0BCA /* strreplace.cc in Sources */,
694120700B8A34AB00AF661E /* basename.cc in Sources */, 694120700B8A34AB00AF661E /* basename.cc in Sources */,
694120710B8A34AB00AF661E /* command.cc in Sources */, 694120710B8A34AB00AF661E /* command.cc in Sources */,
694120720B8A34AB00AF661E /* controllable.cc in Sources */, 694120720B8A34AB00AF661E /* controllable.cc in Sources */,

View file

@ -0,0 +1,3 @@
int libpbd_major_version = 4;
int libpbd_minor_version = 1;
int libpbd_micro_version = 0;

View file

@ -0,0 +1,7 @@
#ifndef __libpbd_version_h__
#define __libpbd_version_h__
extern const char* libpbd_revision;
extern int libpbd_major_version;
extern int libpbd_minor_version;
extern int libpbd_micro_version;
#endif /* __libpbd_version_h__ */