Advertisement
Guest User

bad mc installation

a guest
Oct 1st, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. so instead of just using apt-get install mc i tried to install mc manually and it asked for glib..
  2. so I tried to install glib and it asked for more stuff so this is how I installed it:
  3.  
  4. wget http://ftp.gnu.org/pub/gnu/gettext/gettext-0.18.1.1.tar.gz
  5. tar -zxvf gettext-0.18.1.1.tar.gz
  6. cd gettext-0.18.1.1
  7. ./configure --prefix=/usr
  8. make install
  9.  
  10. wget http://freedesktop.org/Software/pkgconfig/releases/pkgconfig-0.15.0.tar.gz
  11. or
  12. http://pkgconfig.freedesktop.org/releases/pkg-config-0.27.tar.gz
  13.  
  14. tar -zxvf pkg-config-0.27.tar.gz
  15. cd pkg-config-0.27
  16. ./configure --with-internal-glib
  17. make install
  18.  
  19. export PKG_CONFIG_PATH=/usr/share/pkgconfig
  20.  
  21. wget http://ftp.gnu.org/gnu/libtool/libtool-1.4.2.tar.gz
  22. tar -zxvf libtool-1.4.2.tar.gz
  23. cd libtool-1.4.2
  24. ./configure
  25. make install
  26.  
  27. export LD_LIBRARY_PATH=/usr/local/lib/
  28.  
  29. wget http://ftp.gnome.org/pub/GNOME/sources/glib/2.0/glib-2.0.7.tar.gz
  30. tar -zxvf glib-2.0.7.tar.gz
  31. cd glib-2.0.7
  32. ./configure --libdir /lib
  33. make install
  34.  
  35.  
  36. wget http://www.midnight-commander.org/downloads/mc-4.7.5.2.tar.gz
  37.  
  38. tar -zxvf mc-4.7.5.2.tar.gz
  39. cd mc-4.7.5.2
  40. ./configure --libdir /lib
  41. make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement