Ticket #36670: vte.c.sonames.diff

File vte.c.sonames.diff, 1.4 KB (added by koochy@…, 12 years ago)

Update files/vte.c.sonames.diff

  • src/vte.c

    old new  
    199199        if (module == NULL)
    200200        {
    201201                gint i;
    202                 const gchar *sonames[] = {  "libvte.so", "libvte.so.4",
    203                                                                         "libvte.so.8", "libvte.so.9", NULL };
     202                const gchar *sonames[] = {  "libvte.dylib", "libvte.4.dylib",
     203                                                                        "libvte.8.dylib", "libvte.9.dylib", NULL };
    204204
    205205                for (i = 0; sonames[i] != NULL && module == NULL; i++)
    206206                {
     
    211211        if (module == NULL)
    212212        {
    213213                vte_info.have_vte = FALSE;
    214                 geany_debug("Could not load libvte.so, embedded terminal support disabled");
     214                geany_debug("Could not load libvte.dylib, embedded terminal support disabled");
    215215                return;
    216216        }
    217217        else
  • src/main.c

    old new  
    139139        { "no-session", 's', G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &cl_options.load_session, N_("Don't load the previous session's files"), NULL },
    140140#ifdef HAVE_VTE
    141141        { "no-terminal", 't', 0, G_OPTION_ARG_NONE, &no_vte, N_("Don't load terminal support"), NULL },
    142         { "vte-lib", 0, 0, G_OPTION_ARG_FILENAME, &lib_vte, N_("Filename of libvte.so"), NULL },
     142        { "vte-lib", 0, 0, G_OPTION_ARG_FILENAME, &lib_vte, N_("Filename of libvte.dylib"), NULL },
    143143#endif
    144144        { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose_mode, N_("Be verbose"), NULL },
    145145        { "version", 'V', 0, G_OPTION_ARG_NONE, &show_version, N_("Show version and exit"), NULL },