RE: make issues on freebsd

2004-08-12 Thread Mohammadparvez Shaikh
Thanks a lot. I got the gmake installed successfully. But now the issue is 
that when I run:
gmake -f common.mak I get

gmake: Circular common.mak - common.mak dependency dropped.
How can I work around this issue
(Regarding email being sent from microsoft.com, now I am emailing from 
hotmail.com as many were surprised when I was using the other id)

Thanks a lot
MOhammad Shaikh
-Original Message-
From: Bill Moran [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 11, 2004 6:58 PM
To: Mohammed Shaikh (Satyam Computer Services)
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: make issues on freebsd
Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED] wrote:
I tried exactly what you said.
Make install clean
But it tried to search for make-3.80.tar.bz2 and tried fetching over the
net and did not find it. (I think because of our firewall). Now I have
ftp'd the file in the /usr/ports/distfiles/ the above file and tried
running it and found that it has dependencies on gettext.
I copied gettext* there and tried installing gettext and found it has
dependencies on some other stuff.
Lucky for you, you're not the first person to have this problem, thus
there are many workarounds.  First off, I apologize, I forgot that gmake
created such a large dependency tree.
First off, if you have a FreeBSD CD, the required files may be on it in
the /distfiles directory, and you can copy them from there.
Otherwise, it's possible to install gmake from the packages collection.
The easiest way to do this is to run /stand/sysinstall  You can then
choose to load the packages from a CD, or FTP (you might want to try
FTP-passive)  Once in sysinstall, go to Configure, then Packages and
what you choose after that depends on where you want to try to get the
packages from.  If they're not on the CD, exit sysinstall and restart
it, choosing FTP-passive.
The gmake package is in devel section, same as in ports.  If you don't
see it in the listing, it's because it's not available on the media
you selected.  Exit sysinstall and restart, choosing a different media.
I know it's on the FTP sites for sure, but you may have trouble
accessing them.
How and where I can get everything from, so that I can get this running.
I AM NOT JOKING.
I'm just a bit amazed that this is coming from microsoft.com ... that's all.
HTH
I don't know stuff about unix world as I am new.
Appreciate your help friends!!
Thanks a lot
Mohammad Shaikh
 -Original Message-
From: Bill Moran [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 
11, 2004 5:40 PM
To: Mohammed Shaikh (Satyam Computer Services)
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: make issues on freebsd

Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED]
wrote:
   ^
Is this a joke?
 What is the best place to get it? I tried
 www.freshports.org/devel/gmake/
  But I got confused as there are too many links and its not clear what
 exactly to do, to get it installed on my freebsd machine. I am
 relatively a newbie so please help
Stop making your life difficult:
cd /usr/ports/devel/gmake  make install clean
then use gmake instead of make.
 -Original Message-
 From: Pat Lashley [mailto:[EMAIL PROTECTED]  Sent: Wednesday, 
August 11, 2004 5:25 PM
 To: Mohammed Shaikh (Satyam Computer Services);
 [EMAIL PROTECTED]
 Subject: Re: make issues on freebsd
  --On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh
(Satyam
 Computer Services) [EMAIL PROTECTED] wrote:
   I have a program that can be compiled with no problems on SuSe Linux
 but
  when I try it on freebsd it gives plethora of errors. I have just
 copied
  the whole directory tree from SuSe Linux machine onto freebsd
machine.
  Can Anyone PLEASE help as I have to submit the compiled stuff on
 freebsd
  It is probably using make constructs that are specific to GNU make.
 If you haven't already done so, install the devel/gmake port and try
 using 'gmake' instead of 'make'.
-Pat
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]

--
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

--
Bill Moran
Potential Technologies
http://www.potentialtech.com
_
Don’t just search. Find. Check out the new MSN Search! 
http://search.msn.click-url.com/go/onm00200636ave/direct/01/

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make issues on freebsd

2004-08-12 Thread Bill Moran
Mohammadparvez Shaikh [EMAIL PROTECTED] wrote:
 
 Thanks a lot. I got the gmake installed successfully. But now the issue is 
 that when I run:
 gmake -f common.mak I get
 
 gmake: Circular common.mak - common.mak dependency dropped.
 
 How can I work around this issue

Are you serious?  Are we supposed to be psychic?

If you want us to debug your Makefile, you're going to have to show us
your Makefile.

However, are you sure you know what you're doing?  What is this software
you're trying to compile?  Have you read the install docs?  The syntax
you describe is not typical at all, and is probably not right.  What
makes you think that gmake should be using common.mak?  That looks like
an included file to me (just based on the name).

Most software from the GNU world require the following incantation:
./configure
gmake
gmake install

 -Original Message-
 From: Bill Moran [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 11, 2004 6:58 PM
 To: Mohammed Shaikh (Satyam Computer Services)
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: Re: make issues on freebsd
 
 Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED] wrote:
 
 I tried exactly what you said.
 Make install clean
 
 But it tried to search for make-3.80.tar.bz2 and tried fetching over the
 net and did not find it. (I think because of our firewall). Now I have
 ftp'd the file in the /usr/ports/distfiles/ the above file and tried
 running it and found that it has dependencies on gettext.
 I copied gettext* there and tried installing gettext and found it has
 dependencies on some other stuff.
 
 Lucky for you, you're not the first person to have this problem, thus
 there are many workarounds.  First off, I apologize, I forgot that gmake
 created such a large dependency tree.
 
 First off, if you have a FreeBSD CD, the required files may be on it in
 the /distfiles directory, and you can copy them from there.
 
 Otherwise, it's possible to install gmake from the packages collection.
 The easiest way to do this is to run /stand/sysinstall  You can then
 choose to load the packages from a CD, or FTP (you might want to try
 FTP-passive)  Once in sysinstall, go to Configure, then Packages and
 what you choose after that depends on where you want to try to get the
 packages from.  If they're not on the CD, exit sysinstall and restart
 it, choosing FTP-passive.
 
 The gmake package is in devel section, same as in ports.  If you don't
 see it in the listing, it's because it's not available on the media
 you selected.  Exit sysinstall and restart, choosing a different media.
 I know it's on the FTP sites for sure, but you may have trouble
 accessing them.
 
 How and where I can get everything from, so that I can get this running.
 I AM NOT JOKING.
 
 I'm just a bit amazed that this is coming from microsoft.com ... that's all.
 
 HTH
 
 I don't know stuff about unix world as I am new.
 Appreciate your help friends!!
 
 Thanks a lot
 Mohammad Shaikh
   -Original Message-
 From: Bill Moran [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 
 11, 2004 5:40 PM
 To: Mohammed Shaikh (Satyam Computer Services)
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: Re: make issues on freebsd
 
 Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED]
 wrote:
 ^
  Is this a joke?
 
   What is the best place to get it? I tried
   www.freshports.org/devel/gmake/
But I got confused as there are too many links and its not clear what
   exactly to do, to get it installed on my freebsd machine. I am
   relatively a newbie so please help
 
 Stop making your life difficult:
 
 cd /usr/ports/devel/gmake  make install clean
 
 then use gmake instead of make.
 
   -Original Message-
   From: Pat Lashley [mailto:[EMAIL PROTECTED]  Sent: Wednesday, 
 August 11, 2004 5:25 PM
   To: Mohammed Shaikh (Satyam Computer Services);
   [EMAIL PROTECTED]
   Subject: Re: make issues on freebsd
--On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh
 (Satyam
   Computer Services) [EMAIL PROTECTED] wrote:
 I have a program that can be compiled with no problems on SuSe Linux
   but
when I try it on freebsd it gives plethora of errors. I have just
   copied
the whole directory tree from SuSe Linux machine onto freebsd
 machine.
Can Anyone PLEASE help as I have to submit the compiled stuff on
   freebsd
It is probably using make constructs that are specific to GNU make.
   If you haven't already done so, install the devel/gmake port and try
   using 'gmake' instead of 'make'.
  -Pat

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make issues on freebsd

2004-08-11 Thread Pat Lashley
--On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh (Satyam Computer Services) 
[EMAIL PROTECTED] wrote:
I have a program that can be compiled with no problems on SuSe Linux but
when I try it on freebsd it gives plethora of errors. I have just copied
the whole directory tree from SuSe Linux machine onto freebsd machine.
Can Anyone PLEASE help as I have to submit the compiled stuff on freebsd
It is probably using make constructs that are specific to GNU make.
If you haven't already done so, install the devel/gmake port and try
using 'gmake' instead of 'make'.

-Pat
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: make issues on freebsd

2004-08-11 Thread Mohammed Shaikh (Satyam Computer Services)
What is the best place to get it? I tried
www.freshports.org/devel/gmake/

But I got confused as there are too many links and its not clear what
exactly to do, to get it installed on my freebsd machine. I am
relatively a newbie so please help

Thanks a lot for your response
Mohammad Shaikh


-Original Message-
From: Pat Lashley [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 11, 2004 5:25 PM
To: Mohammed Shaikh (Satyam Computer Services);
[EMAIL PROTECTED]
Subject: Re: make issues on freebsd

--On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh (Satyam
Computer Services) [EMAIL PROTECTED] wrote:

 I have a program that can be compiled with no problems on SuSe Linux
but
 when I try it on freebsd it gives plethora of errors. I have just
copied
 the whole directory tree from SuSe Linux machine onto freebsd machine.
 Can Anyone PLEASE help as I have to submit the compiled stuff on
freebsd

It is probably using make constructs that are specific to GNU make.
If you haven't already done so, install the devel/gmake port and try
using 'gmake' instead of 'make'.



-Pat
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make issues on freebsd

2004-08-11 Thread Bill Moran
Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED] wrote:
   ^
Is this a joke?

 What is the best place to get it? I tried
 www.freshports.org/devel/gmake/
 
 But I got confused as there are too many links and its not clear what
 exactly to do, to get it installed on my freebsd machine. I am
 relatively a newbie so please help

Stop making your life difficult:

cd /usr/ports/devel/gmake  make install clean

then use gmake instead of make.

 -Original Message-
 From: Pat Lashley [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 11, 2004 5:25 PM
 To: Mohammed Shaikh (Satyam Computer Services);
 [EMAIL PROTECTED]
 Subject: Re: make issues on freebsd
 
 --On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh (Satyam
 Computer Services) [EMAIL PROTECTED] wrote:
 
  I have a program that can be compiled with no problems on SuSe Linux
 but
  when I try it on freebsd it gives plethora of errors. I have just
 copied
  the whole directory tree from SuSe Linux machine onto freebsd machine.
  Can Anyone PLEASE help as I have to submit the compiled stuff on
 freebsd
 
 It is probably using make constructs that are specific to GNU make.
 If you haven't already done so, install the devel/gmake port and try
 using 'gmake' instead of 'make'.
 
 
 
 -Pat
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]


-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: make issues on freebsd

2004-08-11 Thread Mohammed Shaikh (Satyam Computer Services)

I tried exactly what you said.
Make install clean

But it tried to search for make-3.80.tar.bz2 and tried fetching over the
net and did not find it. (I think because of our firewall). Now I have
ftp'd the file in the /usr/ports/distfiles/ the above file and tried
running it and found that it has dependencies on gettext.
I copied gettext* there and tried installing gettext and found it has
dependencies on some other stuff.
How and where I can get everything from, so that I can get this running.
I AM NOT JOKING. I don't know stuff about unix world as I am new.
Appreciate your help friends!!

Thanks a lot
Mohammad Shaikh
 
-Original Message-
From: Bill Moran [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 11, 2004 5:40 PM
To: Mohammed Shaikh (Satyam Computer Services)
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: make issues on freebsd

Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED]
wrote:
   ^
Is this a joke?

 What is the best place to get it? I tried
 www.freshports.org/devel/gmake/
 
 But I got confused as there are too many links and its not clear what
 exactly to do, to get it installed on my freebsd machine. I am
 relatively a newbie so please help

Stop making your life difficult:

cd /usr/ports/devel/gmake  make install clean

then use gmake instead of make.

 -Original Message-
 From: Pat Lashley [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 11, 2004 5:25 PM
 To: Mohammed Shaikh (Satyam Computer Services);
 [EMAIL PROTECTED]
 Subject: Re: make issues on freebsd
 
 --On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh
(Satyam
 Computer Services) [EMAIL PROTECTED] wrote:
 
  I have a program that can be compiled with no problems on SuSe Linux
 but
  when I try it on freebsd it gives plethora of errors. I have just
 copied
  the whole directory tree from SuSe Linux machine onto freebsd
machine.
  Can Anyone PLEASE help as I have to submit the compiled stuff on
 freebsd
 
 It is probably using make constructs that are specific to GNU make.
 If you haven't already done so, install the devel/gmake port and try
 using 'gmake' instead of 'make'.
 
 
 
 -Pat
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]


-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: make issues on freebsd

2004-08-11 Thread stheg olloydson

 
 it was said:
 
 I tried exactly what you said.
 Make install clean
 
 But it tried to search for make-3.80.tar.bz2 and
 tried fetching over the
 net and did not find it. (I think because of our
 firewall). Now I have
 ftp'd the file in the /usr/ports/distfiles/ the
 above
 file and tried
 running it and found that it has dependencies on
 gettext.
 I copied gettext* there and tried installing
 gettext
 and found it has
 dependencies on some other stuff.
 How and where I can get everything from, so that I
 can get this running.
 I AM NOT JOKING. I don't know stuff about unix
 world
 as I am new.
 Appreciate your help friends!!
 
 Thanks a lot
 Mohammad Shaikh
 
  I have a program that can be compiled with no
 problems on SuSe Linux
  but
  when I try it on freebsd it gives plethora of
 errors. I have just
 copied
  the whole directory tree from SuSe Linux machine
 onto freebsd
 machine.
  Can Anyone PLEASE help as I have to submit the
 compiled stuff on
 freebsd

 Hello,
 
Because you appear unable to pull ports in the normal
manner (firewall issue?), you may have no choice but
to download the four (five?) iso images of the ports
collection and burn them to cd. Then when you do
make install clean you can be sure have all the
dependancies.
Two questions: Why are you doing a FBSD project on
Linux in the first place? Does Bill know you're
consorting with the enemy?
 
 HTH,
 
 Stheg




__
Do you Yahoo!?
Read only the mail you want - Yahoo! Mail SpamGuard.
http://promotions.yahoo.com/new_mail 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make issues on freebsd

2004-08-11 Thread Will
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Mohammed Shaikh (Satyam Computer Services) wrote:
| I tried exactly what you said.
| Make install clean
|
| But it tried to search for make-3.80.tar.bz2 and tried fetching over the
| net and did not find it. (I think because of our firewall). Now I have
| ftp'd the file in the /usr/ports/distfiles/ the above file and tried
| running it and found that it has dependencies on gettext.
| I copied gettext* there and tried installing gettext and found it has
| dependencies on some other stuff.
| How and where I can get everything from, so that I can get this running.
| I AM NOT JOKING. I don't know stuff about unix world as I am new.
| Appreciate your help friends!!
|
| Thanks a lot
| Mohammad Shaikh
|
What exactly does your firewall block? anything going out on 80? 21?
There's certain enviroment variable's you can define for firewall
compadibility with FreeBSD, but without knowing your exact firewalling
situation its rather hard to say. The advantage of ports is it gets
everything for you so you dont have to search it out yourself, unlike
RPM's -- worst package managment ever.
- --
Do yourself a favor, don't use IE!
www.mozilla.org/products/firefox/
PGP is Preferable for Email, Public
key available off PGP Key Server.
GPG Key ID: 0x787AD6A9
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (FreeBSD)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iQCVAwUBQRrOggx4IHh4etapAQKwVQP/UROB9fUeLFatWmspFYD7ciLVOSuYsv2l
S+Gdmf00TwWmU5yrVeyFQe/TzFbPUv7gMGBhd9zp52H4wwbQ3J6wPnBwOBdZ1X9c
T+AOhodyJO3ay3f2aI2bpYaeiPdsz/MgyKgtFUtPnkAjQrg31L3b9gfuJiMSOL5n
wXFzt/WcZdU=
=fOnp
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make issues on freebsd

2004-08-11 Thread Bill Moran
Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED] wrote:
 
 I tried exactly what you said.
 Make install clean
 
 But it tried to search for make-3.80.tar.bz2 and tried fetching over the
 net and did not find it. (I think because of our firewall). Now I have
 ftp'd the file in the /usr/ports/distfiles/ the above file and tried
 running it and found that it has dependencies on gettext.
 I copied gettext* there and tried installing gettext and found it has
 dependencies on some other stuff.

Lucky for you, you're not the first person to have this problem, thus
there are many workarounds.  First off, I apologize, I forgot that gmake
created such a large dependency tree.

First off, if you have a FreeBSD CD, the required files may be on it in
the /distfiles directory, and you can copy them from there.

Otherwise, it's possible to install gmake from the packages collection.
The easiest way to do this is to run /stand/sysinstall  You can then
choose to load the packages from a CD, or FTP (you might want to try
FTP-passive)  Once in sysinstall, go to Configure, then Packages and
what you choose after that depends on where you want to try to get the
packages from.  If they're not on the CD, exit sysinstall and restart
it, choosing FTP-passive.

The gmake package is in devel section, same as in ports.  If you don't
see it in the listing, it's because it's not available on the media
you selected.  Exit sysinstall and restart, choosing a different media.
I know it's on the FTP sites for sure, but you may have trouble
accessing them.

 How and where I can get everything from, so that I can get this running.
 I AM NOT JOKING.

I'm just a bit amazed that this is coming from microsoft.com ... that's all.

HTH

 I don't know stuff about unix world as I am new.
 Appreciate your help friends!!
 
 Thanks a lot
 Mohammad Shaikh
  
 -Original Message-
 From: Bill Moran [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 11, 2004 5:40 PM
 To: Mohammed Shaikh (Satyam Computer Services)
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: Re: make issues on freebsd
 
 Mohammed Shaikh (Satyam Computer Services) [EMAIL PROTECTED]
 wrote:
^
 Is this a joke?
 
  What is the best place to get it? I tried
  www.freshports.org/devel/gmake/
  
  But I got confused as there are too many links and its not clear what
  exactly to do, to get it installed on my freebsd machine. I am
  relatively a newbie so please help
 
 Stop making your life difficult:
 
 cd /usr/ports/devel/gmake  make install clean
 
 then use gmake instead of make.
 
  -Original Message-
  From: Pat Lashley [mailto:[EMAIL PROTECTED] 
  Sent: Wednesday, August 11, 2004 5:25 PM
  To: Mohammed Shaikh (Satyam Computer Services);
  [EMAIL PROTECTED]
  Subject: Re: make issues on freebsd
  
  --On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh
 (Satyam
  Computer Services) [EMAIL PROTECTED] wrote:
  
   I have a program that can be compiled with no problems on SuSe Linux
  but
   when I try it on freebsd it gives plethora of errors. I have just
  copied
   the whole directory tree from SuSe Linux machine onto freebsd
 machine.
   Can Anyone PLEASE help as I have to submit the compiled stuff on
  freebsd
  
  It is probably using make constructs that are specific to GNU make.
  If you haven't already done so, install the devel/gmake port and try
  using 'gmake' instead of 'make'.
  
  
  
  -Pat
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 
 -- 
 Bill Moran
 Potential Technologies
 http://www.potentialtech.com
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]


-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]