After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 136633 - Useless dependency on fileutiles on Solaris
Useless dependency on fileutiles on Solaris
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: build
1.5.3-SVN
Other Solaris
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on: 314832
Blocks:
 
 
Reported: 2004-03-09 13:41 UTC by bacchell
Modified: 2006-11-10 08:26 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
New configure script, modified from patch for bug # 317773 (17.87 KB, patch)
2005-11-12 20:28 UTC, Kevin McBride
reviewed Details | Review

Description bacchell 2004-03-09 13:41:21 UTC
Doxygen needs GNU's install to build. But ginstall is nothing more than Berkley's install, which is 
avalaible on Solaris under /usr/ucb/install.

So here patch to build doxygen on Solaris without the dependency on fileutile, as generated by 
cvs diff  :
Index: configure
===========================================================
========
RCS file: /u/kp3softd/cvsroot/configure,v
retrieving revision 1.174
diff -r1.174 configure
321a322,327
>   #Berkely's install is good too
>   if test -x /usr/ucb/install ; then
>     install_found=YES
>       install_prog="/usr/ucb/install"
>   fi
>
Comment 1 bacchell 2004-03-09 18:27:11 UTC
What a stupid patch !

Here's a better one, with keeping the priority to gnu's tools

Index: configure
===================================================================
RCS file: /u/kp3softd/cvsroot/configure,v
retrieving revision 1.174
diff -r1.174 configure
321a322,327
>   #Berkely's install is good to
>   if test "$install_found" != "YES" -a -x /usr/ucb/install ; then
>     install_found=YES
>     install_prog="/usr/ucb/install"
Comment 2 Kevin McBride 2005-11-12 20:28:27 UTC
Created attachment 54679 [details] [review]
New configure script, modified from patch for bug # 317773

Here is an updated configure script that should be able to check for Solaris's
install tool first.
Comment 3 Kevin McBride 2006-11-10 08:26:12 UTC
After test runs from other Solaris users, I am closing this bug as fixed.  Please re-open this bug if the unwanted behavior continues.  Thanks.