summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-07-19 16:37:49 -0400
committerJohn Palmieri <johnp@remedyz.boston.redhat.com>2006-07-19 16:37:49 -0400
commite3ce1c8deb73c3537baf40b239dbad1407dce2c0 (patch)
treeb52b2228482ed8c21601ea1a9a8dbf2083729a4d
parent966cf977e6dcaa659128eef3d44c470d91652575 (diff)
- Minor library versioning fixesHEADmaster
-rw-r--r--configure.in5
-rw-r--r--mono/AssemblyInfo.cs.in2
-rw-r--r--mono/dbus-sharp.dll.config.in4
3 files changed, 8 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index ba06b8e..7e6393f 100644
--- a/configure.in
+++ b/configure.in
@@ -15,6 +15,11 @@ ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
## must come before we use the $USE_MAINTAINER_MODE variable later
AM_MAINTAINER_MODE
+DBUS_LT_CURRENT=3
+DBUS_GLIB_LT_CURRENT=2
+AC_SUBST(DBUS_LT_CURRENT)
+AC_SUBST(DBUS_GLIB_LT_CURRENT)
+
AC_PROG_CC
AC_PROG_CXX
AC_ISC_POSIX
diff --git a/mono/AssemblyInfo.cs.in b/mono/AssemblyInfo.cs.in
index ae23189..996b11c 100644
--- a/mono/AssemblyInfo.cs.in
+++ b/mono/AssemblyInfo.cs.in
@@ -1,6 +1,6 @@
using System.Reflection;
using System.Runtime.CompilerServices;
-[assembly:AssemblyVersion("@VERSION@")]
+[assembly:AssemblyVersion("0.60")]
[assembly:AssemblyDelaySign(false)]
[assembly:AssemblyKeyFile("@srcdir@/dbus-sharp.snk")]
diff --git a/mono/dbus-sharp.dll.config.in b/mono/dbus-sharp.dll.config.in
index 2c6d570..84127cf 100644
--- a/mono/dbus-sharp.dll.config.in
+++ b/mono/dbus-sharp.dll.config.in
@@ -1,4 +1,4 @@
<configuration>
- <dllmap dll="dbus-1" target="libdbus-1@LIB_PREFIX@.@LT_CURRENT@@LIB_SUFFIX@"/>
- <dllmap dll="dbus-glib-1" target="libdbus-glib-1@LIB_PREFIX@.@LT_CURRENT@@LIB_SUFFIX@"/>
+ <dllmap dll="dbus-1" target="libdbus-1@LIB_PREFIX@.@DBUS_LT_CURRENT@@LIB_SUFFIX@"/>
+ <dllmap dll="dbus-glib-1" target="libdbus-glib-1@LIB_PREFIX@.@DBUS_GLIB_LT_CURRENT@@LIB_SUFFIX@"/>
</configuration>