in reply to Is there perchance a %Config::Config key that will tell me if USE_LOCALE_NUMERIC is defined in my build of perl ?

Maybe looks like it's mentioned in what Config::bincompat_options() returns (which lists "C pre-processor options used when compiling this perl binary"). That's where the output in the perl -V is coming from (I believe . . .).

DB<3> x grep /USE_LOC/, Config::bincompat_options() 0 'USE_LOCALE_COLLATE' 1 'USE_LOCALE_NUMERIC' 2 'USE_LOCALE_TIME'

The cake is a lie.
The cake is a lie.
The cake is a lie.

  • Comment on Re: Is there perchance a %Config::Config key that will tell me if USE_LOCALE_NUMERIC is defined in my build of perl ?
  • Select or Download Code

Replies are listed 'Best First'.
Re^2: Is there perchance a %Config::Config key that will tell me if USE_LOCALE_NUMERIC is defined in my build of perl ?
by syphilis (Archbishop) on Mar 18, 2022 at 21:38 UTC
    Thank you for digging that up for me, Fletch.

    Cheers,
    Rob