On Sun, Dec 20, 2009 at 7:10 AM, kunal ghosh <kunal.t2 at gmail.com> wrote: > got emacs to ./configure & make > after installing gtk2-devel > > but i cannot find the executable ??:-(
<most probably> The default emacs build creates only the bare bones lisp interpreter and basic os interface routines (eg. self-insert-command comes from here). This binary is called 'temacs'. For the editor proper to be functional many more lisp libraries needs to be loaded (eg. next-line comes this way). However loading libraries at statup is time consuming and makes startup very slow. To solve this an image of temacs with necessary lisp loaded can be dumped. That binary is the "emacs" or "XEmacs" binary. 'temacs -batch -l loadup dump' should create the familiar emacs binary. Doing "dumping" of emacs and similar feats of freezing and reloading interpreter environments is "deep magic". Anyone who has done it deserves to be revered ;-) </most probably> cheers Binu > also installed koffice using > $pfexec spkg install koffice-suite > but when i type > $kword > i get the following error: > kunal123 at opensolaris:~$ kword > QGtkStyle cannot be used together with the GTK_Qt engine. > /usr/lib/libkdeui.so.5.3.0'_ZN6KCrash15setCrashHandlerEPFviE+0x2c > [0xfdeb9bbc] > /usr/lib/libkdeui.so.5.3.0'_ZN19KApplicationPrivate16parseCommandLineEv+0x55e > [0xfde3a08e] > /usr/lib/libkdeui.so.5.3.0'_ZN19KApplicationPrivate4initEb+0x98 > [0xfde3ba08] > /usr/lib/libkdeui.so.5.3.0'_ZN12KApplicationC2Eb+0x163 > [0xfde3da83] > /usr/lib/libkomain.so.6.0.0'_ZN13KoApplicationC1Ev+0x2e > [0xfe18045e] > /usr/lib/libkdeinit4_kword.so'kdemain+0x15a > [0xfecb2e9a] > /usr/bin/kword'main+0x27 > [0x8050e17] > /usr/bin/kword'_start+0x80 > [0x8050c70] > kunal123 at opensolaris:~$ cat pkglist | grep QGtkStyle > kunal123 at opensolaris:~$ cat pkglist | grep QGtk > kunal123 at opensolaris:~$ cat pkglist | grep gtkstyle > > > -- > regards > ------- > Kunal Ghosh > BE 5th semester > Dept of Computer Sc. & Engineering. > Sir MVIT > Bangalore,India > > Quote: > "Ignorance is not a sin, the persistence of ignorance is" > -- > "If you find a task difficult today, you'll find it difficult 10yrs later > too !" > ----- > "Failing to Plan is Planning to Fail" > > Blog:kunalghosh.wordpress.com > Website:www.kunalghosh.net46.net > V-card:http://tinyurl.com/86qjyk > > _______________________________________________ > belenix-discuss mailing list > http://mail.opensolaris.org/mailman/listinfo/belenix-discuss > http://groups.google.com/group/belenix-discuss > >
