Skip to content

Commit

Permalink
Merge pull request #110 from Microsoft/remove-uuid
Browse files Browse the repository at this point in the history
Don't link with libuuid either
  • Loading branch information
tavianator committed Dec 11, 2018
2 parents e0acd5d + 22ca3f4 commit 032ecd6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions glk_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
ffibuilder = FFI()

with open('src/glk_comm.c') as f:
libraries = []
if platform.system() == 'Linux':
libraries.append("uuid")

ffibuilder.set_source("glk", f.read(), libraries=libraries)
ffibuilder.set_source("glk", f.read())

ffibuilder.cdef(r"""
struct sock_names {
Expand Down

0 comments on commit 032ecd6

Please sign in to comment.