summaryrefslogtreecommitdiff
blob: 6cc0afa28902058659fee5fb70e2349566aaee93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- povray-3.6.1/configure.ac	2006-01-15 20:11:41.000000000 +0000
+++ povray-3.6.1/configure.ac	2006-01-15 20:11:19.000000000 +0000
@@ -1051,11 +1051,19 @@
       # PPC 7400 (aka G4).  To be precise, the vector instructions are new
       # in the four digit model number PowerPC processors (aka G4), but gcc
       # cannot (as of February 2003) use them automatically anyway! [trf]
-      for pov_flags in "-mpowerpc" "-mcpu=750 -mtune=7450" "-mmultiple" "-mstring" "-mfused-madd"; do
+      if "$host" != powerpc64* ; then
+          for pov_flags in "-mpowerpc" "-mcpu=750 -mtune=7450"; do
+            POV_PROG_CXX_FLAGS([$pov_flags],
+              [if test "$subdirs"; then { POV_PROG_CC_FLAGS([$pov_flags]) }; fi]
+            )
+          done
+      fi
+      for pov_flags in "-mmultiple" "-mstring" "-mfused-madd"; do
         POV_PROG_CXX_FLAGS([$pov_flags],
-          [if test "$subdirs"; then { POV_PROG_CC_FLAGS([$pov_flags]) }; fi]
+            [if test "$subdirs"; then { POV_PROG_CC_FLAGS([$pov_flags]) }; fi]
         )
       done
+
       ;;
 
     sparc-*)