Subject: cc vs gcc in elm
To: None <tech-pkg@netbsd.org>
From: Manuel Bouyer <bouyer@antioche.lip6.fr>
List: tech-pkg
Date: 10/11/2002 12:36:38
--MGYHOYXEY6WxJCY8
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Hi,
the elm package explicitely calls cc, which causes problems on solaris
(/usr/ucb/cc:  language optional software package not installed). The
easiest would probably be to change it to always call gcc.
Are there zoularis-supported platforms where this could cause a problem
(where there is a working cc, and no gcc available) ?

--
Manuel Bouyer, LIP6, Universite Paris VI.           Manuel.Bouyer@lip6.fr
--

--MGYHOYXEY6WxJCY8
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="elm.diff"

? README.html
? elm.diff
Index: files/config.sh
===================================================================
RCS file: /cvsroot/pkgsrc/mail/elm/files/config.sh,v
retrieving revision 1.4
diff -u -r1.4 config.sh
--- config.sh	2001/07/19 15:10:24	1.4
+++ config.sh	2002/10/11 10:34:11
@@ -261,7 +261,7 @@
 ccflags='-ILOCALBASE/include'
 cppflags=' -ILOCALBASE/include'
 ldflags='-Wl,-RLOCALBASE/lib -LLOCALBASE/lib'
-cc='cc -MD'
+cc='gcc -MD'
 libs='-lintl'
 nametype='bsd'
 d_passnames='define'

--MGYHOYXEY6WxJCY8--