summaryrefslogtreecommitdiff
path: root/math/calc/files/patch-ae
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>2002-11-04 21:09:01 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>2002-11-04 21:09:01 +0000
commitd9d34442c2d34ff677ec777db03580e0c55743a7 (patch)
tree27b8f0b519bb498f068a15d519b970a0a284b9fa /math/calc/files/patch-ae
parentDefine USE_PERL5 when the port specifies ${PERL} in CONFIGURE_ARGS. (diff)
Upgrade to version 2.11.5t4.5
PR: ports/44132 Submitted by: Sergey A.Osokin <osa@FreeBSD.org.ru>
Notes
Notes: svn path=/head/; revision=69467
Diffstat (limited to 'math/calc/files/patch-ae')
-rw-r--r--math/calc/files/patch-ae18
1 files changed, 0 insertions, 18 deletions
diff --git a/math/calc/files/patch-ae b/math/calc/files/patch-ae
deleted file mode 100644
index 241bead76932..000000000000
--- a/math/calc/files/patch-ae
+++ /dev/null
@@ -1,18 +0,0 @@
---- lib_calc.c.orig Mon Feb 7 22:08:08 2000
-+++ lib_calc.c Mon Feb 7 22:10:42 2000
-@@ -407,9 +407,13 @@
- if (ent == NULL) {
- /* just assume . is home if all else fails */
- home = ".";
-+ } else {
-+ home = (char *)malloc(strlen(ent->pw_dir)+1);
-+ if (home == NULL)
-+ home = ".";
-+ else
-+ strcpy(home, ent->pw_dir);
- }
-- home = (char *)malloc(strlen(ent->pw_dir)+1);
-- strcpy(home, ent->pw_dir);
- }
-
- /* determine the $PAGER value */