Subject: CVS commit: pkgsrc/print/a2ps
From: John Marino
Date: 2012-03-23 19:44:23
Message id: 20120323184423.A60CE175DD@cvs.netbsd.org

Log Message:
print/a2ps: Fix mempcpy for DragonFly

a2ps is inconsistent with it's use of mempcpy.  For lib/path-concat.c and
lib/strftime.c, it's looking for "mempcpy", but for src/regex.c it is
looking for __mempcpy.

DragonFly has mempcpy in string.h, so just patch the problematic
lib/path-concat.c to stop it from being redefined.  HAVE_MEMPCPY isn't
defined correctly and if it were it would break at regex.c.  The string.h
header and mempcpy definition are mutually exclusive in strftime.c file
so this one didn't need a patch.

Files:
RevisionActionfile
1.13modifypkgsrc/print/a2ps/distinfo
1.1addpkgsrc/print/a2ps/patches/patch-lib_path-concat.c