Skip to content
Snippets Groups Projects
Commit 53142109 authored by Andreas Enge's avatar Andreas Enge
Browse files

gnu: bluez: Install the library and header files.

* gnu/packages/linux.scm (bluez)[arguments]: Add --enable-library to
  #:configure-flags.
parent 2e88d113
No related branches found
No related tags found
No related merge requests found
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013, 2014, 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch> ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
...@@ -308,7 +308,7 @@ (define-public linux-libre ...@@ -308,7 +308,7 @@ (define-public linux-libre
(license gpl2) (license gpl2)
(home-page "http://www.gnu.org/software/linux-libre/")))) (home-page "http://www.gnu.org/software/linux-libre/"))))
;;; ;;;
;;; Pluggable authentication modules (PAM). ;;; Pluggable authentication modules (PAM).
;;; ;;;
...@@ -354,7 +354,7 @@ (define-public linux-pam ...@@ -354,7 +354,7 @@ (define-public linux-pam
at login. Local and dynamic reconfiguration are its key features") at login. Local and dynamic reconfiguration are its key features")
(license bsd-3))) (license bsd-3)))
;;; ;;;
;;; Miscellaneous. ;;; Miscellaneous.
;;; ;;;
...@@ -1582,7 +1582,7 @@ (define-public eudev ...@@ -1582,7 +1582,7 @@ (define-public eudev
;; Work around undefined reference to ;; Work around undefined reference to
;; 'mq_getattr' in sc-daemon.c. ;; 'mq_getattr' in sc-daemon.c.
"LDFLAGS=-lrt") "LDFLAGS=-lrt")
#:phases #:phases
(alist-cons-before (alist-cons-before
'build 'pre-build 'build 'pre-build
;; The program 'g-ir-scanner' (part of the package ;; The program 'g-ir-scanner' (part of the package
...@@ -2203,7 +2203,8 @@ (define-public bluez ...@@ -2203,7 +2203,8 @@ (define-public bluez
(arguments (arguments
'(#:configure-flags '(#:configure-flags
(let ((out (assoc-ref %outputs "out"))) (let ((out (assoc-ref %outputs "out")))
(list "--disable-systemd" (list "--enable-library"
"--disable-systemd"
;; Install dbus/udev files to the correct location. ;; Install dbus/udev files to the correct location.
(string-append "--with-dbusconfdir=" out "/etc") (string-append "--with-dbusconfdir=" out "/etc")
(string-append "--with-udevdir=" out "/lib/udev"))))) (string-append "--with-udevdir=" out "/lib/udev")))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment