Commit 5f4a9ef8 authored by Jason Madden's avatar Jason Madden

Get the globbing right for windows.

parent f17a6fa4
...@@ -91,11 +91,10 @@ ARES.optional = not RUNNING_ON_TRAVIS ...@@ -91,11 +91,10 @@ ARES.optional = not RUNNING_ON_TRAVIS
if CARES_EMBED: if CARES_EMBED:
ARES.sources += glob_many('deps/c-ares/*.c') ARES.sources += glob_many('deps/c-ares/*.c')
print("SOURCES", ARES.sources)
# Strip the standalone binaries that would otherwise # Strip the standalone binaries that would otherwise
# cause linking issues # cause linking issues
for bin_c in ('acountry', 'adig', 'ahost'): for bin_c in ('acountry', 'adig', 'ahost'):
ARES.sources.remove('deps/c-ares/' + bin_c + '.c') ARES.sources.remove('deps/c-ares' + os.sep + bin_c + '.c')
ARES.configure = configure_ares ARES.configure = configure_ares
if WIN: if WIN:
ARES.libraries += ['advapi32'] ARES.libraries += ['advapi32']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment