~ubuntu-branches/ubuntu/hoary/orbit2/hoary

« back to all changes in this revision

Viewing changes to src/orb/orb-core/orbit-typelib.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-02-06 12:48:25 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050206124825-gatccsi77chbn92e
Tags: 1:2.12.1-0ubuntu1
* New upstream release.
* debian/patches/100-compile-name-server.patch:
  - updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
222
222
        if ((path = g_getenv ("ORBIT_TYPELIB_PATH"))) {
223
223
                char **strv;
224
224
 
225
 
                strv = g_strsplit (path, ":", -1);
 
225
                strv = g_strsplit (path, G_SEARCHPATH_SEPARATOR_S, -1);
226
226
                for (i = 0; strv && strv [i]; i++)
227
227
                        add_if_unique (paths, strv [i], FALSE);
228
228
                g_strfreev (strv);
231
231
        if ((path = g_getenv ("GNOME2_PATH"))) {
232
232
                char **strv;
233
233
 
234
 
                strv = g_strsplit (path, ":", -1);
 
234
                strv = g_strsplit (path, G_SEARCHPATH_SEPARATOR_S, -1);
235
235
                for (i = 0; strv && strv [i]; i++)
236
236
                        add_if_unique (paths, strv [i], TRUE);
237
237
                g_strfreev (strv);