From: dtrg Date: Sun, 23 Jul 2006 19:58:27 +0000 (+0000) Subject: Modified to no longer build unoptimised duplicates of all the standard X-Git-Tag: release-6-0-pre-1~81 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=babe9eafad007b45e80bacf874b316051f22d35b;p=ack.git Modified to no longer build unoptimised duplicates of all the standard string functions (strcpy, strlen, etc). --- diff --git a/modules/src/string/pmfile b/modules/src/string/pmfile index f33cad581..3090ce637 100644 --- a/modules/src/string/pmfile +++ b/modules/src/string/pmfile @@ -13,15 +13,15 @@ module_string = clibrary { cfile (d.."long2str.c"), cfile (d.."str2bts.c"), cfile (d.."str2long.c"), - cfile (d.."strcat.c"), - cfile (d.."strcmp.c"), - cfile (d.."strcpy.c"), - cfile (d.."strindex.c"), - cfile (d.."strlen.c"), - cfile (d.."strncat.c"), - cfile (d.."strncmp.c"), - cfile (d.."strncpy.c"), - cfile (d.."strrindex.c"), +-- cfile (d.."strcat.c"), +-- cfile (d.."strcmp.c"), +-- cfile (d.."strcpy.c"), +-- cfile (d.."strindex.c"), +-- cfile (d.."strlen.c"), +-- cfile (d.."strncat.c"), +-- cfile (d.."strncmp.c"), +-- cfile (d.."strncpy.c"), +-- cfile (d.."strrindex.c"), cfile (d.."strzero.c"), outputs = {"%U%/lib_string.a"}, @@ -32,6 +32,10 @@ module_string = clibrary { -- Revision history -- $Log$ --- Revision 1.1 2006-07-20 23:18:18 dtrg +-- Revision 1.2 2006-07-23 19:58:27 dtrg +-- Modified to no longer build unoptimised duplicates of all the standard +-- string functions (strcpy, strlen, etc). +-- +-- Revision 1.1 2006/07/20 23:18:18 dtrg -- First version in CVS. --