[15:37] does anyone know if gcc 4.5 has become more strict with regards to link order? (eg I can't build using gcc -o foo -lX11 foo.c) [15:51] alf_: ld --as-needed is the default. link order is relevant, so move the objects before the libraries [15:52] doko: thanks, it turned out this was the fault of a program using AM_LDFLAGS instead of AM_LDADD.