Remove LD_LIBRARY_PATH bandaid for Nautilus - it was moved over into Nautilus

code.
This commit is contained in:
Maxim Sobolev 2002-02-26 23:12:54 +00:00
parent 604a94998e
commit f11850c2eb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=55287
2 changed files with 1 additions and 21 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= gnomecore
PORTVERSION= 1.4.0.6
PORTREVISION= 1
CATEGORIES?= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnome-core

View File

@ -1,21 +0,0 @@
$FreeBSD$
--- gsm/ice.c.orig Fri Oct 26 12:13:22 2001
+++ gsm/ice.c Tue Jan 22 16:28:18 2002
@@ -343,6 +343,15 @@
p = g_strconcat (ENVNAME "=", ids, NULL);
putenv (p);
+
+ /* XXX: hack for embedded Mozilla */
+ p = getenv ("LD_LIBRARY_PATH");
+ if (p == NULL)
+ p = "";
+ else
+ p = g_strconcat (p, ":", NULL);
+ p = g_strconcat (p, X11BASE "/lib/mozilla", ":", X11BASE "/lib/mozilla-embedded", NULL);
+ setenv ("LD_LIBRARY_PATH", p, 1);
ice_depth = 0; /* We are live */
}