Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > c761dbf38912d6ff825f45fb892fa04f > files > 10

wedit-0.9.8-3mdk.i586.rpm

Wedit port for Linux, version ALPHA
===================================

This release of Wedit is for internal use only. It is NOT a release
distribution.


REQUIREMENTS

* gcc
* glib, gtk (at least version 1.1.x). If you have stock Linux distribution,
  make sure you have development packages of gtk and glib installed 

 
HOW TO COMPILE

To compile and install from an unpacked wedit-xxx.tar.gz, type

	./configure
	make
	make install
	
You can also compile a debug version. In this case, make sure that you have
Dmalloc memory debugging library (http://www.dmalloc.com) correctly set up.
Then go to src directory and issue command 	

	make -f Makefile.debug

To compile and install from a CVS download

	1) "checkout" the whole project wedit into clean directory
	2) Run ./autogen.sh
	3) Run make
	4) As root, run make install
	
TESTING

Current list of working features is in the FEATURES file. If you find a bug,
please direct your bug report to edtcz@qss.cz with following information:

* Description of your system
* How to reproduce the bug
* Backtrace output of gdb (if possible)  


TROUBLESHOOTING

P: Compiler/Linker  complains about symbols/files not found that start with
   gtk, gdk, or letter g
S: Gtk/Glib development environment is not properly installed. Try running
   command 'gtk-config' and verify that include and library flags are
   correct. Otherwise, get new gtk/glib version from www.gtk.org
   
P: Linker complains about dmalloc library not found.
S: Get and install Dmalloc library (www.dmalloc.com)

P: Gtk & Dmalloc successfully installed, but still cannot compile debug
   version
S: Although Gtk natively supports Dmalloc library and uses it when USE_DMALLOC
   is defined, there are some versions of Gtk/Dmalloc that do not work
   together.
   Go to Makefile, and remove -DUSE_DMALLOC and -ldmalloc
   
P: After running debug version, Glib gives error about not being able to 
   allocate memory and program stops.
S: Initialize dmalloc library prior to running program, ie:
	dmalloc -l logfile -i 1000 runtime
	
P: Program doesn't seem to work
S: Look at the FEATURES file for the list of supported features

P: I've found bug / Program crashed
S: Please send bug report to edtcz@qss.cz. Include gdb backtrace log if
   possible.