Browse Source

Juergen Sawinski <george@mpimf-heidelberg.mpg.de>:

-link libraries (nss etal.) into /usr/lib so other
 packages can use it (e.g. evolution)


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1802 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Juergen "George" Sawinski 21 years ago
parent
commit
e215125083
2 changed files with 6 additions and 2 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +5
    -2
      package/x11/mozilla/mozilla.conf

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -6,6 +6,7 @@
- fixed auctex's priority - fixed auctex's priority
- Sebastian Czech: updated pcmcia-cs - Sebastian Czech: updated pcmcia-cs
- Juergen Sawinski: fixed python related gnome24 build problems - Juergen Sawinski: fixed python related gnome24 build problems
fixed mozilla to create more library sym-links
*) 2003-11-17 (2.0.0-rc2 - 2.0.0-rc3) *) 2003-11-17 (2.0.0-rc2 - 2.0.0-rc3)

+ 5
- 2
package/x11/mozilla/mozilla.conf

@ -77,8 +77,11 @@ EOP
export MOZILLA_FIVE_HOME=$root/usr/lib/mozilla-$ver export MOZILLA_FIVE_HOME=$root/usr/lib/mozilla-$ver
EOT EOT
echo "Creating /usr/lib/libnspr4.so symlink ..."
cd $root/usr/lib ; ln -sf mozilla-$ver/libnspr4.so .
echo "Creating library symlinks ..."
cd $root/usr/lib ;
for i in ldap50 nspr5 nss4 plc4 plds4 prlda50 smime3 softokn4 ssl3; do
ln -sf mozilla-$ver/lib${i}.so .
done
} }
# from time to time the tarball does include .CVS directories, and a cleanup # from time to time the tarball does include .CVS directories, and a cleanup

Loading…
Cancel
Save