diff options
author | shaun <shaun@FreeBSD.org> | 2006-10-10 00:26:20 +0800 |
---|---|---|
committer | shaun <shaun@FreeBSD.org> | 2006-10-10 00:26:20 +0800 |
commit | 639fe627300fb615bdb232e7e942d37c888b50a8 (patch) | |
tree | e22d7dd47726212c3cc73b30750009d1d5e200b8 /math | |
parent | fe4d9f6fc555ebfca272cb931569a2dd3bd7cabb (diff) | |
download | freebsd-ports-gnome-639fe627300fb615bdb232e7e942d37c888b50a8.tar.gz freebsd-ports-gnome-639fe627300fb615bdb232e7e942d37c888b50a8.tar.zst freebsd-ports-gnome-639fe627300fb615bdb232e7e942d37c888b50a8.zip |
Preemptively fix build for gcc 4.1.
PR: ports/104130
Submitted by: trasz <trasz@pin.if.uz.zgora.pl>
Diffstat (limited to 'math')
-rw-r--r-- | math/physcalc/files/patch-physnode.c | 18 | ||||
-rw-r--r-- | math/physcalc/pkg-plist | 20 |
2 files changed, 28 insertions, 10 deletions
diff --git a/math/physcalc/files/patch-physnode.c b/math/physcalc/files/patch-physnode.c new file mode 100644 index 000000000000..0e2ca9307898 --- /dev/null +++ b/math/physcalc/files/patch-physnode.c @@ -0,0 +1,18 @@ +--- physnode.c.orig Sat Oct 7 21:33:27 2006 ++++ physnode.c Sat Oct 7 21:33:30 2006 +@@ -305,12 +305,12 @@ + } + + EXPORT void bytecopy(dst, src, bytes) +-VOID *dst; +-VOID const *src; ++char *dst; ++char const *src; + int bytes; + { + while (bytes--) +- *((char *)dst)++ = *((char const *)src)++; ++ *dst++ = *src++; + } + + EXPORT NODEP copynode(n) /* Create a duplicate of node n (including sub-nodes) */ diff --git a/math/physcalc/pkg-plist b/math/physcalc/pkg-plist index f8740c42d526..77e8ef80cbad 100644 --- a/math/physcalc/pkg-plist +++ b/math/physcalc/pkg-plist @@ -1,11 +1,11 @@ bin/physcalc -share/physcalc/astro.phy -share/physcalc/bits.phy -share/physcalc/british.phy -share/physcalc/light.phy -share/physcalc/math.phy -share/physcalc/money.phy -share/physcalc/nuclear.phy -share/physcalc/paper.phy -share/physcalc/physcalc.phy -@dirrm share/physcalc +%%DATADIR%%/astro.phy +%%DATADIR%%/bits.phy +%%DATADIR%%/british.phy +%%DATADIR%%/light.phy +%%DATADIR%%/math.phy +%%DATADIR%%/money.phy +%%DATADIR%%/nuclear.phy +%%DATADIR%%/paper.phy +%%DATADIR%%/physcalc.phy +@dirrm %%DATADIR%% |