Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-10 Thread Michael D. Harnois

The libraries build for me without incident. However, anything which
tries to link against libGLU generates this error for me:

/usr/X11R6/lib/libGLU.so: undefined reference to `operator
new[](unsigned)'
/usr/X11R6/lib/libGLU.so: undefined reference to `vtable for
__cxxabiv1::__si_class_type_info'
/usr/X11R6/lib/libGLU.so: undefined reference to `operator
delete(void*)'
/usr/X11R6/lib/libGLU.so: undefined reference to `__gxx_personality_v0'
/usr/X11R6/lib/libGLU.so: undefined reference to `__cxa_pure_virtual'
/usr/X11R6/lib/libGLU.so: undefined reference to `vtable for
__cxxabiv1::__class_type_info'
/usr/X11R6/lib/libGLU.so: undefined reference to `operator
delete[](void*)'
/usr/X11R6/lib/libGLU.so: undefined reference to `vtable for
__cxxabiv1::__vmi_class_type_info'
/usr/X11R6/lib/libGLU.so: undefined reference to `operator
new(unsigned)'


 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
2L, UST School of Law   Minneapolis, Minnesota
 If you want to follow Jesus, you better look good on wood.
  --Daniel Berrigan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-10 Thread Michael D. Harnois

On Mon, 2002-06-10 at 12:13, David O'Brien wrote:
 On Mon, Jun 10, 2002 at 12:02:41PM -0500, Michael D. Harnois wrote:
  The libraries build for me without incident. However, anything which
  tries to link against libGLU generates this error for me:
 
 Your current is too old.  Please do a fresh build. 

Since 6:30 last night?
 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
2L, UST School of Law   Minneapolis, Minnesota
 Wise men talk because they have something to say; 
 fools, because they have to say something. -- Plato


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: GCC3.1 internal compiler error when compilingXFree86-4-libraries

2002-06-04 Thread Michael D. Harnois

  you replace
  #pragma weak foo = bar
  with either
  #pragma weak foo = bar /* this is easier */
  or
  if __GNUC__ = 3
  int foo() __attribute__ ((weak, alias (bar)));
  #endif /* __GNUC__ */
  .

I tried the quotation mark fix, and all it does is change the error
message to

UIThrStubs.c:102: warning: malformed #pragma weak, ignored
UIThrStubs.c:103: warning: malformed #pragma weak, ignored
UIThrStubs.c:104: warning: malformed #pragma weak, ignored
UIThrStubs.c:105: warning: malformed #pragma weak, ignored
UIThrStubs.c:106: warning: malformed #pragma weak, ignored
UIThrStubs.c:107: warning: malformed #pragma weak, ignored
UIThrStubs.c:108: warning: malformed #pragma weak, ignored
UIThrStubs.c:109: warning: malformed #pragma weak, ignored
UIThrStubs.c:110: warning: malformed #pragma weak, ignored
UIThrStubs.c:111: warning: malformed #pragma weak, ignored
UIThrStubs.c:113: warning: malformed #pragma weak, ignored
UIThrStubs.c:114: warning: malformed #pragma weak, ignored
UIThrStubs.c:115: warning: malformed #pragma weak, ignored
UIThrStubs.c:131: warning: `_Xthr_self_stub_' defined but not used
UIThrStubs.c:139: warning: `_Xthr_zero_stub_' defined but not used

which doesn't really seem to be a solution.

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
2L, UST School of Law   Minneapolis, Minnesota
 There are things that are so serious 
 that you can only joke about them. -- Werner Heisenberg


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: don't know how to make buildincludes in buildworld from -stableto -current

2002-05-16 Thread Michael D. Harnois

On Thu, 2002-05-16 at 05:42, Hans Lambermont wrote:

 Is anyone else able to upgrade from stable to current ?

I'm running current, and I'm experiencing the same problem you are.
 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
2L, UST School of Law   Minneapolis, Minnesota
 I am a nobody, and nobody is perfect; therefore, I am perfect.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Rev. 1.82 of kern_linker.c disables module loads...

2002-03-21 Thread Michael D. Harnois

On Thu, 2002-03-21 at 07:02, Thomas Quinot wrote:

 Le 2002-03-21, Harti Brandt écrivait :
 
  This revision of kern_linker.c entirly disables module loads from /etc/rc
  during boot:
 
 Or even after boot. Confirmed here: kldload always returns 'Operation
 not permitted'.

Here as well.
 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 Hell is full of good meanings and wishings. 
 -- George Herbert


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Please backout recent ipfilter changes.

2002-03-19 Thread Michael D. Harnois

On Tue, 2002-03-19 at 17:18, Mark Murray wrote:
 Post the _errors_. :-)

cc -pipe -march=pentiumpro -DUSE_INET6 -DIPL_NAME=\/dev/ipl\
-I/usr/src/sbin/ipnat/../../sys/contrib/ipfilter/netinet
-I/usr/src/sbin/ipnat/../../contrib/ipfilter -static -o ipnat
ipnat.o kmem.o natparse.o common.o  -lkvm
ipnat.o: In function `dostats':
ipnat.o(.text+0x671): undefined reference to `printnat'
ipnat.o(.text+0x733): undefined reference to `printactivenat'
ipnat.o: In function `showhostmap':
ipnat.o(.text+0x858): undefined reference to `printhostmap'
natparse.o: In function `natparsefile':
natparse.o(.text+0x1d02): undefined reference to `printnat'


 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 A man is a success if he gets up in the morning and gets to bed at
night,
 and in between he does what he wants to do. -- Bob Dylan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



bpf broken

2002-03-13 Thread Michael D. Harnois

../../../net/bpf.c: In function `bpf_wakeup':
../../../net/bpf.c:518: structure has no member named `si_pid'

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 Waiter, there's no fly in my soup! - Kermit the Frog


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: 5-CURRENT source upgrade path is broken in PAM

2002-03-07 Thread Michael D. Harnois

On Thu, 7 Mar 2002 13:30:44 +0200 (EET), Maxim Sobolev [EMAIL PROTECTED] said:

Maxim Hi, Looks like source upgrade path is broken due to PAM. My
Maxim system is -CURRENT compiled on 19 February. Please fix.

Could this have anything to do with the fact that, since I built world
yesterday, I can't log in as root?

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 A witty saying proves nothing. -- Voltaire

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



bktr now fails

2002-03-05 Thread Michael D. Harnois

I used to be able to use my Brooktree card with no problem. However, a
month or so ago, I started getting this at boot:

bktr0: BrookTree 878 mem 0xf500-0xf5000fff irq 9 at device 12.0 on pci2
bktr0: could not map memory
device_probe_and_attach: bktr0 attach returned 6
pci2: multimedia at device 12.1 (no driver attached)

Any ideas?

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 Times are bad. Children no longer obey their parents, 
  and everyone is writing a book. -- Marcus Tullius Cicero

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: bktr now fails

2002-03-05 Thread Michael D. Harnois

On Tue, 2002-03-05 at 12:10, M. Warner Losh wrote:

 Humor me and compile PCI_ALLOW_UNSUPPORTED_IO_RANGE

You da man. Thanks!
 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 If you want to follow Jesus, you better look good on wood.
  --Daniel Berrigan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



this morning's kernel hangs

2002-02-26 Thread Michael D. Harnois

I cvsuped and built world and kernel this morning, and the kernel hangs
at atkbd0: AT Keyboard flags 0x1 irq 1 on atkbdc0.

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 The price one pays for pursuing any profession, or calling, 
 is an intimate knowledge of its ugly side. -- James Baldwin


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Today's panic on boot problem

2002-02-26 Thread Michael D. Harnois

On Tue, 2002-02-26 at 17:38, Peter Wemm wrote:

 You may like to try reverting this change:

A great idea, but unfortunately, incorrect ...
 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 Censorship is the strongest drive in human nature; 
 sex is a weak second. -- Phil Kerby


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: ports/34908: libpng port makes bad dynamic library on -CURRENT

2002-02-21 Thread Michael D. Harnois

On Thu, 2002-02-21 at 04:03, David O'Brien wrote:

 On Thu, Feb 21, 2002 at 12:05:31AM +0100, Stijn Hoop wrote:
  
  Maybe this can now be committed?
 
 NOT until I have sufficient feedback from the FSF Binutils developers.

OK, I'm confused. binutils has been broken for three weeks. We have a
patch that we know fixes, at the very least, one of the known problems.
However, it can't be committed without feedback from the developers.

So having binutils broken indefinitely is better than applying a patch
that *might* have to be backed out or altered later?
 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 Creative thought means that you forgot where you read it.
  --Stanley Hauerwas


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: ports/34908: libpng port makes bad dynamic library on -CURRENT

2002-02-21 Thread Michael D. Harnois

On Thu, 2002-02-21 at 13:29, Terry Lambert wrote:
 Michael D. Harnois wrote:
  On Thu, 2002-02-21 at 04:03, David O'Brien wrote:
   On Thu, Feb 21, 2002 at 12:05:31AM +0100, Stijn Hoop wrote:
   
Maybe this can now be committed?
  
   NOT until I have sufficient feedback from the FSF Binutils developers.
  
  OK, I'm confused. binutils has been broken for three weeks. We have a
  patch that we know fixes, at the very least, one of the known problems.
  However, it can't be committed without feedback from the developers.
  
  So having binutils broken indefinitely is better than applying a patch
  that *might* have to be backed out or altered later?
 
 I believe the intent is to ensure that the patches make it
 back into the FSF distributed code, so that in the future,
 there is less maintenance required for FreeBSD platforms.

This is all wonderful.

But then it seems to me that the entire new binutils should have been
backed out until it worked. Just like XFree-4.2.0 was backed out.
 
-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 EDUCATION, n. That which discloses to the wise and disguises from 
 the foolish their lack of understanding. -- Ambrose Bierce


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Binutils fixed in -current?

2002-02-11 Thread Michael D. Harnois

 first time only:

cd /usr/src/gnu/usr.bin/binutils
cvs -qR up -D '1/27/2002 11:55 UTC'
cd /usr/src/contrib/binutils
cvs -qR up -D '1/27/2002 11:55 UTC'

I thought this sounded like a great idea, but it gives me

In file included from 
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elf32-i386.c:2159:
elf32-target.h:605: `bfd_elf32_bfd_merge_sections' undeclared here (not in a function)
elf32-target.h:605: initializer element is not constant
elf32-target.h:605: (near initialization for `bfd_elf32_i386_vec._bfd_merge_sections')

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 The price one pays for pursuing any profession, or calling, 
 is an intimate knowledge of its ugly side. -- James Baldwin

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Binutils fixed in -current?

2002-02-11 Thread Michael D. Harnois

Never mind. My bad.

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 The price one pays for pursuing any profession, or calling, 
 is an intimate knowledge of its ugly side. -- James Baldwin

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Binutils fixed in -current?

2002-02-11 Thread Michael D. Harnois

 first time only:

cd /usr/src/gnu/usr.bin/binutils
cvs -qR up -D '1/27/2002 11:55 UTC'
cd /usr/src/contrib/binutils
cvs -qR up -D '1/27/2002 11:55 UTC'

I thought this sounded like a great idea, but it gives me

In file included from 
/usr/src/gnu/usr.bin/binutils/libbfd/../../../../contrib/binutils/bfd/elf32-i386.c:2159:
elf32-target.h:605: `bfd_elf32_bfd_merge_sections' undeclared here (not in a function)
elf32-target.h:605: initializer element is not constant
elf32-target.h:605: (near initialization for `bfd_elf32_i386_vec._bfd_merge_sections')

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 The price one pays for pursuing any profession, or calling, 
 is an intimate knowledge of its ugly side. -- James Baldwin

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Binutils fixed in -current?

2002-02-11 Thread Michael D. Harnois

Never mind. My bad.

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 The price one pays for pursuing any profession, or calling, 
 is an intimate knowledge of its ugly side. -- James Baldwin

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



mergemaster and /etc/pam.d

2002-01-04 Thread Michael D. Harnois

mergemaster does not pick up changes to the /etc/pam.d directory. Is
this a feature?

-- 
Michael D. Harnois   bilocational bivocational
Pastor, Redeemer Lutheran ChurchWashburn, Iowa
1L, UST School of Law   Minneapolis, Minnesota
 When the stomach is satisfied, and lust is spent, 
 man spares a little time for God. -- Will Durant

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message