Skip to content

Commit

Permalink
Merge pull request #528 from yorickhardy/master
Browse files Browse the repository at this point in the history
Define *ai-v4mapped* to zero on platforms where AI_V4MAPPED is undefined
  • Loading branch information
justinethier authored Mar 6, 2024
2 parents a6aa16d + bb3df95 commit 706f7ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srfi/106.sld
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@
#ifdef AI_V4MAPPED
return_closcall1(data, k, obj_int2obj(AI_V4MAPPED));
#else
Cyc_rt_raise_msg(data, \"AI_V4MAPPED is not available on this platform\");
return_closcall1(data, k, obj_int2obj(0));
#endif
")
(define *ai-all* (ai-all))
Expand All @@ -398,7 +398,7 @@
#ifdef AI_ALL
return_closcall1(data, k, obj_int2obj(AI_ALL));
#else
Cyc_rt_raise_msg(data, \"AI_ALL is not available on this platform\");
return_closcall1(data, k, obj_int2obj(0));
#endif
")
(make-const ai-addrconfig "AI_ADDRCONFIG" )
Expand Down

0 comments on commit 706f7ef

Please sign in to comment.