Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 May 2019 07:02:28 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502929 - head/biology/cufflinks/files
Message-ID:  <201905290702.x4T72Ssv002823@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Wed May 29 07:02:28 2019
New Revision: 502929
URL: https://svnweb.freebsd.org/changeset/ports/502929

Log:
  biology/cufflinks: Fix build on i386 by removing the hard-coded -m64
  
  Reported by:	fallout

Added:
  head/biology/cufflinks/files/patch-configure.ac   (contents, props changed)

Added: head/biology/cufflinks/files/patch-configure.ac
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/biology/cufflinks/files/patch-configure.ac	Wed May 29 07:02:28 2019	(r502929)
@@ -0,0 +1,16 @@
+--- configure.ac.orig	2019-05-29 06:53:24 UTC
++++ configure.ac
+@@ -77,9 +77,10 @@ case "${host_cpu}-${host_os}" in
+ 	AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [ext_CFLAGS="-arch x86_64"], []);;
+   *)
+     AC_MSG_CHECKING([if gcc accepts -m64])
+-    CFLAGS="-m64"
+-    AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [ext_CFLAGS="-m64"; AC_MSG_RESULT([yes])],
+-					  [ext_CFLAGS="-D_FILE_OFFSET_BITS=64"; AC_MSG_RESULT([no])]);;
++    #CFLAGS="-m64"
++    CFLAGS="-D_FILE_OFFSET_BITS=64"
++#    AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [ext_CFLAGS="-m64"; AC_MSG_RESULT([yes])],
++#					  [ext_CFLAGS="-D_FILE_OFFSET_BITS=64"; AC_MSG_RESULT([no])]);;
+ esac
+ 
+ AC_ARG_ENABLE(vectorize,    [  --enable-vectorize        Enable GCC auto-vectorization],



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905290702.x4T72Ssv002823>