Hello, building without xft currently seems to fail:
$ ./configure [...] --disable-xft [...] && make checking build system type... i386-unknown-netbsdelf4.99.50 checking host system type... i386-unknown-netbsdelf4.99.50 [...] Configuration: Rxvt version: 9.01 : 2008-01-26 Source code location: . Install path: /usr/local/bin Compiler: g++ Compiler flags: -g -O3 -fno-rtti -fvisibility-inlines-hidden -fno-threadsafe-statics -fno-enforce-eh-specs -w Linker: gcc default resource name: urxvt resource class: URxvt resource class fallback: Rxvt embedded perl: no libafterimage: no *** Optionally check src/feature.h for further, rarely used options *** [...] g++ -I.. -I. -I. -I./../libev -DHAVE_CONFIG_H -g -O3 -fno-rtti -fvisibility-inlines-hidden -fno-threadsafe-statics -fno-enforce-eh-specs -w -DDEBUG_STRICT -I/usr/X11R6/include -c init.C init.C: In member function 'void rxvt_term::init_vars()': init.C:313: error: 'Opt_buffered' was not declared in this scope *** Error code 1 [...] The attached patch should fix this. Cheers, Jukka -- bashian roulette: $ ((RANDOM%6)) || rm -rf ~
Index: src/init.C =================================================================== RCS file: /schmorpforge/rxvt-unicode/src/init.C,v retrieving revision 1.246 diff -u -p -r1.246 init.C --- src/init.C 27 Jan 2008 22:48:33 -0000 1.246 +++ src/init.C 28 Jan 2008 07:23:17 -0000 @@ -310,7 +310,9 @@ rxvt_term::init_vars () set_option (Opt_pastableTabs); set_option (Opt_intensityStyles); set_option (Opt_iso14755_52); +#if XFT set_option (Opt_buffered); +#endif } static void
_______________________________________________ rxvt-unicode mailing list [email protected] http://lists.schmorp.de/cgi-bin/mailman/listinfo/rxvt-unicode
