[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#624743: marked as done (gcc-4.6 -D_FORTIFY_SOURCE=2 miscompiles exim4)



Your message dated Tue, 24 May 2011 13:03:25 +0200
with message-id <20110524110325.GA27774@volta.aurel32.net>
and subject line Re: memmove
has caused the Debian Bug report #619963,
regarding gcc-4.6 -D_FORTIFY_SOURCE=2 miscompiles exim4
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
619963: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=619963
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: gcc-4.6
Version: 4.6.0-6
Severity: important
Blocks: 624696

The upgrade to gcc-4.6 broke exim4:
------------------------------------------
(SID)ametzler@argenau:/tmp/EXIM4/exim-4.75$ fakeroot debian/rules clean; \
 debian/rules extradaemonpackages='' build ; echo XXXXXXXXXXXXXXXXXXXX ; \
./build-tree/build-exim4-daemon-light/exim -C /dev/null -be '${if bool{0}{yes}{no}} X ${if !bool{0}{yes}{no}}'
[...]
touch build-indep-stamp
XXXXXXXXXXXXXXXXXXXX
Segmentation fault
------------------------------------------

Exim is using hardening-wrapper. I have played with the different
DEB_BUILD_HARDENING_* options, the part that breaks is
-D_FORTIFY_SOURCE=2. With
export DEB_BUILD_HARDENING_FORTIFY=0
I (seem to) get a working exim binary.

The c-file that actually breaks is drtables.c:

gdb exim
GNU gdb (GDB) 7.2-debian
[...]
Reading symbols from /tmp/EXIM4/exim-4.75/build-tree/build-exim4-daemon-light/exim...done.
(gdb) run -C /dev/null -be '${if bool{0}{yes}{no}}'
Starting program: /tmp/EXIM4/exim-4.75/build-tree/build-exim4-daemon-light/exim -C /dev/null -be '${if bool{0}{yes}{no}}'
[Thread debugging using libthread_db enabled]

Program received signal SIGSEGV, Segmentation fault.
0xf7f5a838 in add_lookup_to_list () at drtables.c:381
381           && (Ustrcmp(lookup_list[pos]->name, info->name) <= 0)) {
(gdb) bt
#0  0xf7f5a838 in add_lookup_to_list () at drtables.c:381
#1  init_lookup_list () at drtables.c:615
#2  0xf7f3fdd3 in main (argc=5, cargv=0xffffd744) at exim.c:3588
(gdb)


If I recompile drtables.c without -D_FORTIFY_SOURCE=2 and relink exim
the segfault goes away.

cu andreas


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages gcc-4.6 depends on:
ii  binutils              2.21.51.20110421-2 The GNU assembler, linker and bina
ii  cpp-4.6               4.6.0-6            The GNU C preprocessor
ii  gcc-4.6-base          4.6.0-6            The GNU Compiler Collection (base
mkdir -p build-tree
find . -mindepth 1 -maxdepth 1 \
		-name debian -prune -o \
		-name build-tree -o -print0 | \
		xargs --no-run-if-empty --null \
		cp -a --target-directory=build-tree
patch -o EDITME.eximon /tmp/EXIM4/exim-4.75/build-tree/exim_monitor/EDITME /tmp/EXIM4/exim-4.75/debian/EDITME.eximon.diff
patching file /tmp/EXIM4/exim-4.75/build-tree/exim_monitor/EDITME
patch -o EDITME.exim4-light /tmp/EXIM4/exim-4.75/build-tree/src/EDITME /tmp/EXIM4/exim-4.75/debian/EDITME.exim4-light.diff
patching file /tmp/EXIM4/exim-4.75/build-tree/src/EDITME
Hunk #8 succeeded at 287 (offset 25 lines).
Hunk #9 succeeded at 508 (offset 25 lines).
Hunk #10 succeeded at 544 (offset 25 lines).
Hunk #11 succeeded at 556 (offset 25 lines).
Hunk #12 succeeded at 577 (offset 25 lines).
Hunk #13 succeeded at 659 (offset 25 lines).
Hunk #14 succeeded at 742 (offset 25 lines).
Hunk #15 succeeded at 791 (offset 25 lines).
Hunk #16 succeeded at 799 (offset 25 lines).
Hunk #17 succeeded at 832 (offset 25 lines).
Hunk #18 succeeded at 899 (offset 25 lines).
Hunk #19 succeeded at 1194 (offset 25 lines).
Hunk #20 succeeded at 1228 (offset 25 lines).
Hunk #21 succeeded at 1247 (offset 25 lines).
for editme in /tmp/EXIM4/exim-4.75/debian/EDITME.exim4-*.diff; do \
	  if [ "$editme" != "/tmp/EXIM4/exim-4.75/debian/EDITME.exim4-light.diff" ]; then \
	    TARGETNAME=`basename $editme .diff`; \
	    echo patch -o $TARGETNAME EDITME.exim4-light $editme; \
	    patch -o $TARGETNAME EDITME.exim4-light $editme; \
	  fi; \
	done
patch -o EDITME.exim4-heavy EDITME.exim4-light /tmp/EXIM4/exim-4.75/debian/EDITME.exim4-heavy.diff
patching file EDITME.exim4-light
Hunk #3 succeeded at 290 (offset 25 lines).
Hunk #4 succeeded at 317 (offset 25 lines).
Hunk #5 succeeded at 350 (offset 25 lines).
Hunk #6 succeeded at 361 (offset 25 lines).
Hunk #7 succeeded at 371 (offset 25 lines).
Hunk #8 succeeded at 560 (offset 25 lines).
Hunk #9 succeeded at 571 (offset 25 lines).
Hunk #10 succeeded at 811 (offset 25 lines).
Hunk #11 succeeded at 821 (offset 25 lines).
Hunk #12 succeeded at 831 (offset 25 lines).
Hunk #13 succeeded at 1151 (offset 25 lines).
touch unpack-configs-stamp
dh_testdir
# Add here commands to configure the package.
# We currently do not want to build depend on debhelper 7.2.3 just to
# keep it from installing the wrong upstream changelog. 490937
rm -fv CHANGES
touch configure-stamp
echo build-exim4-daemon-light
build-exim4-daemon-light
dh_testdir
rm -rf /tmp/EXIM4/exim-4.75/build-tree/build-${build:-`/bin/sh scripts/os-type`-`/bin/sh scripts/arch-type`}
# Add here command to compile/build the package.
mkdir -p /tmp/EXIM4/exim-4.75/build-tree/Local
cp EDITME.exim4-light /tmp/EXIM4/exim-4.75/build-tree/Local/Makefile
cp EDITME.eximon /tmp/EXIM4/exim-4.75/build-tree/Local/eximon.conf
cd /tmp/EXIM4/exim-4.75/build-tree && /usr/bin/make FULLECHO=''
make[1]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree'

>>> Creating links to source files...
>>> New Makefile & lookups/Makefile.predynamic installed
>>> Use "make makefile" if you need to force rebuilding of the makefile
 
make[2]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64'
/bin/sh ../scripts/Configure-os.h
/bin/sh ../scripts/Configure-os.c
gcc buildconfig.c
gcc -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -o buildconfig buildconfig.c -lnsl -lcrypt -lm
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -o buildconfig buildconfig.c -lnsl -lcrypt -lm
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -dynamic-linker /lib/ld-linux.so.2 -o buildconfig /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. /tmp/ccCrKUK2.o -lnsl -lcrypt -lm -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
/bin/sh ../scripts/Configure-config.h "/usr/bin/make"
make[3]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64'
make[3]: `buildconfig' is up to date.
make[3]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64'
Building configuration file config.h
>>> config.h built

/bin/sh ../scripts/Configure-eximon
>>> eximon script built

gcc -DCOMPILE_UTILITY spool_in.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -DCOMPILE_UTILITY -o util-spool_in.o spool_in.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -DCOMPILE_UTILITY -o util-spool_in.o spool_in.c
spool_in.c: In function 'spool_read_header':
spool_in.c:721:3: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result]
gcc -DCOMPILE_UTILITY store.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -DCOMPILE_UTILITY -o util-store.o store.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -DCOMPILE_UTILITY -o util-store.o store.c
gcc -DCOMPILE_UTILITY string.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -DCOMPILE_UTILITY -o util-string.o string.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -DCOMPILE_UTILITY -o util-string.o string.c
gcc tod.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    tod.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. tod.c
gcc tree.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    tree.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. tree.c
gcc exim_monitor/em_StripChart.c
gcc -o em_StripChart.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_StripChart.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_StripChart.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_StripChart.c
gcc exim_monitor/em_TextPop.c
gcc -o em_TextPop.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_TextPop.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_TextPop.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_TextPop.c
gcc exim_monitor/em_globals.c
gcc -o em_globals.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_globals.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_globals.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_globals.c
gcc exim_monitor/em_init.c
gcc -o em_init.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_init.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_init.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_init.c
gcc exim_monitor/em_log.c
gcc -o em_log.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_log.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_log.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_log.c
gcc exim_monitor/em_main.c
gcc -o em_main.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_main.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_main.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_main.c
gcc exim_monitor/em_menu.c
gcc -o em_menu.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_menu.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_menu.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_menu.c
../exim_monitor/em_menu.c: In function 'ActOnMessage':
../exim_monitor/em_menu.c:368:9: warning: ignoring return value of 'system', declared with attribute warn_unused_result [-Wunused-result]
gcc exim_monitor/em_queue.c
gcc -o em_queue.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_queue.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_queue.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_queue.c
gcc exim_monitor/em_strip.c
gcc -o em_strip.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_strip.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_strip.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_strip.c
gcc exim_monitor/em_text.c
gcc -o em_text.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_text.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_text.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_text.c
gcc exim_monitor/em_xs.c
gcc -o em_xs.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor  -I/usr/X11R6/include \
		   ../exim_monitor/`echo em_xs.o | sed 's/o$/c/'`
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_xs.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -I../exim_monitor -I/usr/X11R6/include ../exim_monitor/em_xs.c
gcc exim_monitor/em_version.c
gcc -o em_version.o -c \
	  -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I/usr/X11R6/include -I. ../exim_monitor/em_version.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o em_version.o -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I/usr/X11R6/include -I. ../exim_monitor/em_version.c
gcc -o eximon.bin
gcc -o eximon.bin em_version.o  -L/usr/X11R6/lib \
	util-spool_in.o util-store.o util-string.o tod.o tree.o em_StripChart.o em_TextPop.o em_globals.o em_init.o em_log.o em_main.o em_menu.o em_queue.o em_strip.o em_text.o em_xs.o -lXaw -lXmu -lXt -lXext -lX11 -lpcre \
	  -lnsl -lcrypt -lm  -ldl  -lc
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o eximon.bin em_version.o -L/usr/X11R6/lib util-spool_in.o util-store.o util-string.o tod.o tree.o em_StripChart.o em_TextPop.o em_globals.o em_init.o em_log.o em_main.o em_menu.o em_queue.o em_strip.o em_text.o em_xs.o -lXaw -lXmu -lXt -lXext -lX11 -lpcre -lnsl -lcrypt -lm -ldl -lc
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -dynamic-linker /lib/ld-linux.so.2 -o eximon.bin /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/X11R6/lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. em_version.o util-spool_in.o util-store.o util-string.o tod.o tree.o em_StripChart.o em_TextPop.o em_globals.o em_init.o em_log.o em_main.o em_menu.o em_queue.o em_strip.o em_text.o em_xs.o -lXaw -lXmu -lXt -lXext -lX11 -lpcre -lnsl -lcrypt -lm -ldl -lc -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
>>> exim monitor binary built
 
>>> exicyclog script built
>>> exinext script built
>>> exiwhat script built
>>> exigrep script built
>>> eximstats script built
>>> exipick script built
>>> exiqgrep script built
>>> exiqsumm script built
>>> transport-filter.pl script built
>>> convert4r3 script built
>>> convert4r4 script built
>>> exim_checkaccess script built

gcc exim_dbmbuild.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -o exim_dbmbuild.o exim_dbmbuild.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -o exim_dbmbuild.o exim_dbmbuild.c
gcc -o exim_dbmbuild
gcc -o exim_dbmbuild  exim_dbmbuild.o \
	  -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o exim_dbmbuild exim_dbmbuild.o -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -dynamic-linker /lib/ld-linux.so.2 -o exim_dbmbuild /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. exim_dbmbuild.o -lnsl -lcrypt -lm -ldl -ldb -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
>>> exim_dbmbuild utility built
 
gcc -DEXIM_DUMPDB exim_dbutil.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  \
				      -DCOMPILE_UTILITY \
				      -DEXIM_DUMPDB \
				      -o exim_dumpdb.o exim_dbutil.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -DCOMPILE_UTILITY -DEXIM_DUMPDB -o exim_dumpdb.o exim_dbutil.c
gcc -DCOMPILE_UTILITY os.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  \
				      -DCOMPILE_UTILITY \
				      -DOS_LOAD_AVERAGE \
				      -DFIND_RUNNING_INTERFACES \
				      -o util-os.o os.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -DCOMPILE_UTILITY -DOS_LOAD_AVERAGE -DFIND_RUNNING_INTERFACES -o util-os.o os.c
gcc -o exim_dumpdb
gcc -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -o exim_dumpdb  exim_dumpdb.o util-os.o util-store.o \
	  -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -o exim_dumpdb exim_dumpdb.o util-os.o util-store.o -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -dynamic-linker /lib/ld-linux.so.2 -o exim_dumpdb /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. exim_dumpdb.o util-os.o util-store.o -lnsl -lcrypt -lm -ldl -ldb -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
>>> exim_dumpdb utility built
 
gcc -DEXIM_FIXDB exim_dbutil.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  \
				      -DCOMPILE_UTILITY \
				      -DEXIM_FIXDB \
				      -o exim_fixdb.o exim_dbutil.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -DCOMPILE_UTILITY -DEXIM_FIXDB -o exim_fixdb.o exim_dbutil.c
gcc -o exim_fixdb
gcc -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -o exim_fixdb  exim_fixdb.o util-os.o util-store.o \
	  -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -o exim_fixdb exim_fixdb.o util-os.o util-store.o -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -dynamic-linker /lib/ld-linux.so.2 -o exim_fixdb /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. exim_fixdb.o util-os.o util-store.o -lnsl -lcrypt -lm -ldl -ldb -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
>>> exim_fixdb utility built
 
gcc -DEXIM_TIDYDB exim_dbutil.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  \
				      -DCOMPILE_UTILITY \
				      -DEXIM_TIDYDB \
				      -o exim_tidydb.o exim_dbutil.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -DCOMPILE_UTILITY -DEXIM_TIDYDB -o exim_tidydb.o exim_dbutil.c
gcc -o exim_tidydb
gcc -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  -o exim_tidydb  exim_tidydb.o util-os.o util-store.o \
	  -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -o exim_tidydb exim_tidydb.o util-os.o util-store.o -lnsl -lcrypt -lm -ldl -ldb
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -dynamic-linker /lib/ld-linux.so.2 -o exim_tidydb /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. exim_tidydb.o util-os.o util-store.o -lnsl -lcrypt -lm -ldl -ldb -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
>>> exim_tidydb utility built
 
gcc exim_lock.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  exim_lock.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden exim_lock.c
exim_lock.c: In function 'main':
exim_lock.c:583:3: warning: ignoring return value of 'system', declared with attribute warn_unused_result [-Wunused-result]
exim_lock.c:588:6: warning: ignoring return value of 'system', declared with attribute warn_unused_result [-Wunused-result]
gcc -o exim_lock
gcc -o exim_lock  exim_lock.o  \
	  -lnsl -lcrypt -lm -ldl
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o exim_lock exim_lock.o -lnsl -lcrypt -lm -ldl
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -dynamic-linker /lib/ld-linux.so.2 -o exim_lock /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. exim_lock.o -lnsl -lcrypt -lm -ldl -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
>>> exim_lock utility built
 
make[3]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/lookups'
gcc cdb.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  cdb.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden cdb.c
gcc dbmdb.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  dbmdb.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden dbmdb.c
gcc dnsdb.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  dnsdb.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden dnsdb.c
gcc dsearch.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  dsearch.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden dsearch.c
gcc lsearch.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  lsearch.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden lsearch.c
gcc nis.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  nis.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden nis.c
gcc passwd.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  passwd.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden passwd.c
gcc spf.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  spf.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden spf.c
spf.c:23:13: warning: 'dummy' defined but not used [-Wunused-function]
ar cq lookups.a
ranlib lookups.a
gcc lf_quote.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  lf_quote.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden lf_quote.c
gcc lf_check_file.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  lf_check_file.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden lf_check_file.c
gcc lf_sqlperform.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  lf_sqlperform.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden lf_sqlperform.c
make[3]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/lookups'
 
make[3]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/routers'
gcc accept.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  accept.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden accept.c
gcc dnslookup.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  dnslookup.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden dnslookup.c
gcc ipliteral.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  ipliteral.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden ipliteral.c
gcc iplookup.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  iplookup.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden iplookup.c
gcc manualroute.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  manualroute.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden manualroute.c
gcc queryprogram.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  queryprogram.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden queryprogram.c
gcc redirect.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  redirect.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden redirect.c
gcc rf_change_domain.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_change_domain.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_change_domain.c
gcc rf_expand_data.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_expand_data.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_expand_data.c
gcc rf_get_errors_address.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_get_errors_address.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_get_errors_address.c
gcc rf_get_munge_headers.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_get_munge_headers.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_get_munge_headers.c
gcc rf_get_transport.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_get_transport.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_get_transport.c
gcc rf_get_ugid.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_get_ugid.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_get_ugid.c
gcc rf_lookup_hostlist.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_lookup_hostlist.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_lookup_hostlist.c
gcc rf_queue_add.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_queue_add.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_queue_add.c
gcc rf_self_action.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_self_action.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_self_action.c
gcc rf_set_ugid.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rf_set_ugid.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rf_set_ugid.c
ar cq routers.a
ranlib routers.a
make[3]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/routers'
 
make[3]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/transports'
gcc appendfile.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  appendfile.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden appendfile.c
appendfile.c: In function 'appendfile_transport_entry':
appendfile.c:1767:7: warning: ignoring return value of 'chown', declared with attribute warn_unused_result [-Wunused-result]
appendfile.c:2569:5: warning: ignoring return value of 'chown', declared with attribute warn_unused_result [-Wunused-result]
appendfile.c:2611:5: warning: ignoring return value of 'chown', declared with attribute warn_unused_result [-Wunused-result]
appendfile.c:2703:5: warning: ignoring return value of 'chown', declared with attribute warn_unused_result [-Wunused-result]
appendfile.c:2713:3: warning: ignoring return value of 'chown', declared with attribute warn_unused_result [-Wunused-result]
appendfile.c:3091:21: warning: ignoring return value of 'ftruncate', declared with attribute warn_unused_result [-Wunused-result]
gcc autoreply.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  autoreply.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden autoreply.c
autoreply.c: In function 'autoreply_transport_entry':
autoreply.c:534:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
autoreply.c:758:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
autoreply.c:854:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
gcc lmtp.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  lmtp.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden lmtp.c
gcc pipe.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  pipe.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden pipe.c
pipe.c: In function 'pipe_transport_entry':
pipe.c:754:12: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
pipe.c:761:14: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
gcc smtp.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  smtp.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden smtp.c
gcc tf_maildir.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  tf_maildir.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden tf_maildir.c
tf_maildir.c: In function 'maildir_record_length':
tf_maildir.c:217:1: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
ar cq transports.a
ranlib transports.a
make[3]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/transports'
 
make[3]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/auths'
gcc auth-spa.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  auth-spa.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden auth-spa.c
auth-spa.c: In function 'spa_build_auth_response':
auth-spa.c:1526:3: warning: the address of 'lmRespData' will always evaluate as 'true' [-Waddress]
auth-spa.c:1527:3: warning: the address of 'ntRespData' will always evaluate as 'true' [-Waddress]
gcc b64decode.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  b64decode.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden b64decode.c
gcc b64encode.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  b64encode.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden b64encode.c
gcc call_pam.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  call_pam.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden call_pam.c
call_pam.c:24:13: warning: 'dummy' defined but not used [-Wunused-function]
gcc call_pwcheck.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  call_pwcheck.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden call_pwcheck.c
gcc call_radius.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  call_radius.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden call_radius.c
call_radius.c:28:13: warning: 'dummy' defined but not used [-Wunused-function]
gcc check_serv_cond.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  check_serv_cond.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden check_serv_cond.c
gcc cram_md5.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  cram_md5.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden cram_md5.c
gcc cyrus_sasl.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  cyrus_sasl.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden cyrus_sasl.c
cyrus_sasl.c:30:13: warning: 'dummy' defined but not used [-Wunused-function]
gcc dovecot.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  dovecot.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden dovecot.c
gcc get_data.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  get_data.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden get_data.c
gcc get_no64_data.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  get_no64_data.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden get_no64_data.c
gcc md5.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  md5.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden md5.c
gcc plaintext.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  plaintext.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden plaintext.c
gcc pwcheck.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  pwcheck.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden pwcheck.c
gcc sha1.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  sha1.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden sha1.c
gcc spa.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  spa.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden spa.c
gcc xtextdecode.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  xtextdecode.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden xtextdecode.c
gcc xtextencode.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  xtextencode.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden xtextencode.c
ar cq auths.a
ar cq auths.a auth-spa.o b64decode.o b64encode.o call_pam.o call_pwcheck.o call_radius.o check_serv_cond.o cram_md5.o cyrus_sasl.o dovecot.o get_data.o get_no64_data.o md5.o plaintext.o pwcheck.o sha1.o spa.o xtextdecode.o xtextencode.o
ranlib auths.a
make[3]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/auths'
 
make[3]: Entering directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/pdkim'
gcc base64.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  base64.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden base64.c
gcc bignum.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  bignum.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden bignum.c
gcc pdkim.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  pdkim.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden pdkim.c
gcc rsa.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  rsa.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden rsa.c
gcc sha1.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  sha1.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden sha1.c
gcc sha2.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden  sha2.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden sha2.c
ar cq pdkim.a
ar cq pdkim.a base64.o bignum.o pdkim.o rsa.o sha1.o sha2.o
ranlib pdkim.a
make[3]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64/pdkim'
 
gcc acl.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    acl.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. acl.c
gcc child.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    child.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. child.c
gcc crypt16.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    crypt16.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. crypt16.c
gcc daemon.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    daemon.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. daemon.c
gcc dbfn.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    dbfn.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. dbfn.c
dbfn.c: In function 'dbfn_open':
dbfn.c:213:9: warning: ignoring return value of 'chown', declared with attribute warn_unused_result [-Wunused-result]
gcc debug.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    debug.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. debug.c
gcc deliver.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    deliver.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. deliver.c
deliver.c: In function 'deliver_message':
deliver.c:5934:3: warning: ignoring return value of 'fchown', declared with attribute warn_unused_result [-Wunused-result]
deliver.c: In function 'deliver_local':
deliver.c:1860:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1861:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1862:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1863:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1864:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1865:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1866:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1875:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1876:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1884:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:1885:31: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c: In function 'do_remote_deliveries':
deliver.c:3904:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:3914:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:3944:9: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:3964:9: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:4000:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
deliver.c:4010:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
gcc directory.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    directory.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. directory.c
directory.c: In function 'directory_make':
directory.c:77:20: warning: ignoring return value of 'chown', declared with attribute warn_unused_result [-Wunused-result]
gcc dns.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    dns.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. dns.c
dns.c: In function 'dns_special_lookup':
dns.c:806:17: warning: variable 'weight' set but not used [-Wunused-but-set-variable]
gcc drtables.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    drtables.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. drtables.c
drtables.c: In function 'init_lookup_list':
drtables.c:457:7: warning: unused variable 'moduleerrors' [-Wunused-variable]
drtables.c:456:7: warning: unused variable 'countmodules' [-Wunused-variable]
drtables.c:454:18: warning: unused variable 'ent' [-Wunused-variable]
drtables.c:453:8: warning: unused variable 'dd' [-Wunused-variable]
gcc enq.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    enq.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. enq.c
gcc exim.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    exim.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. exim.c
exim.c: In function 'show_whats_supported':
exim.c:913:1: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'unsigned int' [-Wformat]
exim.c: In function 'main':
exim.c:3601:3: warning: ignoring return value of 'getcwd', declared with attribute warn_unused_result [-Wunused-result]
exim.c:3645:3: warning: ignoring return value of 'chdir', declared with attribute warn_unused_result [-Wunused-result]
exim.c:5126:5: warning: ignoring return value of 'chdir', declared with attribute warn_unused_result [-Wunused-result]
gcc expand.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    expand.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. expand.c
gcc filter.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    filter.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. filter.c
gcc filtertest.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    filtertest.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. filtertest.c
gcc globals.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    globals.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. globals.c
gcc dkim.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    dkim.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. dkim.c
dkim.c: In function 'dkim_exim_sign':
dkim.c:506:7: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
gcc header.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    header.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. header.c
gcc host.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    host.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. host.c
gcc ip.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    ip.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. ip.c
gcc log.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    log.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. log.c
log.c: In function 'log_write':
log.c:1071:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
gcc lss.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    lss.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. lss.c
gcc match.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    match.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. match.c
gcc moan.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    moan.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. moan.c
gcc os.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    os.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. os.c
gcc parse.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    parse.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. parse.c
gcc queue.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    queue.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. queue.c
queue.c: In function 'queue_action':
queue.c:1023:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
queue.c: In function 'queue_run':
queue.c:655:5: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
gcc rda.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    rda.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. rda.c
rda.c: In function 'rda_interpret':
rda.c:650:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:651:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:677:33: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:680:5: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:688:9: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:696:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:713:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:714:7: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:726:9: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:732:9: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:733:9: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:734:9: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c: In function 'rda_write_string':
rda.c:452:1: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
rda.c:453:16: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
gcc readconf.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    readconf.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. readconf.c
gcc receive.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    receive.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. receive.c
receive.c: In function 'receive_msg':
receive.c:2675:1: warning: ignoring return value of 'fchown', declared with attribute warn_unused_result [-Wunused-result]
receive.c:2705:3: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result [-Wunused-result]
gcc retry.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    retry.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. retry.c
gcc rewrite.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    rewrite.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. rewrite.c
gcc rfc2047.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    rfc2047.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. rfc2047.c
gcc route.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    route.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. route.c
gcc search.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    search.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. search.c
gcc sieve.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    sieve.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. sieve.c
sieve.c: In function 'parse_commands':
sieve.c:2943:20: warning: variable 'options' set but not used [-Wunused-but-set-variable]
gcc smtp_in.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    smtp_in.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. smtp_in.c
smtp_in.c: In function 'smtp_setup_msg':
smtp_in.c:3163:5: warning: ignoring return value of 'fwrite', declared with attribute warn_unused_result [-Wunused-result]
gcc smtp_out.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    smtp_out.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. smtp_out.c
gcc spool_in.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    spool_in.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. spool_in.c
spool_in.c: In function 'spool_read_header':
spool_in.c:721:3: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result]
gcc spool_out.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    spool_out.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. spool_out.c
spool_out.c: In function 'spool_open_temp':
spool_out.c:99:3: warning: ignoring return value of 'fchown', declared with attribute warn_unused_result [-Wunused-result]
gcc store.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    store.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. store.c
gcc string.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    string.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. string.c
gcc tls.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    tls.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. tls.c
In file included from tls.c:84:0:
tls-gnu.c: In function 'tls_error':
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness [-Wpointer-sign]
/usr/include/string.h:397:15: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of '__builtin_strlen' differ in signedness [-Wpointer-sign]
tls-gnu.c:177:3: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of '__builtin_strcmp' differ in signedness [-Wpointer-sign]
tls-gnu.c:177:3: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of '__builtin_strlen' differ in signedness [-Wpointer-sign]
tls-gnu.c:177:3: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of '__builtin_strcmp' differ in signedness [-Wpointer-sign]
tls-gnu.c:177:3: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of '__builtin_strcmp' differ in signedness [-Wpointer-sign]
tls-gnu.c:177:3: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of '__builtin_strcmp' differ in signedness [-Wpointer-sign]
tls-gnu.c:177:3: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c:177:3: warning: pointer targets in passing argument 1 of 'strncmp' differ in signedness [-Wpointer-sign]
/usr/include/string.h:145:12: note: expected 'const char *' but argument is of type 'uschar *'
tls-gnu.c: In function 'tls_server_start':
tls-gnu.c:885:3: warning: pointer targets in passing argument 1 of 'tls_error' differ in signedness [-Wpointer-sign]
tls-gnu.c:172:1: note: expected 'uschar *' but argument is of type 'char *'
tls-gnu.c: In function 'record_io_error':
tls-gnu.c:1120:7: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
tls.c: At top level:
tls-gnu.c:42:13: warning: 'ssl_errstring' defined but not used [-Wunused-variable]
tls.c: In function 'init_dh':
tls-gnu.c:382:3: warning: ignoring return value of 'fchown', declared with attribute warn_unused_result [-Wunused-result]
gcc transport.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    transport.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. transport.c
transport.c: In function 'dkim_transport_write_message':
transport.c:989:9: warning: variable 'size' set but not used [-Wunused-but-set-variable]
transport.c: In function 'transport_write_message':
transport.c:1231:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
transport.c:1232:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
transport.c:1233:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
transport.c:1344:7: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
transport.c:1347:9: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
transport.c:1348:9: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
gcc verify.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    verify.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. verify.c
gcc local_scan.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.  -o local_scan.o ../src/local_scan.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. -o local_scan.o ../src/local_scan.c
../src/local_scan.c: In function 'local_scan':
../src/local_scan.c:34:17: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
../src/local_scan.c:44:22: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
../src/local_scan.c: In function 'load_local_scan_library':
../src/local_scan.c:65:1: warning: pointer targets in passing argument 1 of 'dlopen' differ in signedness [-Wpointer-sign]
/usr/include/dlfcn.h:57:14: note: expected 'const char *' but argument is of type 'uschar *'
gcc malware.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    malware.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. malware.c
gcc mime.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    mime.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. mime.c
gcc regex.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    regex.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. regex.c
gcc spam.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    spam.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. spam.c
gcc spool_mbox.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    spool_mbox.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. spool_mbox.c
gcc demime.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    demime.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. demime.c
gcc bmi_spam.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    bmi_spam.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. bmi_spam.c
gcc spf.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    spf.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. spf.c
gcc srs.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    srs.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. srs.c
gcc dcc.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I.    dcc.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden -I. dcc.c
 
awk '{ print ($1+1) }' cnumber.h > cnumber.temp
rm -f cnumber.h; mv cnumber.temp cnumber.h
gcc version.c
gcc -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden    version.c
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -c -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -O2 -fvisibility=hidden version.c
rm -f exim
gcc -o exim
gcc -o exim  acl.o child.o crypt16.o daemon.o dbfn.o debug.o deliver.o directory.o dns.o drtables.o enq.o exim.o expand.o filter.o filtertest.o globals.o dkim.o header.o host.o ip.o log.o lss.o match.o moan.o os.o parse.o queue.o rda.o readconf.o receive.o retry.o rewrite.o rfc2047.o route.o search.o sieve.o smtp_in.o smtp_out.o spool_in.o spool_out.o store.o string.o tls.o tod.o transport.o tree.o verify.o lookups/lf_quote.o lookups/lf_check_file.o lookups/lf_sqlperform.o local_scan.o  malware.o mime.o regex.o spam.o spool_mbox.o demime.o bmi_spam.o spf.o srs.o dcc.o version.o \
	  routers/routers.a transports/transports.a lookups/lookups.a \
	  auths/auths.a pdkim/pdkim.a \
	  -lresolv -lnsl -lcrypt -lm   -ldl \
	   -ldb   \
	   -lgnutls -lpcre -rdynamic
/usr/bin/gcc-4.6.real -D_FORTIFY_SOURCE=2 -o exim acl.o child.o crypt16.o daemon.o dbfn.o debug.o deliver.o directory.o dns.o drtables.o enq.o exim.o expand.o filter.o filtertest.o globals.o dkim.o header.o host.o ip.o log.o lss.o match.o moan.o os.o parse.o queue.o rda.o readconf.o receive.o retry.o rewrite.o rfc2047.o route.o search.o sieve.o smtp_in.o smtp_out.o spool_in.o spool_out.o store.o string.o tls.o tod.o transport.o tree.o verify.o lookups/lf_quote.o lookups/lf_check_file.o lookups/lf_sqlperform.o local_scan.o malware.o mime.o regex.o spam.o spool_mbox.o demime.o bmi_spam.o spf.o srs.o dcc.o version.o routers/routers.a transports/transports.a lookups/lookups.a auths/auths.a pdkim/pdkim.a -lresolv -lnsl -lcrypt -lm -ldl -ldb -lgnutls -lpcre -rdynamic
/usr/bin/ld.bfd.real --build-id --no-add-needed --eh-frame-hdr -m elf_i386 --hash-style=both -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -o exim /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crt1.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crti.o /usr/lib/gcc/i486-linux-gnu/4.6.1/crtbegin.o -L/usr/lib/gcc/i486-linux-gnu/4.6.1 -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/i486-linux-gnu/4.6.1/../../.. acl.o child.o crypt16.o daemon.o dbfn.o debug.o deliver.o directory.o dns.o drtables.o enq.o exim.o expand.o filter.o filtertest.o globals.o dkim.o header.o host.o ip.o log.o lss.o match.o moan.o os.o parse.o queue.o rda.o readconf.o receive.o retry.o rewrite.o rfc2047.o route.o search.o sieve.o smtp_in.o smtp_out.o spool_in.o spool_out.o store.o string.o tls.o tod.o transport.o tree.o verify.o lookups/lf_quote.o lookups/lf_check_file.o lookups/lf_sqlperform.o local_scan.o malware.o mime.o regex.o spam.o spool_mbox.o demime.o bmi_spam.o spf.o srs.o dcc.o version.o routers/routers.a transports/transports.a lookups/lookups.a auths/auths.a pdkim/pdkim.a -lresolv -lnsl -lcrypt -lm -ldl -ldb -lgnutls -lpcre -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i486-linux-gnu/4.6.1/crtend.o /usr/lib/gcc/i486-linux-gnu/4.6.1/../../../../lib/crtn.o
 
>>> exim binary built
 
make[2]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree/build-Linux-x86_64'
make[1]: Leaving directory `/tmp/EXIM4/exim-4.75/build-tree'
cd /tmp/EXIM4/exim-4.75/build-tree && mv build-${build:-`/bin/sh scripts/os-type`-`/bin/sh scripts/arch-type`} build-exim4-daemon-light
dh_testdir
touch build-arch-stamp
dh_testdir
# Add here command to compile/build the arch indep package.
# It's ok not to do anything here, if you don't need to build
#  anything for this package.
#/usr/bin/docbook-to-man /tmp/EXIM4/exim-4.75/debian/exim.sgml > exim.1
touch build-indep-stamp
XXXXXXXXXXXXXXXXXXXX
Segmentation fault

--- End Message ---
--- Begin Message ---
Version: 2.13-1

On Sun, Apr 10, 2011 at 12:18:43PM +0300, Török Edwin wrote:
> Marc Glisse wrote:
> > Hello,
> > 
> > in the prototype of memmove (taken from glibc bits/string3.h), you will 
> > notice __restrict in front of the arguments. This is not present in more 
> > recent glibc versions and is a likely cause of your trouble.
> > 
> 
> Indeed if I remove __restrict the bug is gone, and if I upgrade to libc6
> 2.13-0exp5, VLC's dec.c seems to be compiled correctly too.

This bug has been fixed in eglibc 2.13-1. Closing the bug.

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net


--- End Message ---

Reply to: