all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob ac834dd504e2540ac59381d950c5be5d720b0b37 973 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
This patch works around a name clash between the 'cstring-pointer' module and
the 'cstring-module' variable that occurs in Guile 2.0:

  ice-9/boot-9.scm:109:20: re-exporting local variable: cstring-pointer

--- guile-bytestructures-20170402.91d042e-checkout/bytestructures/guile.scm	2017-07-25 17:04:32.858289986 +0200
+++ guile-bytestructures-20170402.91d042e-checkout/bytestructures/guile.scm	2017-07-25 17:04:41.130244725 +0200
@@ -1,6 +1,6 @@
 (define-module (bytestructures guile))
 
-(import
+(use-modules
  (bytestructures guile base)
  (bytestructures guile vector)
  (bytestructures guile struct)
@@ -8,7 +8,7 @@
  (bytestructures guile pointer)
  (bytestructures guile numeric)
  (bytestructures guile string)
- (bytestructures guile cstring-pointer))
+ ((bytestructures guile cstring-pointer) #:prefix cstr:))
 (re-export
  make-bytestructure-descriptor
  bytestructure-descriptor?
@@ -75,5 +75,5 @@
 
  bs:string
 
- cstring-pointer
+ cstr:cstring-pointer
  )

debug log:

solving ac834dd50 ...
found ac834dd50 in https://git.savannah.gnu.org/cgit/guix.git

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.