freebsd-ports/deskutils/xmdiary/scripts/nomalloc
Thomas Gellekum 8334376110 Import xmdiary port. xmdiary is another calendar, appointment book,
organizer.

PR:		4658
Submitted by:	Mikhail Teterin <mi@aldan.ziplink.net>
1998-03-09 13:05:01 +00:00

16 lines
215 B
Bash

#!/bin/sh
for f in `find $1 -type f -name \*.\[ch\] -print | xargs grep -l malloc.h`
do
patch -p << END_OF_PATCH
--- $f.orig
+++ $f
@@ -10,1 +10,1 @@
-#include <malloc.h>
+#include <stdlib.h>
END_OF_PATCH
done