On OpenSolaris ($^O eq 'solaris', vers. 2.11), I'm trying to build an XS module which uses the XPGv4v2/Single Unix Spec. understanding of struct msghdr, specifically for "ancillary data" interrogation.

However, the native perl (v5.8.4) was built without the requisite defines, and so the struct msghdr visible within my XS file is the older, BSD kind::

#include "EXTERN.h"
#include "perl.h"      /* older, "msg_accrights"-style msghdr now visible */
#include "XSUB.h"

....
  struct msghdr m;
  m.msg_control = buf;  /* ERROR, structure has no member named "msg_control" */
....

Supplying the "right" #defines (_XOPEN_SOURCE and _XOPEN_SOURCE_EXTENDED) breaks the build, since it changes a great many things that perl was expecting.

Is there an elegant way I can have the XS module use the structure definition I'd like?

link|improve this question

Any chance you can build a newer perl first and then build your XS model against that? – Ether Jan 20 '10 at 16:11
@Ether, yes, but I'd like the module to be available for OpenSolaris systems that cannot run a rebuilt perl, if at all possible. – pilcrow Jan 20 '10 at 16:27
feedback

1 Answer

up vote 2 down vote accepted

You either have to use the definitions that your existing perl understands, or compile a new perl with the definitions that you want.

You don't need to replace the existing perl, though. You can install the new perl separately so they don't conflict.

If you want it both ways, you have to figure out which definitions your Perl has and write code that handles the right set of definitions. You might add a layer of abstraction so you can implement the underlying bits with either set of definitions. It's a lot of repeated code probably, but that's what portability is, unfortunately. :(

link|improve this answer
+1 You've spurred me in another direction, however, and I think there'll be a distinct follow-up question. – pilcrow Jan 20 '10 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.