diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-09-15 17:13:22 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-09-15 17:13:22 +0000 |
commit | 8378b3e444fe097be404f0e50d0e65f5fac648b6 (patch) | |
tree | 2f6d708fca0a334484e1c68b703817490efff338 /audio/rsynth | |
parent | 222ecfdf5d16a0078eeb8593028cc93830c80457 (diff) | |
download | ports-8378b3e444fe097be404f0e50d0e65f5fac648b6.tar.gz ports-8378b3e444fe097be404f0e50d0e65f5fac648b6.zip |
Fix build with recent GCC.
Reported by: pointyhat.freebsd.org
Approved by: portmgr (marcus), fjoe (mentor, implicit)
Notes
Notes:
svn path=/head/; revision=118183
Diffstat (limited to 'audio/rsynth')
-rw-r--r-- | audio/rsynth/files/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/rsynth/files/configure b/audio/rsynth/files/configure index ae5e11cfeb0a..4697d8f5e4ad 100644 --- a/audio/rsynth/files/configure +++ b/audio/rsynth/files/configure @@ -1301,7 +1301,7 @@ cat > conftest.$ac_ext <<EOF int main() { return 0; } int t() { -atan() +atan(0) ; return 0; } EOF if eval $ac_link; then @@ -1340,7 +1340,7 @@ cat > conftest.$ac_ext <<EOF int main() { return 0; } int t() { -atan() +atan(0) ; return 0; } EOF if eval $ac_link; then |