mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 00:20:40 -04:00
Depending on other optimization options, compiler could get confused into an internal error, and was, probably, building pessimized code even when working. Ensure warning-free build, while I'm here. Mark the SSE as having no effect -- ``--enable-sse'' causes configure to add the HAS_SSE define to CFLAGS, but nothing in the current release checks for that flag. Ha-ha. There are SSE implementations of some parts of the code (they are just no used), so, perhaps, someone can add another patch to make use of them, when possible.
10 lines
251 B
Text
10 lines
251 B
Text
--- configure Wed Feb 11 08:12:28 2004
|
|
+++ configure Tue Jul 12 18:56:00 2005
|
|
@@ -4500,4 +4500,7 @@
|
|
|
|
case "$target" in
|
|
+ *-*-freebsd*)
|
|
+ CFLAGS="$CFLAGS -DHAS_BSWAP"
|
|
+ ;;
|
|
alpha*-*-linux*)
|
|
if test x$ac_cv_c_compiler_gnu = xyes; then
|