From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.devel Subject: Re: GNU/Linux (Ubuntu 7.10) bootstrap from a CVS checkout fails ("Maximum buffer size exceeded") Date: Fri, 30 Nov 2007 17:17:06 -0600 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <86lk8fs4r1.fsf@lifelogs.com> References: <87ir3wodst.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1196464665 26763 80.91.229.12 (30 Nov 2007 23:17:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 30 Nov 2007 23:17:45 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 01 00:17:49 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IyF75-0003ej-2Q for ged-emacs-devel@m.gmane.org; Sat, 01 Dec 2007 00:17:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IyF6n-0000R0-Rm for ged-emacs-devel@m.gmane.org; Fri, 30 Nov 2007 18:17:21 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IyF6j-0000Qv-7K for emacs-devel@gnu.org; Fri, 30 Nov 2007 18:17:17 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IyF6e-0000Qj-Id for emacs-devel@gnu.org; Fri, 30 Nov 2007 18:17:15 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IyF6e-0000Qg-EZ for emacs-devel@gnu.org; Fri, 30 Nov 2007 18:17:12 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IyF6d-0008Ec-7B for emacs-devel@gnu.org; Fri, 30 Nov 2007 18:17:12 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IyF6X-0007WJ-1G for emacs-devel@gnu.org; Fri, 30 Nov 2007 23:17:05 +0000 Original-Received: from 38.98.147.130 ([38.98.147.130]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Nov 2007 23:17:05 +0000 Original-Received: from tzz by 38.98.147.130 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Nov 2007 23:17:05 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 1264 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 38.98.147.130 X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.1 (gnu/linux) Cancel-Lock: sha1:pfiXl6IZuJIhL47djft1V5G00ak= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:84388 Archived-At: Is this known to be broken, or am I missing something obvious? I am surprised a `make bootstrap' failure is happening on Ubuntu, but even if the problem is not with Emacs itself, it certainly looks like it (or a library interaction triggered by load-with-code-conversion) from my investigation. Thanks Ted On Tue, 20 Nov 2007 14:35:46 -0600 Ted Zlatanov wrote:=20 TZ> The full log follows. This is with a clean CVS checkout on a new TZ> Ubuntu 7.10 install. TZ> After looking at loadup.el, I see the problem starts with the lines: TZ> (setq load-source-file-function 'load-with-code-conversion) TZ> (load "files") TZ> when I remove the load-source-file-function setq, the files.el code is TZ> loaded fine. The bootstrap fails later at international/utf-8.el TZ> because it can't read a ? character, but if I have the setq the next TZ> Lisp library loaded causes the buffer size error. TZ> In addition, strace of the temacs process shows that no data is read() TZ> from the .el file. The error happens *before* which to me indicates TZ> this is not a problem with the Lisp code. I checked it anyhow, and TZ> it's a clean checkout from CVS without corruption. I suspect it's an TZ> error at the C level but I don't know enough about the bootstrap TZ> process to debug this. TZ> I searched older discussions and didn't see this. Sorry if it's an TZ> obvious problem. TZ> Ted TZ> TEMACS RUN WITH THE SETQ OF load-source-file-function REMOVED: TZ> ./temacs --batch --load loadup bootstrap TZ> Loading loadup.el (source)... TZ> Using load-path (/home/tzz/source/emacs/lisp /home/tzz/source/emacs/lis= p/emacs-lisp /home/tzz/source/emacs/lisp/language /home/tzz/source/emacs/li= sp/international /home/tzz/source/emacs/lisp/textmodes) TZ> Loading emacs-lisp/byte-run (source)... TZ> Loading emacs-lisp/backquote (source)... TZ> Loading subr (source)... TZ> Loading version.el (source)... TZ> Loading widget (source)... TZ> Loading custom (source)... TZ> Loading emacs-lisp/map-ynp (source)... TZ> Loading cus-start (source)... TZ> Loading international/mule (source)... TZ> Loading international/mule-conf.el (source)... TZ> Loading env (source)... TZ> Loading format (source)... TZ> Loading bindings (source)... TZ> Loading files (source)... TZ> Loading cus-face (source)... TZ> Loading faces (source)... TZ> Loading button (source)... TZ> Loading startup (source)... TZ> Lists of integers (garbage collection statistics) are normal output TZ> while building Emacs; they do not indicate a problem. TZ> ((103958 . 26508) (5816 . 0) (588 . 7) 427111 20021 (23 . 1) (19 . 0) (= 8377 . 65)) TZ> Loading loaddefs.el (source)... TZ> ((126645 . 6185) (8741 . 0) (596 . 1) 1331449 20021 (49 . 31) (19 . 0) = (16802 . 82)) TZ> Loading simple (source)... TZ> Loading help (source)... TZ> Loading jka-cmpr-hook (source)... TZ> Loading international/mule-cmds (source)... TZ> Loading case-table (source)... TZ> Loading international/utf-8 (source)... TZ> Invalid read syntax: "?" TZ> make[2]: *** [bootstrap-emacs] Error 255 TZ> make[2]: Leaving directory `/home/tzz/source/emacs/src' TZ> make[1]: *** [bootstrap-build] Error 2 TZ> make[1]: Leaving directory `/home/tzz/source/emacs' TZ> make: *** [bootstrap] Error 2 TZ> FULL LOG: >> cvs checkout ... TZ> ... >> ./configure --with-gtk --with-tiff=3Dno TZ> checking build system type... i686-pc-linux-gnu TZ> checking host system type... i686-pc-linux-gnu TZ> checking for gcc... gcc TZ> checking for C compiler default output file name... a.out TZ> checking whether the C compiler works... yes TZ> checking whether we are cross compiling... no TZ> checking for suffix of executables...=20 TZ> checking for suffix of object files... o TZ> checking whether we are using the GNU C compiler... yes TZ> checking whether gcc accepts -g... yes TZ> checking for gcc option to accept ISO C89... none needed TZ> checking how to run the C preprocessor... gcc -E TZ> checking for grep that handles long lines and -e... /bin/grep TZ> checking for egrep... /bin/grep -E TZ> checking for AIX... no TZ> checking whether gcc understands -Wno-pointer-sign... yes TZ> checking whether ln -s works... yes TZ> checking how to run the C preprocessor... gcc -E TZ> checking for a BSD-compatible install... /usr/bin/install -c TZ> checking for ranlib... ranlib TZ> checking for install-info... /usr/sbin/install-info TZ> checking for install-info... (cached) /usr/sbin/install-info TZ> checking for install-info... (cached) /usr/sbin/install-info TZ> checking for gzip... /bin/gzip TZ> checking for makeinfo... /home/tzz/bin/makeinfo TZ> checking for -znocombreloc... yes TZ> configure: checking the machine- and system-dependent files to find out TZ> - which libraries the lib-src programs will want, and TZ> - whether the GNU malloc routines are usable... TZ> checking for special C compiler options needed for large files... no TZ> checking for _FILE_OFFSET_BITS value needed for large files... 64 TZ> checking for ANSI C header files... yes TZ> checking for sys/types.h... yes TZ> checking for sys/stat.h... yes TZ> checking for stdlib.h... yes TZ> checking for string.h... yes TZ> checking for memory.h... yes TZ> checking for strings.h... yes TZ> checking for inttypes.h... yes TZ> checking for stdint.h... yes TZ> checking for unistd.h... yes TZ> checking machine/soundcard.h usability... no TZ> checking machine/soundcard.h presence... no TZ> checking for machine/soundcard.h... no TZ> checking sys/soundcard.h usability... yes TZ> checking sys/soundcard.h presence... yes TZ> checking for sys/soundcard.h... yes TZ> checking soundcard.h usability... no TZ> checking soundcard.h presence... no TZ> checking for soundcard.h... no TZ> checking for _oss_ioctl in -lossaudio... no TZ> checking for pkg-config... /usr/bin/pkg-config TZ> checking for alsa >=3D 1.0.0... no TZ> checking sys/select.h usability... yes TZ> checking sys/select.h presence... yes TZ> checking for sys/select.h... yes TZ> checking sys/timeb.h usability... yes TZ> checking sys/timeb.h presence... yes TZ> checking for sys/timeb.h... yes TZ> checking sys/time.h usability... yes TZ> checking sys/time.h presence... yes TZ> checking for sys/time.h... yes TZ> checking for unistd.h... (cached) yes TZ> checking utime.h usability... yes TZ> checking utime.h presence... yes TZ> checking for utime.h... yes TZ> checking linux/version.h usability... yes TZ> checking linux/version.h presence... yes TZ> checking for linux/version.h... yes TZ> checking sys/systeminfo.h usability... no TZ> checking sys/systeminfo.h presence... no TZ> checking for sys/systeminfo.h... no TZ> checking termios.h usability... yes TZ> checking termios.h presence... yes TZ> checking for termios.h... yes TZ> checking limits.h usability... yes TZ> checking limits.h presence... yes TZ> checking for limits.h... yes TZ> checking for string.h... (cached) yes TZ> checking for stdlib.h... (cached) yes TZ> checking termcap.h usability... yes TZ> checking termcap.h presence... yes TZ> checking for termcap.h... yes TZ> checking stdio_ext.h usability... yes TZ> checking stdio_ext.h presence... yes TZ> checking for stdio_ext.h... yes TZ> checking fcntl.h usability... yes TZ> checking fcntl.h presence... yes TZ> checking for fcntl.h... yes TZ> checking for strings.h... (cached) yes TZ> checking coff.h usability... no TZ> checking coff.h presence... no TZ> checking for coff.h... no TZ> checking pty.h usability... yes TZ> checking pty.h presence... yes TZ> checking for pty.h... yes TZ> checking sys/mman.h usability... yes TZ> checking sys/mman.h presence... yes TZ> checking for sys/mman.h... yes TZ> checking sys/param.h usability... yes TZ> checking sys/param.h presence... yes TZ> checking for sys/param.h... yes TZ> checking sys/vlimit.h usability... yes TZ> checking sys/vlimit.h presence... yes TZ> checking for sys/vlimit.h... yes TZ> checking sys/resource.h usability... yes TZ> checking sys/resource.h presence... yes TZ> checking for sys/resource.h... yes TZ> checking locale.h usability... yes TZ> checking locale.h presence... yes TZ> checking for locale.h... yes TZ> checking sys/_mbstate_t.h usability... no TZ> checking sys/_mbstate_t.h presence... no TZ> checking for sys/_mbstate_t.h... no TZ> checking sys/utsname.h usability... yes TZ> checking sys/utsname.h presence... yes TZ> checking for sys/utsname.h... yes TZ> checking pwd.h usability... yes TZ> checking pwd.h presence... yes TZ> checking for pwd.h... yes TZ> checking if personality LINUX32 can be set... yes TZ> checking for term.h... yes TZ> checking for ANSI C header files... (cached) yes TZ> checking whether time.h and sys/time.h may both be included... yes TZ> checking whether sys_siglist is declared... no TZ> checking whether __sys_siglist is declared... no TZ> checking for sys/wait.h that is POSIX.1 compatible... yes TZ> checking for struct utimbuf... yes TZ> checking return type of signal handlers... void TZ> checking for speed_t... yes TZ> checking for struct timeval... yes TZ> checking for struct exception... yes TZ> checking sys/socket.h usability... yes TZ> checking sys/socket.h presence... yes TZ> checking for sys/socket.h... yes TZ> checking for net/if.h... yes TZ> checking whether struct tm is in sys/time.h or time.h... time.h TZ> checking for struct tm.tm_zone... yes TZ> checking for struct tm.tm_gmtoff... yes TZ> checking for struct ifreq.ifr_flags... yes TZ> checking for struct ifreq.ifr_hwaddr... yes TZ> checking for struct ifreq.ifr_netmask... yes TZ> checking for struct ifreq.ifr_broadaddr... yes TZ> checking for struct ifreq.ifr_addr... yes TZ> checking for function prototypes... yes TZ> checking for working volatile... yes TZ> checking for an ANSI C-conforming const... yes TZ> checking for void * support... yes TZ> checking whether make sets $(MAKE)... yes TZ> checking for long file names... yes TZ> checking for X... libraries , headers=20 TZ> checking Carbon/Carbon.h usability... no TZ> checking Carbon/Carbon.h presence... no TZ> checking for Carbon/Carbon.h... no TZ> checking for malloc_get_state... yes TZ> checking for malloc_set_state... yes TZ> checking whether __after_morecore_hook exists... yes TZ> checking for stdlib.h... (cached) yes TZ> checking for unistd.h... (cached) yes TZ> checking for getpagesize... yes TZ> checking for working mmap... yes TZ> checking for dnet_ntoa in -ldnet... no TZ> checking for main in -lXbsd... no TZ> checking for cma_open in -lpthreads... no TZ> checking for XFree86 in /usr/X386... no TZ> checking whether X on GNU/Linux needs -b to link... no TZ> checking for Xkb... yes TZ> checking for XrmSetDatabase... yes TZ> checking for XScreenResourceString... yes TZ> checking for XScreenNumberOfScreen... yes TZ> checking for XSetWMProtocols... yes TZ> checking X11 version 6... 6 or newer TZ> checking for librsvg-2.0 >=3D 2.0.0... no TZ> checking for gtk+-2.0 >=3D 2.6 glib-2.0 >=3D 2.6... yes TZ> checking GTK_CFLAGS... -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/includ= e -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/u= sr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I= /usr/include/libpng12=20=20 TZ> checking GTK_LIBS... -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf= -2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lX= randr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -lXfixes -= lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0=20=20 TZ> checking for gtk_main... yes TZ> checking for gdk_display_open... yes TZ> checking for gtk_file_selection_new... yes TZ> checking for gtk_file_chooser_dialog_new... yes TZ> checking pthread.h usability... yes TZ> checking pthread.h presence... yes TZ> checking for pthread.h... yes TZ> checking for pthread_self in -lpthread... yes TZ> checking for xft >=3D 0.13.0... yes TZ> checking XFT_CFLAGS... -I/usr/include/freetype2=20=20 TZ> checking XFT_LIBS... -lXft -lfontconfig=20=20 TZ> checking X11/Xft/Xft.h usability... yes TZ> checking X11/Xft/Xft.h presence... yes TZ> checking for X11/Xft/Xft.h... yes TZ> checking for XftFontOpen in -lXft... yes TZ> checking X11/xpm.h usability... yes TZ> checking X11/xpm.h presence... yes TZ> checking for X11/xpm.h... yes TZ> checking for XpmReadFileToPixmap in -lXpm... yes TZ> checking for XpmReturnAllocPixels preprocessor define... yes TZ> checking jerror.h usability... yes TZ> checking jerror.h presence... yes TZ> checking for jerror.h... yes TZ> checking for jpeg_destroy_compress in -ljpeg... yes TZ> checking png.h usability... yes TZ> checking png.h presence... yes TZ> checking for png.h... yes TZ> checking libpng/png.h usability... yes TZ> checking libpng/png.h presence... yes TZ> checking for libpng/png.h... yes TZ> checking for png_get_channels in -lpng... yes TZ> checking gif_lib.h usability... yes TZ> checking gif_lib.h presence... yes TZ> checking for gif_lib.h... yes TZ> checking for EGifPutExtensionLast in -lgif... yes TZ> checking gpm.h usability... no TZ> checking gpm.h presence... no TZ> checking for gpm.h... no TZ> checking malloc/malloc.h usability... no TZ> checking malloc/malloc.h presence... no TZ> checking for malloc/malloc.h... no TZ> checking X11/SM/SMlib.h usability... yes TZ> checking X11/SM/SMlib.h presence... yes TZ> checking for X11/SM/SMlib.h... yes TZ> checking for SmcOpenConnection in -lSM... yes TZ> checking whether netdb declares h_errno... yes TZ> checking for working alloca.h... yes TZ> checking for alloca... yes TZ> checking for sqrt in -lm... yes TZ> checking for maillock in -lmail... no TZ> checking for maillock in -llockfile... no TZ> checking for liblockfile.so... no TZ> checking for touchlock... no TZ> checking maillock.h usability... no TZ> checking maillock.h presence... no TZ> checking for maillock.h... no TZ> checking for gethostname... yes TZ> checking for getdomainname... yes TZ> checking for dup2... yes TZ> checking for rename... yes TZ> checking for closedir... yes TZ> checking for mkdir... yes TZ> checking for rmdir... yes TZ> checking for sysinfo... yes TZ> checking for getrusage... yes TZ> checking for get_current_dir_name... yes TZ> checking for random... yes TZ> checking for lrand48... yes TZ> checking for bcopy... yes TZ> checking for bcmp... yes TZ> checking for logb... yes TZ> checking for frexp... yes TZ> checking for fmod... yes TZ> checking for rint... yes TZ> checking for cbrt... yes TZ> checking for ftime... yes TZ> checking for setsid... yes TZ> checking for strerror... yes TZ> checking for fpathconf... yes TZ> checking for select... yes TZ> checking for mktime... yes TZ> checking for euidaccess... yes TZ> checking for getpagesize... (cached) yes TZ> checking for tzset... yes TZ> checking for setlocale... yes TZ> checking for utimes... yes TZ> checking for setrlimit... yes TZ> checking for setpgid... yes TZ> checking for getcwd... yes TZ> checking for getwd... yes TZ> checking for shutdown... yes TZ> checking for getaddrinfo... yes TZ> checking for __fpending... yes TZ> checking for mblen... yes TZ> checking for mbrlen... yes TZ> checking for mbsinit... yes TZ> checking for strsignal... yes TZ> checking for setitimer... yes TZ> checking for ualarm... yes TZ> checking for index... yes TZ> checking for rindex... yes TZ> checking for sendto... yes TZ> checking for recvfrom... yes TZ> checking for getsockopt... yes TZ> checking for setsockopt... yes TZ> checking for getsockname... yes TZ> checking for getpeername... yes TZ> checking for gai_strerror... yes TZ> checking for mkstemp... yes TZ> checking for getline... yes TZ> checking for getdelim... yes TZ> checking for mremap... yes TZ> checking for memmove... yes TZ> checking for fsync... yes TZ> checking for sync... yes TZ> checking for bzero... yes TZ> checking for memset... yes TZ> checking for memcmp... yes TZ> checking for difftime... yes TZ> checking for memcpy... yes TZ> checking for mempcpy... yes TZ> checking for mblen... (cached) yes TZ> checking for mbrlen... (cached) yes TZ> checking for posix_memalign... yes TZ> checking sys/un.h usability... yes TZ> checking sys/un.h presence... yes TZ> checking for sys/un.h... yes TZ> checking for sys/time.h... (cached) yes TZ> checking for unistd.h... (cached) yes TZ> checking for alarm... yes TZ> checking for working mktime... yes TZ> checking for getloadavg... yes TZ> checking for pstat_getdynamic... no TZ> checking for kstat_open in -lkstat... no TZ> checking for getloadavg... yes TZ> checking whether getloadavg requires setgid... no TZ> checking for _LARGEFILE_SOURCE value needed for large files... no TZ> checking getopt.h usability... yes TZ> checking getopt.h presence... yes TZ> checking for getopt.h... yes TZ> checking for getopt_long_only... yes TZ> checking whether optreset is declared... no TZ> checking for working GNU getopt function... yes TZ> checking whether getpgrp requires zero arguments... yes TZ> checking for strftime... yes TZ> checking for grantpt... yes TZ> checking for getpt... yes TZ> checking for tparm in -lncurses... yes TZ> checking for res_init... no TZ> checking for res_init with -lresolv... yes TZ> checking for dgettext in -lintl... no TZ> checking whether localtime caches TZ... no TZ> checking for gettimeofday... yes TZ> checking whether gettimeofday can accept two arguments... yes TZ> checking for socket... yes TZ> checking netinet/in.h usability... yes TZ> checking netinet/in.h presence... yes TZ> checking for netinet/in.h... yes TZ> checking arpa/inet.h usability... yes TZ> checking arpa/inet.h presence... yes TZ> checking for arpa/inet.h... yes TZ> checking sys/ioctl.h usability... yes TZ> checking sys/ioctl.h presence... yes TZ> checking for sys/ioctl.h... yes TZ> checking whether system supports dynamic ptys... yes TZ> checking for pid_t... yes TZ> checking vfork.h usability... no TZ> checking vfork.h presence... no TZ> checking for vfork.h... no TZ> checking for fork... yes TZ> checking for vfork... yes TZ> checking for working fork... yes TZ> checking for working vfork... (cached) yes TZ> checking for nl_langinfo and CODESET... yes TZ> checking for size_t... yes TZ> checking for mbstate_t... yes TZ> checking for C restrict keyword... __restrict TZ> checking for C restricted array declarations... yes TZ> Configured for `i686-pc-linux-gnu'. TZ> Where should the build process find the source code? /home/tzz/sou= rce/emacs TZ> What operating system and machine description files should Emacs use? TZ> `s/gnu-linux.h' and `m/intel386.h' TZ> What compiler should emacs be built with? gcc -O9 -funr= oll-loops -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro= -fomit-frame-pointer -fno-exceptions TZ> Should Emacs use the GNU version of malloc? yes TZ> (Using Doug Lea's new malloc from the GNU C Library.) TZ> Should Emacs use a relocating allocator for buffers? yes TZ> Should Emacs use mmap(2) for buffer allocation? no TZ> What window system should Emacs use? x11 TZ> What toolkit should Emacs use? GTK TZ> Where do we find X Windows header files? Standard dirs TZ> Where do we find X Windows libraries? Standard dirs TZ> Does Emacs use -lXaw3d? no TZ> Does Emacs use -lXpm? yes TZ> Does Emacs use -ljpeg? yes TZ> Does Emacs use -ltiff? no TZ> Does Emacs use a gif library? yes -lgif TZ> Does Emacs use -lpng? yes TZ> Does Emacs use -lrsvg-2? no TZ> Does Emacs use -lgpm? no TZ> Does Emacs use X toolkit scroll bars? yes TZ> configure: creating ./config.status TZ> config.status: creating Makefile TZ> config.status: creating lib-src/Makefile.c TZ> config.status: creating oldXMenu/Makefile TZ> config.status: creating doc/emacs/Makefile TZ> config.status: creating doc/misc/Makefile TZ> config.status: creating doc/lispintro/Makefile TZ> config.status: creating doc/lispref/Makefile TZ> config.status: creating src/Makefile.c TZ> config.status: creating lwlib/Makefile TZ> config.status: creating lisp/Makefile TZ> config.status: creating leim/Makefile TZ> config.status: creating src/config.h TZ> config.status: src/config.h is unchanged TZ> config.status: executing default commands TZ> creating src/epaths.h TZ> src/epaths.h is unchanged TZ> creating lib-src/Makefile TZ> creating src/Makefile >> make bootstrap TZ> (cd src; make mostlyclean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/src' TZ> rm -f temacs prefix-args core *.core \#* *.o libXMenu11.a liblw.a TZ> rm -f ../etc/DOC TZ> rm -f bootstrap-emacs emacs-23.0.50 TZ> rm -f buildobj.lst TZ> make[1]: Leaving directory `/home/tzz/source/emacs/src' TZ> (cd oldXMenu; make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/oldXMenu' TZ> rm -f libXMenu11.a Activate.o AddPane.o AddSel.o ChgPane.o ChgSel.o Cre= ate.o DelPane.o DelSel.o Destroy.o Error.o EvHand.o FindPane.o FindSel.o In= sPane.o InsSel.o Internal.o Locate.o Post.o Recomp.o SetAEQ.o SetFrz.o SetP= ane.o SetSel.o XDelAssoc.o XLookAssoc.o XCrAssoc.o XDestAssoc.o XMakeAssoc.= o insque.o TZ> make[1]: Leaving directory `/home/tzz/source/emacs/oldXMenu' TZ> (cd lwlib; make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/lwlib' TZ> rm -f *.o core errs ,* *.a .emacs_* make.log MakeOut \#* TZ> make[1]: Leaving directory `/home/tzz/source/emacs/lwlib' TZ> (cd lib-src; make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/lib-src' TZ> rm -f core *.o getopt.h getopt.h-t TZ> rm -f etags ctags emacsclient b2m ebrowse profile digest-doc sorted-doc= movemail cvtmail fakemail hexl update-game-score test-distrib make-docfile TZ> rm -f fns*.el *.tab.c *.tab.h TZ> make[1]: Leaving directory `/home/tzz/source/emacs/lib-src' TZ> (cd doc/emacs && make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/doc/emacs' TZ> rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp *.core TZ> rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc TZ> rm -f *.dvi TZ> make[1]: Leaving directory `/home/tzz/source/emacs/doc/emacs' TZ> (cd doc/misc && make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/doc/misc' TZ> rm -f *.log *.cp *.fn *.ky *.op *.ops *.pg *.vr core *.tp \ TZ> *.tps *.core gnustmp.* TZ> rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc TZ> rm -f *.dvi TZ> make[1]: Leaving directory `/home/tzz/source/emacs/doc/misc' TZ> (cd doc/lispref && make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/doc/lispref' TZ> rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ TZ> *.vr *.vrs *.pg *.pgs *.ky *.kys TZ> rm -f make.out core TZ> make[1]: Leaving directory `/home/tzz/source/emacs/doc/lispref' TZ> (cd doc/lispintro && make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/doc/lispintro' TZ> rm -f *.log *.cp *.fn *.ky *.pg *.vr *.tp TZ> rm -f *.dvi TZ> make[1]: Leaving directory `/home/tzz/source/emacs/doc/lispintro' TZ> (cd leim; make clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/leim' TZ> rm -f quail/CCDOSPY.elc quail/Punct.elc quail/QJ.elc quail/SW.elc quail= /TONEPY.elc quail/4Corner.elc quail/ARRAY30.elc quail/ECDICT.elc quail/ETZY= .elc quail/Punct-b5.elc quail/PY-b5.elc quail/QJ-b5.elc quail/ZOZY.elc quai= l/tsang-b5.elc quail/quick-b5.elc quail/tsang-cns.elc quail/quick-cns.elc q= uail/PY.elc quail/ZIRANMA.elc quail/CTLau.elc quail/CTLau-b5.elc quail/CCDO= SPY.el quail/Punct.el quail/QJ.el quail/SW.el quail/TONEPY.el quail/4Corner= .el quail/ARRAY30.el quail/ECDICT.el quail/ETZY.el quail/Punct-b5.el quail/= PY-b5.el quail/QJ-b5.el quail/ZOZY.el quail/tsang-b5.el quail/quick-b5.el q= uail/tsang-cns.el quail/quick-cns.el quail/PY.el quail/ZIRANMA.el quail/CTL= au.el quail/CTLau-b5.el \ TZ> leim-list.el changed.tit changed.misc TZ> make[1]: Leaving directory `/home/tzz/source/emacs/leim' TZ> (cd lisp; make bootstrap-clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/lisp' TZ> cd /home/tzz/source/emacs/lisp; rm -f *.elc */*.elc TZ> make[1]: Leaving directory `/home/tzz/source/emacs/lisp' TZ> (cd leim; make bootstrap-clean) TZ> make[1]: Entering directory `/home/tzz/source/emacs/leim' TZ> rm -f quail/CCDOSPY.elc quail/Punct.elc quail/QJ.elc quail/SW.elc quail= /TONEPY.elc quail/4Corner.elc quail/ARRAY30.elc quail/ECDICT.elc quail/ETZY= .elc quail/Punct-b5.elc quail/PY-b5.elc quail/QJ-b5.elc quail/ZOZY.elc quai= l/tsang-b5.elc quail/quick-b5.elc quail/tsang-cns.elc quail/quick-cns.elc q= uail/PY.elc quail/ZIRANMA.elc quail/CTLau.elc quail/CTLau-b5.elc quail/CCDO= SPY.el quail/Punct.el quail/QJ.el quail/SW.el quail/TONEPY.el quail/4Corner= .el quail/ARRAY30.el quail/ECDICT.el quail/ETZY.el quail/Punct-b5.el quail/= PY-b5.el quail/QJ-b5.el quail/ZOZY.el quail/tsang-b5.el quail/quick-b5.el q= uail/tsang-cns.el quail/quick-cns.el quail/PY.el quail/ZIRANMA.el quail/CTL= au.el quail/CTLau-b5.el \ TZ> leim-list.el changed.tit changed.misc TZ> rm -f quail/CCDOSPY.elc quail/Punct.elc quail/QJ.elc quail/SW.elc quail= /TONEPY.elc /home/tzz/source/emacs/leim/quail/py-punct.elc quail/4Corner.el= c quail/ARRAY30.elc quail/ECDICT.elc quail/ETZY.elc quail/Punct-b5.elc quai= l/PY-b5.elc quail/QJ-b5.elc quail/ZOZY.elc /home/tzz/source/emacs/leim/quai= l/pypunct-b5.elc /home/tzz/source/emacs/leim/quail/japanese.elc /home/tzz/s= ource/emacs/leim/ja-dic/ja-dic.elc /home/tzz/source/emacs/leim/quail/hangul= .elc /home/tzz/source/emacs/leim/quail/hangul3.elc /home/tzz/source/emacs/l= eim/quail/hanja.elc /home/tzz/source/emacs/leim/quail/hanja3.elc /home/tzz/= source/emacs/leim/quail/hanja-jis.elc /home/tzz/source/emacs/leim/quail/sym= bol-ksc.elc /home/tzz/source/emacs/leim/quail/thai.elc /home/tzz/source/ema= cs/leim/quail/viqr.elc /home/tzz/source/emacs/leim/quail/vntelex.elc /home/= tzz/source/emacs/leim/quail/lao.elc /home/tzz/source/emacs/leim/quail/lrt.e= lc /home/tzz/source/emacs/leim/quail/indian.elc /home/tzz/source/emacs/leim= /quail/tibetan.elc /home/tzz/source/emacs/leim/quail/latin-pre.elc /home/tz= z/source/emacs/leim/quail/latin-post.elc /home/tzz/source/emacs/leim/quail/= latin-alt.elc /home/tzz/source/emacs/leim/quail/latin-ltx.elc /home/tzz/sou= rce/emacs/leim/quail/welsh.elc /home/tzz/source/emacs/leim/quail/czech.elc = /home/tzz/source/emacs/leim/quail/croatian.elc /home/tzz/source/emacs/leim/= quail/slovak.elc /home/tzz/source/emacs/leim/quail/greek.elc /home/tzz/sour= ce/emacs/leim/quail/cyrillic.elc /home/tzz/source/emacs/leim/quail/cyril-ji= s.elc /home/tzz/source/emacs/leim/quail/ethiopic.elc /home/tzz/source/emacs= /leim/quail/ipa.elc /home/tzz/source/emacs/leim/quail/hebrew.elc /home/tzz/= source/emacs/leim/quail/georgian.elc /home/tzz/source/emacs/leim/quail/sish= eng.elc quail/tsang-b5.elc quail/quick-b5.elc quail/tsang-cns.elc quail/qui= ck-cns.elc quail/PY.elc quail/ZIRANMA.elc quail/CTLau.elc quail/CTLau-b5.el= c /home/tzz/source/emacs/leim/quail/sgml-input.elc /home/tzz/source/emacs/l= eim/quail/rfc1345.elc /home/tzz/source/emacs/leim/quail/uni-input.elc TZ> make[1]: Leaving directory `/home/tzz/source/emacs/leim' TZ> make info bootstrap-build TZ> make[1]: Entering directory `/home/tzz/source/emacs' TZ> (cd doc/emacs; make -w info) TZ> make[2]: Entering directory `/home/tzz/source/emacs/doc/emacs' TZ> make[2]: Nothing to be done for `info'. TZ> make[2]: Leaving directory `/home/tzz/source/emacs/doc/emacs' TZ> (cd doc/misc; make -w info) TZ> make[2]: Entering directory `/home/tzz/source/emacs/doc/misc' TZ> make[2]: Nothing to be done for `info'. TZ> make[2]: Leaving directory `/home/tzz/source/emacs/doc/misc' TZ> (cd doc/lispref; make -w info) TZ> make[2]: Entering directory `/home/tzz/source/emacs/doc/lispref' TZ> make[2]: Nothing to be done for `info'. TZ> make[2]: Leaving directory `/home/tzz/source/emacs/doc/lispref' TZ> (cd doc/lispintro; make -w info) TZ> make[2]: Entering directory `/home/tzz/source/emacs/doc/lispintro' TZ> make[2]: Nothing to be done for `info'. TZ> make[2]: Leaving directory `/home/tzz/source/emacs/doc/lispintro' TZ> (cd lisp; make -w bootstrap-prepare) TZ> make[2]: Entering directory `/home/tzz/source/emacs/lisp' TZ> if test -x ../src/emacs; then \ TZ> make -w autoloads; \ TZ> else \ TZ> cp /home/tzz/source/emacs/lisp/ldefs-boot.el /home/tzz/source/emacs/= lisp/loaddefs.el; \ TZ> fi TZ> chmod +w /home/tzz/source/emacs/lisp/loaddefs.el \ TZ> /home/tzz/source/emacs/lisp/ps-print.el \ TZ> /home/tzz/source/emacs/lisp/emacs-lisp/cl-loaddefs.el TZ> make[2]: Leaving directory `/home/tzz/source/emacs/lisp' TZ> (cd src; make -w bootstrap) TZ> make[2]: Entering directory `/home/tzz/source/emacs/src' TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions pre-crt0.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions dispnew.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions frame.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions scroll.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xdisp.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xmenu.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions window.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions charset.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions coding.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions category.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions ccl.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions cm.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions term.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions terminal.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xfaces.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xterm.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xfns.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xselect.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xrdb.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions fontset.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions xsmfns.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions fringe.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions image.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions gtkutil.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions emacs.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions keyboard.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions macros.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions keymap.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions sysdep.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions buffer.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions filelock.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions insdel.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions marker.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions minibuf.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions fileio.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions dired.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions filemode.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions cmds.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions casetab.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions casefiddle.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions indent.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions search.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions regex.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions undo.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions alloc.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions data.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions doc.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions editfns.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions callint.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions eval.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions floatfns.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions fns.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions print.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions lread.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions syntax.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions unexelf.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions bytecode.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions process.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions callproc.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions region-cache.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions sound.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions atimer.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions doprnt.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions strftime.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions intervals.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions textprop.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions composite.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions md5.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions terminfo.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions lastfile.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/t= zz/source/emacs/src -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0= /include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1= .0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freet= ype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -O9 -funroll-loops = -ffast-math -malign-double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-fr= ame-pointer -fno-exceptions vm-limit.c TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> gcc -Demacs -DHAVE_CONFIG_H -DUSE_GTK -I. -I/home/tzz/source/emacs/src= -D_BSD_SOURCE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/inc= lude/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/g= lib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include= /libpng12 -I/usr/include/freetype2 -O9 -funroll-loops -ffast-math -malign= -double -mcpu=3Dpentiumpro -march=3Dpentiumpro -fomit-frame-pointer -fno-ex= ceptions -Wl,-znocombreloc /home/tzz/source/emacs/src/prefix-args.c -o pre= fix-args TZ> `-mcpu=3D' is deprecated. Use `-mtune=3D' or '-march=3D' instead. TZ> echo "dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o charset.o cod= ing.o category.o ccl.o cm.o term.o terminal.o xfaces.o xterm.o xfns.o xsele= ct.o xrdb.o fontset.o xsmfns.o fringe.o image.o gtkutil.o emacs.o keyboard.= o macros.o keymap.o sysdep.o buffer.o filelock.o insdel.o marker.o minibuf.= o fileio.o dired.o filemode.o cmds.o casetab.o casefiddle.o indent.o search= .o regex.o undo.o alloc.o data.o doc.o editfns.o callint.o eval.o floatfns.= o fns.o print.o lread.o syntax.o unexelf.o bytecode.o process.o callproc.o = region-cache.o sound.o atimer.o doprnt.o strftime.o intervals.o textprop.o = composite.o md5.o terminfo.o lastfile.o vm-limit.o " > buildobj.lst TZ> gcc -nostdlib `./prefix-args -Xlinker -z nocombreloc` -Wl,-znocombrelo= c -o temacs pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o dispnew.o frame.o s= croll.o xdisp.o xmenu.o window.o charset.o coding.o category.o ccl.o cm.o t= erm.o terminal.o xfaces.o xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.= o fringe.o image.o gtkutil.o emacs.o keyboard.o macros.o keymap.o sysdep.o = buffer.o filelock.o insdel.o marker.o minibuf.o fileio.o dired.o filemode.o= cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o alloc.o dat= a.o doc.o editfns.o callint.o eval.o floatfns.o fns.o print.o lread.o synta= x.o unexelf.o bytecode.o process.o callproc.o region-cache.o sound.o atimer= .o doprnt.o strftime.o intervals.o textprop.o composite.o md5.o terminfo= .o lastfile.o vm-limit.o -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgd= k_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama = -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lpango-1.0 -lcairo -lX11 -l= Xfixes -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 -lpthread -lSM -lICE -lj= peg -lpng -lz -lm -lgif -lXpm -lX11 -lXft -lfontconfig -lresolv -lncurses= -lm -lgcc -lc -lgcc /usr/lib/crtn.o=20 TZ> ./temacs --batch --load loadup bootstrap TZ> Loading loadup.el (source)... TZ> Using load-path (/home/tzz/source/emacs/lisp /home/tzz/source/emacs/lis= p/emacs-lisp /home/tzz/source/emacs/lisp/language /home/tzz/source/emacs/li= sp/international /home/tzz/source/emacs/lisp/textmodes) TZ> Loading emacs-lisp/byte-run (source)... TZ> Loading emacs-lisp/backquote (source)... TZ> Loading subr (source)... TZ> Loading version.el (source)... TZ> Loading widget (source)... TZ> Loading custom (source)... TZ> Loading emacs-lisp/map-ynp (source)... TZ> Loading cus-start (source)... TZ> Loading international/mule (source)... TZ> Loading international/mule-conf.el (source)... TZ> Loading env (source)... TZ> Loading format (source)... TZ> Loading bindings (source)... TZ> Loading /home/tzz/source/emacs/lisp/files.el (source)... TZ> Maximum buffer size exceeded TZ> make[2]: *** [bootstrap-emacs] Error 255 TZ> make[2]: Leaving directory `/home/tzz/source/emacs/src' TZ> make[1]: *** [bootstrap-build] Error 2 TZ> make[1]: Leaving directory `/home/tzz/source/emacs' TZ> make: *** [bootstrap] Error 2