Skip to content

Commit

Permalink
The microperl config didn't know about usemallocwrap yet.
Browse files Browse the repository at this point in the history
p4raw-id: //depot/perl@23022
  • Loading branch information
Marcus Holland-Moritz committed Jul 1, 2004
1 parent 2b140d5 commit 6f980a5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
30 changes: 30 additions & 0 deletions uconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -1377,6 +1377,18 @@
*/
/*#define PERL_OTHERLIBDIRS "" / **/

/* INSTALL_PREFIX:
* This symbol contains the "root" of installation tree for this package.
* The program should be prepared to do ~ expansion.
*/
/* INSTALL_PREFIX_EXP:
* This symbol contains the "root" of installation tree for this package
* to be used in programs that are not prepared to deal with ~ expansion
* at run-time.
*/
#define INSTALL_PREFIX "" /**/
#define INSTALL_PREFIX_EXP "" /**/

/* PRIVLIB:
* This symbol contains the name of the private library for this package.
* The library is private in the sense that it needn't be in anyone's
Expand Down Expand Up @@ -2150,6 +2162,11 @@
*/
/*#define MYMALLOC / **/

/* PERL_MALLOC_WRAP:
* This symbol, if defined, indicates that we'd like malloc wrap checks.
*/
/*#define PERL_MALLOC_WRAP / **/

/* CAN_PROTOTYPE:
* If defined, this macro indicates that the C compiler can handle
* function prototypes.
Expand Down Expand Up @@ -3204,6 +3221,19 @@
#define NVSIZE 8 /**/
#undef NV_PRESERVES_UV
#define NV_PRESERVES_UV_BITS 0
#if UVSIZE == 8
# ifdef BYTEORDER
# if BYTEORDER == 0x1234
# undef BYTEORDER
# define BYTEORDER 0x12345678
# else
# if BYTEORDER == 0x4321
# undef BYTEORDER
# define BYTEORDER 0x87654321
# endif
# endif
# endif
#endif

/* IVdf:
* This symbol defines the format string used for printing a Perl IV
Expand Down
1 change: 1 addition & 0 deletions uconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ usefaststdio='undef'
useithreads='undef'
uselargefiles='undef'
uselongdouble='undef'
usemallocwrap='undef'
usemorebits='undef'
usemultiplicity='undef'
usemymalloc='n'
Expand Down

0 comments on commit 6f980a5

Please sign in to comment.