diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-02-27 07:12:54 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-02-27 07:12:54 +0800 |
commit | ccfe6ed9b8073268f24d39e9c9fd525b95ee3dbb (patch) | |
tree | 3d1355fa1eb1c66bf1ff5e9722e810e927f34c6c | |
parent | ff504597d02ef62e92611a10930d9c68edbde75b (diff) | |
download | freebsd-ports-gnome-ccfe6ed9b8073268f24d39e9c9fd525b95ee3dbb.tar.gz freebsd-ports-gnome-ccfe6ed9b8073268f24d39e9c9fd525b95ee3dbb.tar.zst freebsd-ports-gnome-ccfe6ed9b8073268f24d39e9c9fd525b95ee3dbb.zip |
Remove LD_LIBRARY_PATH bandaid for Nautilus - it was moved over into Nautilus
code.
-rw-r--r-- | x11/gnomecore/Makefile | 1 | ||||
-rw-r--r-- | x11/gnomecore/files/patch-gsm::ice.c | 21 |
2 files changed, 1 insertions, 21 deletions
diff --git a/x11/gnomecore/Makefile b/x11/gnomecore/Makefile index b35b18b0b1a8..3fdecc134363 100644 --- a/x11/gnomecore/Makefile +++ b/x11/gnomecore/Makefile @@ -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 diff --git a/x11/gnomecore/files/patch-gsm::ice.c b/x11/gnomecore/files/patch-gsm::ice.c deleted file mode 100644 index 03fd13c3a660..000000000000 --- a/x11/gnomecore/files/patch-gsm::ice.c +++ /dev/null @@ -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 */ - } |