[geany/geany] 1ab9ea: Use the .dylib extension when loading VTE on OS X
Jiří Techet
git-noreply at xxxxx
Tue Feb 10 14:58:01 UTC 2015
Branch: refs/heads/master
Author: Jiří Techet <techet at gmail.com>
Committer: Jiří Techet <techet at gmail.com>
Date: Tue, 10 Feb 2015 14:58:01 UTC
Commit: 1ab9eac7047d60e89345694134626fcd1f3a67ac
https://github.com/geany/geany/commit/1ab9eac7047d60e89345694134626fcd1f3a67ac
Log Message:
-----------
Use the .dylib extension when loading VTE on OS X
Modified Paths:
--------------
src/vte.c
Modified: src/vte.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -206,9 +206,9 @@ void vte_init(void)
gint i;
const gchar *sonames[] = {
#if GTK_CHECK_VERSION(3, 0, 0)
- "libvte2_90.so", "libvte2_90.so.9",
+ "libvte2_90.so", "libvte2_90.so.9", "libvte2_90.dylib",
#else
- "libvte.so", "libvte.so.4", "libvte.so.8", "libvte.so.9",
+ "libvte.so", "libvte.so.4", "libvte.so.8", "libvte.so.9", "libvte.dylib",
#endif
NULL
};
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list