We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0111aa commit 0ef6cfdCopy full SHA for 0ef6cfd
1 file changed
configure
@@ -136,6 +136,11 @@ parser.add_option("--dest-cpu",
136
dest="dest_cpu",
137
help="CPU architecture to build for. Valid values are: arm, ia32, x64")
138
139
+parser.add_option("--no-ifaddrs",
140
+ action="store_true",
141
+ dest="no_ifaddrs",
142
+ help="Use on deprecated SunOS systems that do not support ifaddrs.h")
143
+
144
(options, args) = parser.parse_args()
145
146
@@ -328,6 +333,9 @@ def configure_openssl(o):
328
333
if options.without_ssl:
329
334
return
330
335
336
+ if options.no_ifaddrs:
337
+ o['defines'] += ['SUNOS_NO_IFADDRS']
338
331
339
if options.no_ssl2:
332
340
o['defines'] += ['OPENSSL_NO_SSL2=1']
341
0 commit comments