mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-15 10:03:10 +00:00
Fix non-osx builds again.
This commit is contained in:
parent
c6a221d421
commit
c0e54589b5
1 changed files with 4 additions and 2 deletions
6
setup.py
6
setup.py
|
|
@ -629,6 +629,9 @@ if os.name == 'nt':
|
|||
else:
|
||||
extra_compile_args.append("-pedantic")
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
define_macros.extend(('HAVE_STRLCPY', None), ('HAVE_STRLCAT', None))
|
||||
|
||||
myname = "Bastian Kleineidam"
|
||||
myemail = "bastian.kleineidam@web.de"
|
||||
|
||||
|
|
@ -932,8 +935,7 @@ o a command line, GUI and web interface
|
|||
extra_compile_args = extra_compile_args,
|
||||
library_dirs = library_dirs,
|
||||
libraries = libraries,
|
||||
define_macros = define_macros + [('YY_NO_INPUT', None),
|
||||
('HAVE_STRLCPY', None), ('HAVE_STRLCAT', None)],
|
||||
define_macros = define_macros + [('YY_NO_INPUT', None)],
|
||||
include_dirs = include_dirs + [normpath("linkcheck/HtmlParser")],
|
||||
),
|
||||
Extension("linkcheck.network._network",
|
||||
|
|
|
|||
Loading…
Reference in a new issue