Installing wget

2010-08-09 Thread Jerry McAllister
Hi All,

I started an instal of wget from ports - /usr/ports/ftp/wget

It comes up with some selections and I mistakenly selected GNUTLS.

Now I constantly get 
  GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
And the make quits.

How do I get rid of that.  I have done make clean, make diskclean
and deleted as many files as I dared, but it still won't build
and install wget.

Of course, there is some file I don't know about.  
Can someone point me to where to find it?

Thank you,

jerry
  
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Andrea Venturoli

Il 08/09/10 20:20, Jerry McAllister ha scritto:

Hi All,

I started an instal of wget from ports - /usr/ports/ftp/wget

It comes up with some selections and I mistakenly selected GNUTLS.

Now I constantly get
   GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
And the make quits.

How do I get rid of that.  I have done make clean, make diskclean
and deleted as many files as I dared, but it still won't build
and install wget.

Of course, there is some file I don't know about.
Can someone point me to where to find it?



rm /var/db/ports/wget/options

or

portupgrade -Cf wget

or

cd /usr/ports/ftp/wget ; make config


 bye
av.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Polytropon
On Mon, 9 Aug 2010 14:20:08 -0400, Jerry McAllister jerr...@msu.edu wrote:
 Hi All,
 
 I started an instal of wget from ports - /usr/ports/ftp/wget
 
 It comes up with some selections and I mistakenly selected GNUTLS.
 
 Now I constantly get 
   GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
 And the make quits.
 
 How do I get rid of that.  I have done make clean, make diskclean
 and deleted as many files as I dared, but it still won't build
 and install wget.

Use the command make rmconfig to remove the configuration; to
repeat it, use make config.



 Of course, there is some file I don't know about.  
 Can someone point me to where to find it?

It's described in man 7 ports.



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Jerry McAllister
On Mon, Aug 09, 2010 at 11:23:54AM -0700, Kurt Buff wrote:

 On Mon, Aug 9, 2010 at 11:20, Jerry McAllister jerr...@msu.edu wrote:
  Hi All,
 
  I started an instal of wget from ports - /usr/ports/ftp/wget
 
  It comes up with some selections and I mistakenly selected GNUTLS.
 
  Now I constantly get
   GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
  And the make quits.
 
  How do I get rid of that.  I have done make clean, make diskclean
  and deleted as many files as I dared, but it still won't build
  and install wget.
 
  Of course, there is some file I don't know about.
  Can someone point me to where to find it?
 
  Thank you,
 
  jerry
 
 Perhaps 'make config'?
 

Sure enough, that fixes it.
I should have thought of trying that.

But where was it keeping it that I couldn't obliterate manually?

Thanks,

jerry

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Jerry McAllister
On Mon, Aug 09, 2010 at 08:26:58PM +0200, Andrea Venturoli wrote:

 Il 08/09/10 20:20, Jerry McAllister ha scritto:
 Hi All,
 
 I started an instal of wget from ports - /usr/ports/ftp/wget
 
 It comes up with some selections and I mistakenly selected GNUTLS.
 
 Now I constantly get
GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
 And the make quits.
 
 How do I get rid of that.  I have done make clean, make diskclean
 and deleted as many files as I dared, but it still won't build
 and install wget.
 
 Of course, there is some file I don't know about.
 Can someone point me to where to find it?
 
 
 rm /var/db/ports/wget/options

Wow.   I didn't even know that exists.

 
 or
 
 portupgrade -Cf wget
 
 or
 
 cd /usr/ports/ftp/wget ; make config

The make config fixed it up for me.

Thanks for the info,

jerry


 
  bye
   av.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Bill Moran
In response to Jerry McAllister jerr...@msu.edu:

 Hi All,
 
 I started an instal of wget from ports - /usr/ports/ftp/wget
 
 It comes up with some selections and I mistakenly selected GNUTLS.
 
 Now I constantly get 
   GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
 And the make quits.
 
 How do I get rid of that.

make config should allow you to unselect that option, which should allow
the build to then succeed.

-- 
Bill Moran
http://www.potentialtech.com
http://people.collaborativefusion.com/~wmoran/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Kurt Buff
On Mon, Aug 9, 2010 at 11:20, Jerry McAllister jerr...@msu.edu wrote:
 Hi All,

 I started an instal of wget from ports - /usr/ports/ftp/wget

 It comes up with some selections and I mistakenly selected GNUTLS.

 Now I constantly get
  GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
 And the make quits.

 How do I get rid of that.  I have done make clean, make diskclean
 and deleted as many files as I dared, but it still won't build
 and install wget.

 Of course, there is some file I don't know about.
 Can someone point me to where to find it?

 Thank you,

 jerry

Perhaps 'make config'?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Rod Person

At 02:20 PM 08/09/2010, Jerry McAllister wrote:

How do I get rid of that.  I have done make clean, make diskclean
and deleted as many files as I dared, but it still won't build
and install wget.

Of course, there is some file I don't know about.
Can someone point me to where to find it?


Did you try make config?


Rod

==
This is email was sent by me for the purposes of not promoting global 
corporations or mindlessness.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Sam Fourman Jr.
On Mon, Aug 9, 2010 at 1:20 PM, Jerry McAllister jerr...@msu.edu wrote:
 Hi All,

 I started an instal of wget from ports - /usr/ports/ftp/wget

 It comes up with some selections and I mistakenly selected GNUTLS.

 Now I constantly get
  GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
 And the make quits.

 How do I get rid of that.  I have done make clean, make diskclean
 and deleted as many files as I dared, but it still won't build
 and install wget.


cd /usr/ports/ftp/wget/  make deinstall clean
make configure
deselect GNUTLS
make install clean


-- 

Sam Fourman Jr.
Fourman Networks
http://www.fourmannetworks.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Rodrigo Gonzalez
Run

make config

again and select the correct options

On Mon, 9 Aug 2010 14:20:08 -0400
Jerry McAllister jerr...@msu.edu wrote:

 Hi All,
 
 I started an instal of wget from ports - /usr/ports/ftp/wget
 
 It comes up with some selections and I mistakenly selected GNUTLS.
 
 Now I constantly get 
   GNUTLS and OPENSSL are mutually exclusive, enable at most one of
 them And the make quits.
 
 How do I get rid of that.  I have done make clean, make diskclean
 and deleted as many files as I dared, but it still won't build
 and install wget.
 
 Of course, there is some file I don't know about.  
 Can someone point me to where to find it?
 
 Thank you,
 
 jerry
   
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 freebsd-questions-unsubscr...@freebsd.org



signature.asc
Description: PGP signature


Re: Installing wget

2010-08-09 Thread Frank Wißmann

Jerry McAllister schrieb:

Hi All,

I started an instal of wget from ports - /usr/ports/ftp/wget

It comes up with some selections and I mistakenly selected GNUTLS.

Now I constantly get 
  GNUTLS and OPENSSL are mutually exclusive, enable at most one of them

And the make quits.

How do I get rid of that.  I have done make clean, make diskclean
and deleted as many files as I dared, but it still won't build
and install wget.

Of course, there is some file I don't know about.  
Can someone point me to where to find it?


Thank you,

jerry
  
___

freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org



Hi, Jerry!
Try a make rmconfig-recursive in /usr/ports/ftp/wget and then a make 
config-recursive and select then what you want.


Greetings Frank

--
GU d- s:+ a+ C+$ UBS$ P L- !E--- W N+@ !o K--? !w--- O !M- !V- PS+ PE 
Y? !PGP- t+ 5 X !R tv- b++ DI !D G e h+ r- y?


When pack meets pack in the jungle
and no one will move from the trail
wait till the leaders have spoken
it may be fair words shall prevail

(Rudyard Kipling)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Installing wget

2010-08-09 Thread Bernt Hansson

Jerry McAllister said the following on 2010-08-09 20:26:

On Mon, Aug 09, 2010 at 11:23:54AM -0700, Kurt Buff wrote:


On Mon, Aug 9, 2010 at 11:20, Jerry McAllisterjerr...@msu.edu  wrote:

Hi All,

I started an instal of wget from ports - /usr/ports/ftp/wget

It comes up with some selections and I mistakenly selected GNUTLS.

Now I constantly get
  GNUTLS and OPENSSL are mutually exclusive, enable at most one of them
And the make quits.

How do I get rid of that.  I have done make clean, make diskclean
and deleted as many files as I dared, but it still won't build
and install wget.

Of course, there is some file I don't know about.
Can someone point me to where to find it?

Thank you,

jerry


Perhaps 'make config'?



Sure enough, that fixes it.
I should have thought of trying that.

But where was it keeping it that I couldn't obliterate manually?


/var/db/ports/portname
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org