Package: clinfo Version: 2.1.16.01.12-1 Severity: important Tags: patch User: [email protected] Usertags: hurd
Hello, clinfo FTBFS on !linux archs because it doesn't pass -ldl. The attached patch fixes that. Samuel -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 'testing-debug'), (500, 'buildd-unstable'), (500, 'unstable'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental-debug'), (1, 'buildd-experimental'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.8.0-1-amd64 (SMP w/4 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) -- Samuel Cliquez sur le lien qui suit dans ce mail...vous n'avez plus qu'a vous inscrire pour gagner de l'argent en restant connecte....et puis faites passer le message et vous gagnerez encore plus d'argent ... -+- AC in NPC : Neuneu a rencontré le Pere Noël -+-
--- Makefile.original 2016-11-23 01:08:51.000000000 +0000 +++ Makefile 2016-11-23 01:10:07.000000000 +0000 @@ -15,6 +15,12 @@ ifeq ($(PLATFORM),Linux) LDLIBS += -ldl endif +ifeq ($(PLATFORM),GNU) + LDLIBS += -ldl +endif +ifeq ($(PLATFORM),GNU/kFreeBSD) + LDLIBS += -ldl +endif CFLAGS+=-std=c99 -g -Wall -Wextra

