diff options
author | Jo Shields <jms@destiny> | 2010-09-19 20:47:07 +0100 |
---|---|---|
committer | Jo Shields <jms@destiny> | 2010-09-19 20:47:07 +0100 |
commit | 4247b7e6e67ab79cea4f5b80566ab1e8def6f6f2 (patch) | |
tree | 37793aba80fc8180b56e789f0836ad37d0ee48af /bindings/mono/app-indicator.sources.xml | |
parent | b598108bd71748ab0dc7088a36835864f5f96e22 (diff) | |
download | libayatana-appindicator-4247b7e6e67ab79cea4f5b80566ab1e8def6f6f2.tar.gz libayatana-appindicator-4247b7e6e67ab79cea4f5b80566ab1e8def6f6f2.tar.bz2 libayatana-appindicator-4247b7e6e67ab79cea4f5b80566ab1e8def6f6f2.zip |
The purpose of a dllmap is to turn a DllImport for "foo" into a dlopen of "bar". This is most commonly used to make apps more cross-platform, by specifying the Windows library name (foo.dll) into a Linux/OSX/etc filename (libfoo.so.0).
indicator-application has been binding directly to libappindicator.so.0, which means multiple places to update if the SONAME changes, and makes it less portable - this commit fixes this.
Diffstat (limited to 'bindings/mono/app-indicator.sources.xml')
-rw-r--r-- | bindings/mono/app-indicator.sources.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/mono/app-indicator.sources.xml b/bindings/mono/app-indicator.sources.xml index 97faadf..6cf28e9 100644 --- a/bindings/mono/app-indicator.sources.xml +++ b/bindings/mono/app-indicator.sources.xml @@ -1,6 +1,6 @@ <gapi-parser-input> <api filename="libappindicator-api.raw"> - <library name="libappindicator.so.0"> + <library name="appindicator.dll"> <namespace name="AppIndicator"> <file>app-indicator.c</file> <file>../../src/app-indicator-enum-types.c</file> |