From nobody@FreeBSD.org  Thu Jul 18 16:01:20 2002
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 8630137B400
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 18 Jul 2002 16:01:20 -0700 (PDT)
Received: from www.freebsd.org (www.FreeBSD.org [216.136.204.117])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3EDCD43E4A
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 18 Jul 2002 16:01:20 -0700 (PDT)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.12.4/8.12.4) with ESMTP id g6IN1JOT049855
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 18 Jul 2002 16:01:19 -0700 (PDT)
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.12.4/8.12.4/Submit) id g6IN1JGO049854;
	Thu, 18 Jul 2002 16:01:19 -0700 (PDT)
Message-Id: <200207182301.g6IN1JGO049854@www.freebsd.org>
Date: Thu, 18 Jul 2002 16:01:19 -0700 (PDT)
From: Nakata Maho <chat95@mbox.kyoto-inet.or.jp>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Fix lang/ifc for conflicting with lang/icc
X-Send-Pr-Version: www-1.0

>Number:         40744
>Category:       ports
>Synopsis:       Fix lang/ifc for conflicting with lang/icc
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jul 18 16:10:01 PDT 2002
>Closed-Date:    Sun Jul 21 08:46:33 PDT 2002
>Last-Modified:  Sun Jul 21 08:46:33 PDT 2002
>Originator:     Nakata Maho
>Release:        4.6-STABLE
>Organization:
Private
>Environment:
FreeBSD debussy.private.org 4.6-STABLE FreeBSD 4.6-STABLE #0: Sun Jul 14 07:04:47 JST 2002     maho@debussy.private.org:/work/cvsup/src/sys/compile/MAHO-DEBUSSY-4.x-STABLE  i386

>Description:
I fixed a problem with port of lang/ifc and lang/icc.
When both ports are installed, ifc does not find ld and fails to compile.
I fixed this problem, just adding path in ifc(shell script).
So, ifc and icc will happly co-exist.

Icc have some problem with linux_devtools-7, now.
To fix this problem some patch will be needed in linuxulator,
and this is not a problem for ifc but at this time, ifc requires
linux_devtools-7... sigh.
Anyway, these problems can be fixed separetely.

I also fixed messages in Makefile and docs/fsupport.
>How-To-Repeat:
just install both icc and ifc. compile some simple program for ifc.
for example,
% cat > test.f
      implicit none
      integer i,j
      
      do i=0, 100
         j=i
        print *,j
      end do
      
      end
% ifc test.f
you get bunch of errors when linking.

>Fix:
+++ ifc/files/patch-aa	Fri Jul 19 07:38:06 2002
@@ -0,0 +1,14 @@
+--- opt/intel/compiler60/ia32/bin/ifc.old	Thu Jul 18 18:52:59 2002
++++ opt/intel/compiler60/ia32/bin/ifc	Thu Jul 18 18:54:03 2002
+@@ -13,9 +13,9 @@
+ 
+ if [ -z PATH ]
+ then
+- PATH=<INSTALLDIR>/compiler60/ia32/bin;
++ PATH=@LINUXBASE@/usr/bin:<INSTALLDIR>/compiler60/ia32/bin;
+ else
+- PATH=<INSTALLDIR>/compiler60/ia32/bin:$PATH;
++ PATH=@LINUXBASE@/usr/bin:<INSTALLDIR>/compiler60/ia32/bin:$PATH;
+ fi
+ export PATH;
+ 

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: netchild 
State-Changed-When: Sun Jul 21 08:44:54 PDT 2002 
State-Changed-Why:  
committed. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=40744 
>Unformatted:
