In metaconfig.git, the branch master has been updated <http://perl5.git.perl.org/metaconfig.git/commitdiff/a82a0543fd4a7c8c5bb23470e3a8246e83590461?hp=0ba424565b8039c310e6e9f3b32ac69a9720d7db>
- Log ----------------------------------------------------------------- commit a82a0543fd4a7c8c5bb23470e3a8246e83590461 Author: H.Merijn Brand - Tux <[email protected]> Date: Sat Mar 26 09:31:23 2016 +0100 Add probe for memmem ----------------------------------------------------------------------- Summary of changes: U/perl/d_memmem.U | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 U/perl/d_memmem.U diff --git a/U/perl/d_memmem.U b/U/perl/d_memmem.U new file mode 100644 index 0000000..404b098 --- /dev/null +++ b/U/perl/d_memmem.U @@ -0,0 +1,23 @@ +?RCS: You may distribute under the terms of either the GNU General Public +?RCS: License or the Artistic License, as specified in the README file. +?RCS: +?MAKE:d_memmem: Inlibc +?MAKE: -pick add $@ %< +?S:d_memmem: +?S: This variable conditionally defines the HAS_MEMMEM symbol, which +?S: indicates to the C program that the memmem() routine is available +?S: to return a pointer to the start of the first occurance of a +?S: substring in a memory area (or NULL if not found). +?S:. +?C:HAS_MEMMEM: +?C: This symbol, if defined, indicates that the memmem routine is +?C: available to return a pointer to the start of the first occurance +?C: of a substring in a memory area (or NULL if not found). +?C:. +?H:#$d_memmem HAS_MEMMEM /**/ +?H:. +?LINT:set d_memmem +: see if memmem exists +set memmem d_memmem +eval $inlibc + -- perl5 metaconfig repository
