Hi,
I tried to uncomment the following lines in mozilla/editor/base/Makefile,
MOZ_BUILD_PLAINTEXT_EDITOR_CORE_ONLY=1
thanks to Joe Francis's post (Jan 29, 2001).
With the above modification, an embedding browser (such as TestGtkEmbed or
skipstone) crashes when you try to enter a user name & password in a page
such as test.html shown below. I can't even get the cursor to land in those
text input field.
Here is the error message:
***
./TestGtkEmbed: error in loading shared libraries:
/home/mahawan/mozilla/dist/Embed/components/libeditor.so: undefined symbol:
GetCID__14SetDocTitleTxn
***
Is only commenting the above line in the mozilla/editor/base/Makefile not
enough ? Is there any other things need to be done ?
Any help is deeply appreciated.
Bagus
test.html:
------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<html>
<body>
Text entry test page
<hr>
<form method="POST" action="xxx.cgi">
<table>
<tbody>
<tr>
<td>Login:</td>
<td><input size="10" type="text" maxlength="8" name="name"></td>
</tr>
<tr>
<td>password:</td>
<td><input size="10" type="password" maxlength="8" name="passwd"></td>
</tr>
</tbody>
</table>
<input type="submit" value="Submit"> <input type="reset" value="Reset">
</form>
</body>
</html
------------------