Re: make install fails for /usr/ports/security/sudo after downgrade from 9.0-R to 8-STABLE

2012-03-03 Thread ill...@gmail.com
On 2 March 2012 14:44, FreeBSD Mailing Lists free...@growveg.net wrote:
 Hello list,

 I had to downgrade from 9-R to 8-STABLE. To do this, I did the following:

 1. rm -rf /usr/obj
 2. pkg_delete -a
 3. rm -rf /usr/ports
 4. mkdir -p /usr/ports/distfiles
 5. rm -rf /usr/src
 6. rm -rf /usr/local/*
 6. csup 8-STABLE sources
 7. csup ports
 8. cd /usr/src  make cleandir  make cleandir  make buildworld 
 make buildkernel  make installkernel  mergemaster -p
 9. (merged required files)
 10. make installworld  mergemaster
 11. reboot.

 Practically everything in ports actually builds. I've installed X,
 icewm, windowmaker, firefox36, thunderbird, gimp and a few others. I
 think I've eliminated all the cruft from 9.0. However, I can't build
 sudo (or screen) and I can't work out why. Here is the error:

 # make distclean clean install

 ===  Cleaning for sudo-1.8.4
 ===  Deleting distfiles for sudo-1.8.4
 ===  License sudo accepted by the user
 ===  Found saved configuration for sudo-1.8.3_2
 = sudo-1.8.4p2.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
 = Attempting to fetch http://www.sudo.ws/sudo/dist/sudo-1.8.4p2.tar.gz
 ===  License sudo accepted by the user
 ===  Found saved configuration for sudo-1.8.3_2
 = sudo-1.8.4p2.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
 = Attempting to fetch http://www.sudo.ws/sudo/dist/sudo-1.8.4p2.tar.gz

 [...]

 cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
 -I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
 -DLOCALEDIR=\/usr/local/share/locale\ ./ttyname.c
 cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
 -I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
 -DLOCALEDIR=\/usr/local/share/locale\ ./ttysize.c
 cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
 -I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
 -DLOCALEDIR=\/usr/local/share/locale\ ./utmp.c
 ./utmp.c: In function 'utmp_settime':
 ./utmp.c:132: error: dereferencing pointer to incomplete type
 ./utmp.c:133: error: dereferencing pointer to incomplete type
 ./utmp.c: In function 'utmp_fill':
 ./utmp.c:151: error: dereferencing pointer to incomplete type
 ./utmp.c:153: error: dereferencing pointer to incomplete type
 ./utmp.c:154: error: dereferencing pointer to incomplete type
 ./utmp.c:157: error: dereferencing pointer to incomplete type
 ./utmp.c:160: error: dereferencing pointer to incomplete type
 ./utmp.c:160: error: dereferencing pointer to incomplete type
 ./utmp.c:161: error: dereferencing pointer to incomplete type
 ./utmp.c:161: error: dereferencing pointer to incomplete type
 ./utmp.c:166: error: dereferencing pointer to incomplete type
 ./utmp.c:170: error: dereferencing pointer to incomplete type
 ./utmp.c: In function 'utmp_login':
 ./utmp.c:294: error: storage size of 'utbuf' isn't known
 /bin/sh ../libtool --tag=disable-static --mode=compile cc -c
 -I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
 -I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
 -DLOCALEDIR=\/usr/local/share/locale\ ./sudo_noexec.c
 ./utmp.c: In function 'utmp_logout':
 ./utmp.c:343: error: storage size of 'utbuf' isn't known
 *** Error code 1
 libtool: compile:  cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe
 -march=core2 -I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
 -DLOCALEDIR=\/usr/local/share/locale\ ./sudo_noexec.c  -fPIC -DPIC -o
 .libs/sudo_noexec.o
 1 error
 *** Error code 2
 1 error
 *** Error code 1

 Stop in /usr/ports/security/sudo.
 *** Error code 1

 Stop in /usr/ports/security/sudo.

 Can anyone help please?

Stale header files in /usr/include maybe?

-- 
--
___
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: make install fails for /usr/ports/security/sudo after downgrade from 9.0-R to 8-STABLE

2012-03-03 Thread FreeBSD Mailing Lists

On 03/03/12 12:31, ill...@gmail.com wrote:

Stale header files in /usr/include maybe?


Hi,

Yes that's it. It seems utmp.h got changed to utmpx.h between 8.2 
and 9.0. Fixed by csup of 9.0-R and doing the buildworld buildkernel etc.


thanks,
--
freebsd at growveg dot net
___
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: make install fails for /usr/ports/security/sudo after downgrade from 9.0-R to 8-STABLE

2012-03-03 Thread ill...@gmail.com
On 3 March 2012 14:43, FreeBSD Mailing Lists free...@growveg.net wrote:
 On 03/03/12 12:31, ill...@gmail.com wrote:

 Stale header files in /usr/include maybe?


 Hi,

 Yes that's it. It seems utmp.h got changed to utmpx.h between 8.2 and
 9.0. Fixed by csup of 9.0-R and doing the buildworld buildkernel etc.


Hmm, I would think that merely removing the offending file
and copying the correct one from /usr/obj/usr/src/tmp/usr/include/
would suffice.

-- 
--
___
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: make install fails for /usr/ports/security/sudo after downgrade from 9.0-R to 8-STABLE

2012-03-03 Thread John
On 04/03/2012 04:36, ill...@gmail.com wrote:
 Hmm, I would think that merely removing the offending file
 and copying the correct one from /usr/obj/usr/src/tmp/usr/include/
 would suffice.

I dunno, I don't think so. Why would it not be installed in the
downgrade process? Also, the filenames aren't the same but the
functionality (as far as I know) is. It might not have been the only
thing broken.

Downgrading across minor versions is simple and usually painless but
there was a heads-up for the change from utmp.h to utmpx.h in -current
back in January so I guess it was considered a major, low-level change
and the downgrade couldn't work with that.

Anyhow, rebuilding to 9-R has fixed everything as far as I can see, so
I'm happy ;)
-- 
freebsd at growveg dot net
___
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


make install fails for /usr/ports/security/sudo after downgrade from 9.0-R to 8-STABLE

2012-03-02 Thread FreeBSD Mailing Lists
Hello list,

I had to downgrade from 9-R to 8-STABLE. To do this, I did the following:

1. rm -rf /usr/obj
2. pkg_delete -a
3. rm -rf /usr/ports
4. mkdir -p /usr/ports/distfiles
5. rm -rf /usr/src
6. rm -rf /usr/local/*
6. csup 8-STABLE sources
7. csup ports
8. cd /usr/src  make cleandir  make cleandir  make buildworld 
make buildkernel  make installkernel  mergemaster -p
9. (merged required files)
10. make installworld  mergemaster
11. reboot.

Practically everything in ports actually builds. I've installed X,
icewm, windowmaker, firefox36, thunderbird, gimp and a few others. I
think I've eliminated all the cruft from 9.0. However, I can't build
sudo (or screen) and I can't work out why. Here is the error:

# make distclean clean install

===  Cleaning for sudo-1.8.4
===  Deleting distfiles for sudo-1.8.4
===  License sudo accepted by the user
===  Found saved configuration for sudo-1.8.3_2
= sudo-1.8.4p2.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch http://www.sudo.ws/sudo/dist/sudo-1.8.4p2.tar.gz
===  License sudo accepted by the user
===  Found saved configuration for sudo-1.8.3_2
= sudo-1.8.4p2.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch http://www.sudo.ws/sudo/dist/sudo-1.8.4p2.tar.gz

[...]

cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
-I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
-DLOCALEDIR=\/usr/local/share/locale\ ./ttyname.c
cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
-I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
-DLOCALEDIR=\/usr/local/share/locale\ ./ttysize.c
cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
-I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
-DLOCALEDIR=\/usr/local/share/locale\ ./utmp.c
./utmp.c: In function 'utmp_settime':
./utmp.c:132: error: dereferencing pointer to incomplete type
./utmp.c:133: error: dereferencing pointer to incomplete type
./utmp.c: In function 'utmp_fill':
./utmp.c:151: error: dereferencing pointer to incomplete type
./utmp.c:153: error: dereferencing pointer to incomplete type
./utmp.c:154: error: dereferencing pointer to incomplete type
./utmp.c:157: error: dereferencing pointer to incomplete type
./utmp.c:160: error: dereferencing pointer to incomplete type
./utmp.c:160: error: dereferencing pointer to incomplete type
./utmp.c:161: error: dereferencing pointer to incomplete type
./utmp.c:161: error: dereferencing pointer to incomplete type
./utmp.c:166: error: dereferencing pointer to incomplete type
./utmp.c:170: error: dereferencing pointer to incomplete type
./utmp.c: In function 'utmp_login':
./utmp.c:294: error: storage size of 'utbuf' isn't known
/bin/sh ../libtool --tag=disable-static --mode=compile cc -c
-I../include -I.. -I. -I.. -I. -O2 -pipe -march=core2
-I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
-DLOCALEDIR=\/usr/local/share/locale\ ./sudo_noexec.c
./utmp.c: In function 'utmp_logout':
./utmp.c:343: error: storage size of 'utbuf' isn't known
*** Error code 1
libtool: compile:  cc -c -I../include -I.. -I. -I.. -I. -O2 -pipe
-march=core2 -I/usr/local/include -fno-strict-aliasing -D_BSD_SOURCE
-DLOCALEDIR=\/usr/local/share/locale\ ./sudo_noexec.c  -fPIC -DPIC -o
.libs/sudo_noexec.o
1 error
*** Error code 2
1 error
*** Error code 1

Stop in /usr/ports/security/sudo.
*** Error code 1

Stop in /usr/ports/security/sudo.

Can anyone help please?
-- 
freebsd at growveg dot net
___
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


How to remove stale files if make install fails

2007-03-04 Thread Milan Knizek
Hello,

is there an automated way, other then manually going through pkg-plist, how to 
delete already installed files of a port, if the make install fails before 
completion?

make deinstall and pkg_delete refuses to delete the port's files, since 
the port was not recorded in package database.

Best regards,
-- 
Milan Knížek
http://milan-knizek.net/
e-mail knizek {na} volny {v} cz
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


elinks-0.11.1: make install fails

2006-02-28 Thread a
I cannot install a port elinks-0.11.1.

make 
works perfectly, but 
make install 
fails. 

An output of 
make install 
is attached. 

The first error is in line 251. 

#include ruby.h 
in file core.c cannot find the file ruby.h. 
The file ruby.h is present in 
/usr/ports/www/elinks/work/elinks-0.11.1/src/scripting/ruby, 
together with the file core.c. 
But this file is included in line 19 of file core.c. 
The last one is attached too. 
There is no ruby.h in /usr/include, indeed.

Any ideas?

Elisej Babenko 
mailto:[EMAIL PROTECTED]


core.c
Description: Binary data
===  Installing for elinks-0.11.1
===   elinks-0.11.1 depends on file: /usr/local/lib/libfsp.a - found
===   elinks-0.11.1 depends on executable: js - found
===   elinks-0.11.1 depends on file: /usr/local/bin/perl5.8.6 - found
===   elinks-0.11.1 depends on shared library: ruby18 - found
===   elinks-0.11.1 depends on shared library: guile - found
===   elinks-0.11.1 depends on shared library: lua - found
===   elinks-0.11.1 depends on shared library: idn - found
===   elinks-0.11.1 depends on shared library: expat - found
===   elinks-0.11.1 depends on shared library: nspr4 - found
===   elinks-0.11.1 depends on shared library: iconv.3 - found
===   elinks-0.11.1 depends on shared library: intl - found
===   Generating temporary packing list
===  Checking if www/elinks already installed
[MAKE install]   doc
gmake[1]: Entering directory `/usr/ports/www/elinks/work/elinks-0.11.1/doc'
[MAKE install]   doc/man
gmake[2]: Entering directory `/usr/ports/www/elinks/work/elinks-0.11.1/doc/man'
[MAKE install]   doc/man/man1
gmake[3]: Entering directory 
`/usr/ports/www/elinks/work/elinks-0.11.1/doc/man/man1'
 [INSTALL]   doc/man/man1/elinks.1 - /usr/local/man/man1
gmake[3]: Leaving directory 
`/usr/ports/www/elinks/work/elinks-0.11.1/doc/man/man1'
[MAKE install]   doc/man/man5
gmake[3]: Entering directory 
`/usr/ports/www/elinks/work/elinks-0.11.1/doc/man/man5'
 [INSTALL]   doc/man/man5/elinks.conf.5 - /usr/local/man/man5
 [INSTALL]   doc/man/man5/elinkskeys.5 - /usr/local/man/man5
gmake[3]: Leaving directory 
`/usr/ports/www/elinks/work/elinks-0.11.1/doc/man/man5'
gmake[2]: Leaving directory `/usr/ports/www/elinks/work/elinks-0.11.1/doc/man'
gmake[1]: Leaving directory `/usr/ports/www/elinks/work/elinks-0.11.1/doc'
[MAKE install]   po
gmake[1]: Entering directory `/usr/ports/www/elinks/work/elinks-0.11.1/po'
../config/mkinstalldirs /usr/local/share/locale
 [INSTALL]   po/be.gmo - 
/usr/local/share/locale/be/LC_MESSAGES/elinks.mo
 [INSTALL]   po/bg.gmo - 
/usr/local/share/locale/bg/LC_MESSAGES/elinks.mo
 [INSTALL]   po/ca.gmo - 
/usr/local/share/locale/ca/LC_MESSAGES/elinks.mo
 [INSTALL]   po/cs.gmo - 
/usr/local/share/locale/cs/LC_MESSAGES/elinks.mo
 [INSTALL]   po/da.gmo - 
/usr/local/share/locale/da/LC_MESSAGES/elinks.mo
 [INSTALL]   po/de.gmo - 
/usr/local/share/locale/de/LC_MESSAGES/elinks.mo
 [INSTALL]   po/el.gmo - 
/usr/local/share/locale/el/LC_MESSAGES/elinks.mo
 [INSTALL]   po/es.gmo - 
/usr/local/share/locale/es/LC_MESSAGES/elinks.mo
 [INSTALL]   po/et.gmo - 
/usr/local/share/locale/et/LC_MESSAGES/elinks.mo
 [INSTALL]   po/fi.gmo - 
/usr/local/share/locale/fi/LC_MESSAGES/elinks.mo
 [INSTALL]   po/fr.gmo - 
/usr/local/share/locale/fr/LC_MESSAGES/elinks.mo
 [INSTALL]   po/gl.gmo - 
/usr/local/share/locale/gl/LC_MESSAGES/elinks.mo
 [INSTALL]   po/hr.gmo - 
/usr/local/share/locale/hr/LC_MESSAGES/elinks.mo
 [INSTALL]   po/hu.gmo - 
/usr/local/share/locale/hu/LC_MESSAGES/elinks.mo
 [INSTALL]   po/id.gmo - 
/usr/local/share/locale/id/LC_MESSAGES/elinks.mo
 [INSTALL]   po/is.gmo - 
/usr/local/share/locale/is/LC_MESSAGES/elinks.mo
 [INSTALL]   po/it.gmo - 
/usr/local/share/locale/it/LC_MESSAGES/elinks.mo
 [INSTALL]   po/lt.gmo - 
/usr/local/share/locale/lt/LC_MESSAGES/elinks.mo
 [INSTALL]   po/nl.gmo - 
/usr/local/share/locale/nl/LC_MESSAGES/elinks.mo
 [INSTALL]   po/nb.gmo - 
/usr/local/share/locale/nb/LC_MESSAGES/elinks.mo
 [INSTALL]   po/pl.gmo - 
/usr/local/share/locale/pl/LC_MESSAGES/elinks.mo
 [INSTALL]   po/pt.gmo - 
/usr/local/share/locale/pt/LC_MESSAGES/elinks.mo
 [INSTALL]   po/pt_BR.gmo - 
/usr/local/share/locale/pt_BR/LC_MESSAGES/elinks.mo
 [INSTALL]   po/ro.gmo - 
/usr/local/share/locale/ro/LC_MESSAGES/elinks.mo
 [INSTALL]   po/ru.gmo - 
/usr/local/share/locale/ru/LC_MESSAGES/elinks.mo
 [INSTALL]   po/sk.gmo - 
/usr/local/share/locale/sk/LC_MESSAGES/elinks.mo
 [INSTALL]   po/sr.gmo - 
/usr/local/share/locale/sr/LC_MESSAGES/elinks.mo
 [INSTALL]   po/sv.gmo - 
/usr/local/share/locale/sv/LC_MESSAGES/elinks.mo
 [INSTALL]   po/tr.gmo - 
/usr/local/share/locale/tr/LC_MESSAGES/elinks.mo
 [INSTALL]   po/uk.gmo - 
/usr/local/share

Re: elinks-0.11.1: make install fails

2006-02-28 Thread Kris Kennaway
On Tue, Feb 28, 2006 at 10:40:38AM +0200, a wrote:

 The first error is in line 251. 
 
 #include ruby.h 
 in file core.c cannot find the file ruby.h. 
 The file ruby.h is present in 
 /usr/ports/www/elinks/work/elinks-0.11.1/src/scripting/ruby, 
 together with the file core.c. 
 But this file is included in line 19 of file core.c. 
 The last one is attached too. 
 There is no ruby.h in /usr/include, indeed.
 
 Any ideas?

Unfortunately this application stupidly hides its compilation command
behind a super-awesome fake compilation message:

   [CC]   src/scripting/ruby/core.o

which means it's impossible to tell what it did and what went wrong.
Someone will have to figure out what the heck it's actually doing
here.  Try talking to the maintainer.

Kris



pgpnKoIF7w9QT.pgp
Description: PGP signature


Re: elinks-0.11.1: make install fails

2006-02-28 Thread Nikolas Britton
On 2/28/06, a [EMAIL PROTECTED] wrote:
 I cannot install a port elinks-0.11.1.

 make
 works perfectly, but
 make install
 fails.

 An output of
 make install
 is attached.

 The first error is in line 251.

 #include ruby.h
 in file core.c cannot find the file ruby.h.
 The file ruby.h is present in
 /usr/ports/www/elinks/work/elinks-0.11.1/src/scripting/ruby,
 together with the file core.c.
 But this file is included in line 19 of file core.c.
 The last one is attached too.
 There is no ruby.h in /usr/include, indeed.

 Any ideas?


www/links works just fine, built and installed it yesterday.


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


Re: elinks-0.11.1: make install fails

2006-02-28 Thread Kris Kennaway
On Tue, Feb 28, 2006 at 04:10:41AM -0600, Nikolas Britton wrote:
 On 2/28/06, a [EMAIL PROTECTED] wrote:
  I cannot install a port elinks-0.11.1.
 
  make
  works perfectly, but
  make install
  fails.
 
  An output of
  make install
  is attached.
 
  The first error is in line 251.
 
  #include ruby.h
  in file core.c cannot find the file ruby.h.
  The file ruby.h is present in
  /usr/ports/www/elinks/work/elinks-0.11.1/src/scripting/ruby,
  together with the file core.c.
  But this file is included in line 19 of file core.c.
  The last one is attached too.
  There is no ruby.h in /usr/include, indeed.
 
  Any ideas?
 
 
 www/links works just fine, built and installed it yesterday.

That's great, but he's not talking about that port anyway :-)

Kris


pgpvdGIp0RLzZ.pgp
Description: PGP signature


Re: elinks-0.11.1: make install fails

2006-02-28 Thread Nikolas Britton
On 2/28/06, Kris Kennaway [EMAIL PROTECTED] wrote:
 On Tue, Feb 28, 2006 at 04:10:41AM -0600, Nikolas Britton wrote:
  On 2/28/06, a [EMAIL PROTECTED] wrote:
   I cannot install a port elinks-0.11.1.
  
[snipped]
  
   Any ideas?
  
 
  www/links works just fine, built and installed it yesterday.

 That's great, but he's not talking about that port anyway :-)


I know that. Maybe I should have reworld it to say Try www/links, it
works just fine, I built and installed it yesterday.. Anyways, what
can elinks do that links 2 can't?


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


RE: elinks-0.11.1: make install fails

2006-02-28 Thread a
Does links support Java-script?

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Nikolas Britton
 Sent: Tuesday, February 28, 2006 1:07 PM
 To: Kris Kennaway
 Cc: a; freebsd-questions@freebsd.org
 Subject: Re: elinks-0.11.1: make install fails
 
 
 On 2/28/06, Kris Kennaway [EMAIL PROTECTED] wrote:
  On Tue, Feb 28, 2006 at 04:10:41AM -0600, Nikolas Britton wrote:
   On 2/28/06, a [EMAIL PROTECTED] wrote:
I cannot install a port elinks-0.11.1.
   
 [snipped]
   
Any ideas?
   
  
   www/links works just fine, built and installed it yesterday.
 
  That's great, but he's not talking about that port anyway :-)
 
 
 I know that. Maybe I should have reworld it to say Try 
 www/links, it works just fine, I built and installed it 
 yesterday.. Anyways, what can elinks do that links 2 can't?
 
 
 --
 BSD Podcasts @ http://bsdtalk.blogspot.com/ 
 ___
 freebsd-questions@freebsd.org mailing list 
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]
 

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


Re: elinks-0.11.1: make install fails

2006-02-28 Thread Nikolas Britton
On 2/28/06, a [EMAIL PROTECTED] wrote:
 Does links support Java-script?


As a matter of fact, yes. I compared this javascript test page* in
both links and firefox, both did everything correctly.

* http://www.dcn.davis.ca.us/GO/EXPLORIT/java/IntroJavaScript.html

Also Links 2 can do color at the console and it can use SVGALIB or
X11, to display graphics, if you use the -g flag. Full mouse support
at the console and in graphical mode, downloads stuff in the
background etc.

On some of my servers I install X11 (I just use the default twm) with
a tabbed terminal emulator, Links with graphical support, and stuff
like pgadmin3. I find that I can work faster in X11 because I can have
open 16+ xterms, run links -g to look up docs, and copy  paste all on
one screen. running pgadmin3 is a plus too when your migrating from
7.3 = 8.1. I'm sure alot of old hats cringe at the idea of running
X11 on a server, I don't like the the general Idea of it too, but for
me it's faster then Alt + Fn. I just had to do a complete rebuild
(backup, wipe, fresh install of 6.1-PRERELEASE, updated ports) of one
server and man was it a time saver, sitting at a black and white
console for 48 hours is no fun :-\

Anyways back to Links, the only downfall of Links is that it doesn't
do ssl (https), but I think the only one that does ssl is Lynx-ssl

http://links.twibright.com/features.php



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


Re: make install fails for subversion

2004-01-01 Thread Lowell Gilbert
Lou Katz [EMAIL PROTECTED] writes:

 The make runs ok
 The make install chugs along until:
 
   chmod 755 /usr/local/libexec/apache2/mod_authz_svn.so
   [activating module `authz_svn' in /usr/local/etc/apache2/httpd.conf]
   subversion/svnversion/svnversion . /repos/svn/trunk  
 /usr/local/include/subversion-1/svn-revision.txt
   /usr/libexec/ld-elf.so.1: /usr/local/lib/libapr-0.so.9: Undefined symbol 
 pthread_mutex_init
   *** Error code 1
 
   Stop in /work/local1/ports/devel/subversion/work/subversion-0.32.1.
   *** Error code 1
 
   Stop in /work/local1/ports/devel/subversion.
 
 
 
 I have checked, and there is libpthread.so.20 in /usr/local/lib/pth which I have 
 linked
 up into /usr/local/lib, and it has the symbol pthread_mutex_init. 

Sounds like you're working with an older version of FreeBSD.
[Please see Greg Lehey's How to get best results from FreeBSD-questions 
 http://www.lemis.com/questions.html ]

The ports aren't particularly intended to work with older versions,
and may depend on newer features (like some of the pthread modifications).
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make install fails for subversion

2004-01-01 Thread Lou Katz
On Thu, Jan 01, 2004 at 01:19:36PM -0500, Lowell Gilbert wrote:
 Lou Katz [EMAIL PROTECTED] writes:
 
  The make runs ok
  The make install chugs along until:
  
  chmod 755 /usr/local/libexec/apache2/mod_authz_svn.so
  [activating module `authz_svn' in /usr/local/etc/apache2/httpd.conf]
  subversion/svnversion/svnversion . /repos/svn/trunk  
  /usr/local/include/subversion-1/svn-revision.txt
  /usr/libexec/ld-elf.so.1: /usr/local/lib/libapr-0.so.9: Undefined symbol 
  pthread_mutex_init
  *** Error code 1
  
  Stop in /work/local1/ports/devel/subversion/work/subversion-0.32.1.
  *** Error code 1
  
  Stop in /work/local1/ports/devel/subversion.
  
  
  
  I have checked, and there is libpthread.so.20 in /usr/local/lib/pth which I have 
  linked
  up into /usr/local/lib, and it has the symbol pthread_mutex_init. 
 
 Sounds like you're working with an older version of FreeBSD.
 [Please see Greg Lehey's How to get best results from FreeBSD-questions 
  http://www.lemis.com/questions.html ]

4.7-RELEASE-p4


 
 The ports aren't particularly intended to work with older versions,
 and may depend on newer features (like some of the pthread modifications).

If I leave MOD_DAV out, it works, but I think I need that. The funny thing
is, the library with pthread_mutex_init IS IN /usr/local/lib!

Thanks.

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


make install fails for subversion

2003-12-31 Thread Lou Katz
The make runs ok
The make install chugs along until:

chmod 755 /usr/local/libexec/apache2/mod_authz_svn.so
[activating module `authz_svn' in /usr/local/etc/apache2/httpd.conf]
subversion/svnversion/svnversion . /repos/svn/trunk  
/usr/local/include/subversion-1/svn-revision.txt
/usr/libexec/ld-elf.so.1: /usr/local/lib/libapr-0.so.9: Undefined symbol 
pthread_mutex_init
*** Error code 1

Stop in /work/local1/ports/devel/subversion/work/subversion-0.32.1.
*** Error code 1

Stop in /work/local1/ports/devel/subversion.



I have checked, and there is libpthread.so.20 in /usr/local/lib/pth which I have linked
up into /usr/local/lib, and it has the symbol pthread_mutex_init. 


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


Re: make install fails

2003-07-14 Thread Jamie Jones
On Mon, 14 Jul 2003 10:24:51 +0100 (BST),
 Dave Goode [EMAIL PROTECTED]
 wrote in newsgroup bish.lists.freebsd.questions:

 Is this a wise move? One of the things I've liked about FreeBSD over the years 
 is that it just works (most of the time!), with no compulsion to move to the 
 next version. If this is the case, surely we are now compelled to upgrade or 
 patch whether we want to or not?
 I hope this new development is either backed out, or made backwards-compatible 
 in some way to permit versions  4,8 to continue working.

I agree. I'm in the dark as much as you, but it may be an oversight - whoever
made the code change may not have realised the new pkg_info was so recent..
I don't know.

I run 4.5 on my router, and 5.1 on my desktop, but my server is still on
4.4 (its colocated, so rather tricky to update, and its quite busy)

I expect its reasonable to say 4.4 is too old (I'm planning on updating
it soon) but if I was on 4.6.2 I'd expect a bit more life out of it before
things stop working!

 As a work around, if you define the environment variable
 FORCE_PKG_REGISTER to anything from the command line before running
 the install, it will work (as it will skip the part that checks if the port
 is already installed.)
 
 Thanks, Jamie. I'll give that a try today and see if it works for me.

Since writing that last message, I've updated my pkg_info.
For my machine on 4.4 I needed to download and replace /usr/share/Mk/*
and then /usr/src/usr.sbin/pkg_install/*

Your /usr/share/Mk may be recent enough.. I don't know.

from there, cd to /usr/src/usr.sbin/pkg_install and
make
make install
make clean

Alternatively, download my binaries, made from 4.8-release sources.
De-tar the bzipped archive, and move the
files from usr.sbin into /usr/sbin and the files from usr.share.man.man1
into /usr/share/man/man1 - being careful to preserve file permissions.

http://www.bishopston.com/jamie/pkg_install/pkg_install_binaries_4.8.tar.bz2

(approx 90K)

Cheers, Jamie

-- 
Jamie Jones,   http://www.bishopston.com/jamie/
 164 days to Christmas!Word of the day: otorhinolaryngologist
- I'm not big, and I'm not clever - and I'm definitely not funny.
- They love their Parasite God - Yet they crucify me.
--- The valid reply address on this posting expires in 7 days time.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]