Bug#676026: excellent-bifurcation: FTBFS: ld: cannot find -lalleg-4.2.2

2012-06-04 Thread Lucas Nussbaum
Source: excellent-bifurcation
Version: 0.0.20071015-4
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120604 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 gcc ./main.o ./sound.o ./menu.o ./display_init.o ./eclass.o ./level.o 
 ./display.o ./game.o ./pbullet.o ./pickup.o ./palette.o ./ebullet.o ./enemy.o 
 ./input.o ./cloud.o ./stuff.o -o excellent-bifurcation -lalleg-4.2.2 
 `pkg-config libxdg-basedir --libs` -lm
 /usr/bin/ld: cannot find -lalleg-4.2.2
 collect2: error: ld returned 1 exit status

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2012/06/04/excellent-bifurcation_0.0.20071015-4_unstable.log

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676026: excellent-bifurcation: FTBFS: ld: cannot find -lalleg-4.2.2

2012-06-04 Thread Andreas Rönnquist
To solve this, please link against -lalleg, instead of -lalleg-4.2.2 -
Simple patch against Makefile applied.

/Andreas
--- a/src/Makefile
+++ b/src/Makefile
@@ -3,7 +3,7 @@
 PKGCONFIG_FILES=libxdg-basedir
 PKGCONFIG_CFLAGS= `pkg-config $(PKGCONFIG_FILES) --cflags`
 PKGCONFIG_LDFLAGS= `pkg-config $(PKGCONFIG_FILES) --libs`
-LDFLAGS=-lalleg-4.2.2
+LDFLAGS=-lalleg
 SOURCES=$(shell find . -name *.c)
 OBJECTS=$(SOURCES:.c=.o)
 EXECUTABLE=excellent-bifurcation