Re: kernel compile problems

2009-02-22 Thread Tim Judd

On Sat, 2009-02-21 at 13:41 +, daemon wrote:
 Hi,
 
 I try to build a 7.1 kernel but when i does
 
 # make depend  make clean depend


So you make the dependency chain, then clean it and remake the
dependency chain.  You've gained nothing.


 
 make shows :
 
 make : don't know how to make ../../../dev/agp/agp.c. Stop
 


This sounds like you've removed the device agp from the config file...
Which is needed, even if you don't have an AGP slot/card in your system.


 anyone know anything? Thanks!

GL

___
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


kernel compile problems

2009-02-21 Thread daemon
Hi,

I try to build a 7.1 kernel but when i does

# make depend  make clean depend

make shows :

make : don't know how to make ../../../dev/agp/agp.c. Stop

anyone know anything? Thanks!
___
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: kernel compile problems

2009-02-21 Thread Michael Powell
daemon wrote:

 Hi,
 
 I try to build a 7.1 kernel but when i does
 
 # make depend  make clean depend
 
 make shows :
 
 make : don't know how to make ../../../dev/agp/agp.c. Stop
 
 anyone know anything? Thanks!
[snip]

Have you tried cd to /usr/src and make buildkernel KERNCONF=yourkernel
and make installkernel KERNCONF=yourkernel ? Where yourkernel would be the 
name of your custom kernel (yourkernel.conf) minus the .conf part.

-Mike




___
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: kernel compile problems

2009-02-21 Thread Wojciech Puchar


# make depend  make clean depend

make shows :

make : don't know how to make ../../../dev/agp/agp.c. Stop

anyone know anything? Thanks!


that you miss some files - this file do exist.


___
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: kernel compile problems

2009-02-21 Thread Bruce Cran

daemon wrote:

I try to build a 7.1 kernel but when i does

# make depend  make clean depend

make shows :

make : don't know how to make ../../../dev/agp/agp.c. Stop

anyone know anything? Thanks!
  


The process for building a kernel has changed since the days of 4.x.  
Now you should just use:


make buildkernel KERNCONF=configfile

Leave the KERNCONF out to build GENERIC.

See 
http://www.freebsd.org/doc/en/books/handbook/kernelconfig-building.html 
for more details.


--
Bruce Cran
___
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: kernel compile problems

2009-02-21 Thread Wojciech Puchar
The process for building a kernel has changed since the days of 4.x.  Now you 
should just use:


make buildkernel KERNCONF=configfile

Leave the KERNCONF out to build GENERIC.

See http://www.freebsd.org/doc/en/books/handbook/kernelconfig-building.html 
for more details.


--

if userland and kernel are in sync old method is OK
___
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: kernel compile problems

2009-02-21 Thread Reed Loefgren

Wojciech Puchar wrote:


# make depend  make clean depend   --?

make shows :

make : don't know how to make ../../../dev/agp/agp.c. Stop

anyone know anything? Thanks!


that you miss some files - this file do exist.


___
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



boozer [105] [9:56am] [/sys/i386/conf]# cp GENERIC sample
boozer [106] [9:56am] [/sys/i386/conf]# config sample
Kernel build directory is ../compile/sample
Don't forget to do ``make cleandepend  make depend''--!

Might that be it?
___
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: Kernel compile problems

2007-12-15 Thread s.huckenholz

Hi Ryan,

I presume you do something like :

make -jX KERNCONF=newkernel kernel

where  X is a number larger than 2 ??

Run it without the j flag and then other errors will show up.
These errors are caused by a misconfigured kernel and reading your  
kernel conf I found at least 2:


I suggest that you either enable

device  scbus  and
device  da

or disable
device  umass

and the next :
if you disable device wlan
you need to disable
 device ural
 too
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Kernel compile problems

2007-12-14 Thread O-ren-ishi-i

Hi all,

I use this kernel config file (follows below): syntactical the configuration 
appears ok.I get no errors here.
When compiling the kernel I get errors as soon as the modules are being build.
I then tried /etc/make.conf (adding this line as zlib.ko is the first module 
that makes problems)
 WITHOUT_MODULES = zlib

I don't find the error.

Thanks in advance

Ryan 

I am running FreeBSD 6.2-Release i386 SMP ( on Athlon 64 X2 4600+


machine i386
#cpuI486_CPU
#cpuI586_CPU
cpu I686_CPU
ident   GENERIC

# To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints # Default places to look for devices.

makeoptions DEBUG=-g# Build kernel with gdb(1) debug symbols

options SCHED_4BSD  # 4BSD scheduler
options PREEMPTION  # Enable kernel thread preemption
options INET# InterNETworking
#optionsINET6   # IPv6 communications protocols
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big directories
options MD_ROOT # MD is a potential root device
options NFSCLIENT   # Network Filesystem Client
options NFSSERVER   # Network Filesystem Server
options NFS_ROOT# NFS usable as /, requires NFSCLIENT
options MSDOSFS # MSDOS Filesystem
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Compatible with BSD 4.3 [KEEP THIS!]
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options COMPAT_FREEBSD5 # Compatible with FreeBSD5
#optionsSCSI_DELAY=5000 # Delay (in ms) before probing SCSI
options KTRACE  # ktrace(1) support
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time 
extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options ADAPTIVE_GIANT  # Giant mutex is adaptive.

#make the console support higher resolutions
options VESA
options SC_PIXEL_MODE

#SMP
options SMP #multiprocessor
device  apic# I/O APIC

# Bus support.
device  eisa
device  pci

# Floppy drives
#device fdc

# ATA and ATAPI devices
device  ata
device  atadisk # ATA disk drives
#device ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
#device atapifd # ATAPI floppy drives
#device atapist # ATAPI tape drives
options ATA_STATIC_ID   # Static device numbering

# SCSI Controllers
#device ahb # EISA AHA1742 family
device  ahc # AHA2940 and onboard AIC7xxx devices
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
device  ahd # AHA39320/29320 and onboard AIC79xx devices
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~215k to driver.
device  amd # AMD 53C974 (Tekram DC-390(T))
device  isp # Qlogic family
#device ispfw   # Firmware for QLogic HBAs- normally a module
device  mpt # LSI-Logic MPT-Fusion
#device ncr # NCR/Symbios Logic
device  sym # NCR/Symbios Logic (newer chipsets + those of 
`ncr')
#device trm # Tekram DC395U/UW/F DC315U adapters

#device adv # Advansys SCSI adapters
#device adw # Advansys wide SCSI adapters
#device aha # Adaptec 154x SCSI adapters
#device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
#device bt  # Buslogic/Mylex MultiMaster SCSI adapters

#device ncv # NCR 53C500
#device nsp # Workbit Ninja SCSI-3
#device stg # TMC 18C30/18C50

# SCSI peripherals
#device scbus   # SCSI bus (required for SCSI)
#device ch  # SCSI media 

Re: Kernel compile problems

2007-12-14 Thread John Murphy
On Fri, 14 Dec 2007 16:23:41 -0500 (EST)
O-ren-ishi-i [EMAIL PROTECTED] wrote:

 
 Hi all,
 
 I use this kernel config file (follows below): syntactical the
 configuration appears ok.I get no errors here.
 When compiling the kernel I get errors as soon as the modules are
 being build.
 I then tried /etc/make.conf (adding this line as zlib.ko is the
 first module that makes problems)
  WITHOUT_MODULES = zlib
 
 I don't find the error.
 
 Thanks in advance
 
 Ryan 
 
 I am running FreeBSD 6.2-Release i386 SMP ( on Athlon 64 X2 4600+

Hi Ryan

You have a line in your kernel config:

device  umass   # Disks/Mass storage - Requires scbus and da

But scbus and da are commented out.

I'm not sure it will entirely cure the problem. Also it's advisable
to call a modified kernel something other than GENERIC and change
the ident line accordingly.

Follow up with the errors you get if it still won't build.

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


PHP5 Compile Problems

2006-04-26 Thread Bradford Fisher
I'm currently trying to run:
 
make CONFIGURE_ARGS+=--with-pcre-regex \
CONFIGURE_ARGS+=--enable-fastcgi \
CONFIGURE_ARGS+=--enable-force-cgi-redirect
 
However, every time I run the command, I get an error about a problem
with apache13.  But I do not want to install apache, because I plan to
use lighttpd instead.
 
After talking with a couple people in the ##freebsd channel on
freenode.net, I edited my /usr/ports/lang/php5/Makefile so that it read
WITH_APACHE = NO and then ran make distclean in both the
/usr/ports/lang/php5 and /usr/ports/www/apache13 directories.  Then I
reran the above command, but make still tried to obtain the apache13
code and ended with an error.
 
What might I be doing wrong?
 
Thanks! - Brad
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PHP5 Compile Problems

2006-04-26 Thread Philip Hallstrom

I'm currently trying to run:

make CONFIGURE_ARGS+=--with-pcre-regex \
CONFIGURE_ARGS+=--enable-fastcgi \
CONFIGURE_ARGS+=--enable-force-cgi-redirect

However, every time I run the command, I get an error about a problem
with apache13.  But I do not want to install apache, because I plan to
use lighttpd instead.

After talking with a couple people in the ##freebsd channel on
freenode.net, I edited my /usr/ports/lang/php5/Makefile so that it read
WITH_APACHE = NO and then ran make distclean in both the
/usr/ports/lang/php5 and /usr/ports/www/apache13 directories.  Then I
reran the above command, but make still tried to obtain the apache13
code and ended with an error.

What might I be doing wrong?


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


Help ispell compile problems

2005-06-08 Thread Sean Murphy
Can someone please help

i am using
FreeBSD 5.4-RELEASE #0: Wed Jun  8 12:08:30 PDT 2005

I have copied the local.h.bsd to local.h
I have tried using the generic

I have tried using both in both of the previous files
#undef USG
#define USG

but i think the problem is in defhash.h

alum# make all
set +vx;  MASTERHASH=`cat config.X local.h  | sed -n -e  's/^#define[
]*LANGUAGES[][^}]*HASHFILES=\([^,}]*\).*$/\1/p'  | sed -n -e '$p'`;
 case $MASTERHASH in  american*|british*)
DEFHASH=english$HASHSUFFIX;;  *) DEFHASH=$MASTERHASH;;  esac;
DEFLANG=`expr $DEFHASH : '\(.*\)\..*$'`.aff;  echo /* This file is
generated by the Makefile.  Don't edit it! */   defhash.h;  echo '' 
defhash.h;  echo '#ifndef MASTERHASH'  defhash.h;  echo '#define
MASTERHASH '$MASTERHASH''  defhash.h;  echo '#endif'  defhash.h;
 echo '#ifndef DEFHASH'  defhash.h;  echo '#define DEFHASH
'$DEFHASH''  defhash.h;  echo '#endif'  defhash.h;  echo
'#ifndef DEFLANG'  defhash.h;  echo '#define DEFLANG '$DEFLANG''
 defhash.h;  echo '#endif'  defhash.h
*** Error code 1

Stop in /usr/local/src/ispell-3.3.01.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Help ispell compile problems

2005-06-08 Thread Charles Swiger

On Jun 8, 2005, at 6:42 PM, Sean Murphy wrote:

Can someone please help

i am using
FreeBSD 5.4-RELEASE #0: Wed Jun  8 12:08:30 PDT 2005


ispell-3.2.06 is available in /usr/ports/textproc/ispell.  Judging by  
the number of patches used for that port, trying to build ispell  
yourself on FreeBSD is not entirely trivial


--
-Chuck

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


compile problems

2004-01-13 Thread Shawn Ramsey
I am having trouble compiling perl (as well as others, such as GD). Here is th error 
message :

 Making List::Util (dynamic)

   Making MIME::Base64 (dynamic)
cc -c-DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.2/BSDPAN -DHAS_FPSETMASK -DHAS
_FLOATINGPOINT_H -fno-strict-aliasing -I/usr/local/include -O -pipe-DVERSION
=\2.21\  -DXS_VERSION=\2.21\ -DPIC -fPIC -I../../..   Base64.c
Base64.xs: In function `XS_MIME__Base64_decode_base64':
Base64.xs:219: `dowarn' undeclared (first use in this function)
Base64.xs:219: (Each undeclared identifier is reported only once
Base64.xs:219: for each function it appears in.)
*** Error code 1

Stop in /usr/ports/lang/perl5.8/work/perl-5.8.2/ext/MIME/Base64.
*** Error code 1

Stop in /usr/ports/lang/perl5.8/work/perl-5.8.2.
*** Error code 1

Stop in /usr/ports/lang/perl5.8.


This is on a 4.7-STABLE system from 2002...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: openoffice-devel compile problems ...

2003-10-15 Thread ivan georgiev
On Monday 13 October 2003 09:09 pm, Jens Rehsack wrote:
 ivan georgiev wrote:
  On Monday 13 October 2003 07:40 pm, Jens Rehsack wrote:

 [...]

  nsICookieService.idl
  ../../../dist/bin/xpidl -m header -w -I ../../../dist/idl -I. -o
  _xpidlgen/nsICookieService nsICookieService.idl
  gmake[4]: *** [../../../dist/include/necko] Illegal instruction
  (core dumped)

 I think this says all. Try another CPUTYPE and let me know the
 results.

 Jens

I finally compiled openoffice !!! But I have no clue why it worked 
this time. So, I gave up on using portinstall and did
make install clean in the openoffice-devel directory. It was 
compiling for one hour and then stopped complaining something about 
a.out  (as shown bellow). Then I lunched make install clean 
again and it picked up from the place it left, worked another hour or 
so and stopped at a different place again complaining about a.out. 
After 6-7 steps like this I finally compiled it. I have no clue what 
kind of problem is this and will be very happy if someone can tell 
me. Bellow follows one example of the many stops:

--
Making: ../../unxfbsd.pro/slb/bridgefac.uno.lib
echo unxfbsd.pro/slo/bridgefactory.o unxfbsd.pro/slo/bridgeimpl.o | 
xargs -n1  ../../unxfbsd.pro/slb/bridgefac.uno.lib
nm: a.out: No such file or directory
dmake:  Error code 1, while making '../../unxfbsd.pro/slb/
bridgefac.uno.lib'
dmake:  '../../unxfbsd.pro/slb/bridgefac.uno.lib' removed.
---* TG_SLO.MK *---

Thank you,
Ivan

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


Re: openoffice-devel compile problems ...

2003-10-15 Thread Jens Rehsack
ivan georgiev wrote:
On Monday 13 October 2003 09:09 pm, Jens Rehsack wrote:

ivan georgiev wrote:

On Monday 13 October 2003 07:40 pm, Jens Rehsack wrote:
[...]


nsICookieService.idl
../../../dist/bin/xpidl -m header -w -I ../../../dist/idl -I. -o
_xpidlgen/nsICookieService nsICookieService.idl
gmake[4]: *** [../../../dist/include/necko] Illegal instruction
(core dumped)
I think this says all. Try another CPUTYPE and let me know the
results.
Jens


I finally compiled openoffice !!! But I have no clue why it worked 
this time. So, I gave up on using portinstall and did
make install clean in the openoffice-devel directory. It was 
compiling for one hour and then stopped complaining something about 
a.out  (as shown bellow). Then I lunched make install clean 
again and it picked up from the place it left, worked another hour or 
so and stopped at a different place again complaining about a.out. 
After 6-7 steps like this I finally compiled it. I have no clue what 
kind of problem is this and will be very happy if someone can tell 
me. Bellow follows one example of the many stops:

--
Making: ../../unxfbsd.pro/slb/bridgefac.uno.lib
echo unxfbsd.pro/slo/bridgefactory.o unxfbsd.pro/slo/bridgeimpl.o | 
xargs -n1  ../../unxfbsd.pro/slb/bridgefac.uno.lib
nm: a.out: No such file or directory
dmake:  Error code 1, while making '../../unxfbsd.pro/slb/
bridgefac.uno.lib'
dmake:  '../../unxfbsd.pro/slb/bridgefac.uno.lib' removed.
---* TG_SLO.MK *---
This says nothing - at least not to me. In conjunction with your
above described error I assume a hardware problem.
Jens

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


openoffice-devel compile problems ...

2003-10-13 Thread ivan georgiev
I tried three times to compile openoffice-devel (I use 5-1p10) and it 
always fails when compiling mozilla - on different places and always 
with a core dump. I saw some messages that people are happy with it 
(therefore it must be compileable). Do I have to do something special 
besaides the 
portinstall  /usr/ports/editors/openoffice-devel which I use?

Thanks,
Ivan

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


Re: openoffice-devel compile problems ...

2003-10-13 Thread Jens Rehsack
ivan georgiev wrote:
I tried three times to compile openoffice-devel (I use 5-1p10) and it 
always fails when compiling mozilla - on different places and always 
with a core dump. I saw some messages that people are happy with it 
(therefore it must be compileable). Do I have to do something special 
besaides the 
portinstall  /usr/ports/editors/openoffice-devel which I use?
Maybe you've specified a to high optimization level in
/etc/make.conf. Check you CFLAGS. Mozilla build break
mostly with anything higher than -O2.
Regards,
Jens
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: openoffice-devel compile problems ...

2003-10-13 Thread ivan georgiev
On Monday 13 October 2003 07:05 pm, Jens Rehsack wrote:
 ivan georgiev wrote:
  I tried three times to compile openoffice-devel (I use 5-1p10)
  and it always fails when compiling mozilla - on different places
  and always with a core dump. I saw some messages that people are
  happy with it (therefore it must be compileable). Do I have to do
  something special besaides the
  portinstall  /usr/ports/editors/openoffice-devel which I use?

 Maybe you've specified a to high optimization level in
 /etc/make.conf. Check you CFLAGS. Mozilla build break
 mostly with anything higher than -O2.

 Regards,
 Jens

Thanks Jens,

I have:
CFLAGS=-O1 -pipe 
CPUTYPE=p4
in make.conf . I do not think it is a hardware/memory problem, because  
make -j4 buildworld always finishes without a glitch. What else can 
I check/modify?

Ivan

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


Re: openoffice-devel compile problems ...

2003-10-13 Thread Jens Rehsack
ivan georgiev wrote:
On Monday 13 October 2003 07:05 pm, Jens Rehsack wrote:

ivan georgiev wrote:

I tried three times to compile openoffice-devel (I use 5-1p10)
and it always fails when compiling mozilla - on different places
and always with a core dump. I saw some messages that people are
happy with it (therefore it must be compileable). Do I have to do
something special besaides the
portinstall  /usr/ports/editors/openoffice-devel which I use?
Maybe you've specified a to high optimization level in
/etc/make.conf. Check you CFLAGS. Mozilla build break
mostly with anything higher than -O2.
Regards,
Jens


Thanks Jens,

I have:
CFLAGS=-O1 -pipe 
CPUTYPE=p4
in make.conf . I do not think it is a hardware/memory problem, because  
make -j4 buildworld always finishes without a glitch. What else can 
I check/modify?
Maybe it would be better to set CPUTYPE to p3, 'cause the cc of 5.1 is
known to produce bad code for pentium4 in some situations.
Furthermore it would really help if you send the message the build dumps 
with.

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


Re: openoffice-devel compile problems ...

2003-10-13 Thread ivan georgiev
On Monday 13 October 2003 07:40 pm, Jens Rehsack wrote:
 ivan georgiev wrote:
  On Monday 13 October 2003 07:05 pm, Jens Rehsack wrote:
 ivan georgiev wrote:
 I tried three times to compile openoffice-devel (I use 5-1p10)
 and it always fails when compiling mozilla - on different places
 and always with a core dump. I saw some messages that people are
 happy with it (therefore it must be compileable). Do I have to
  do something special besaides the
 portinstall  /usr/ports/editors/openoffice-devel which I use?
 
 Maybe you've specified a to high optimization level in
 /etc/make.conf. Check you CFLAGS. Mozilla build break
 mostly with anything higher than -O2.
 
 Regards,
 Jens
 
  Thanks Jens,
 
  I have:
  CFLAGS=-O1 -pipe
  CPUTYPE=p4
  in make.conf . I do not think it is a hardware/memory problem,
  because make -j4 buildworld always finishes without a glitch.
  What else can I check/modify?

 Maybe it would be better to set CPUTYPE to p3, 'cause the cc of 5.1
 is known to produce bad code for pentium4 in some situations.
 Furthermore it would really help if you send the message the build
 dumps with.

Here is the place where it core dumps:

nsICookieService.idl
../../../dist/bin/xpidl -m header -w -I ../../../dist/idl -I. -o 
_xpidlgen/nsICookieService nsICookieService.idl
gmake[4]: *** [../../../dist/include/necko] Illegal instruction (core 
dumped)
gmake[4]: Leaving directory `/usr/ports/editors/openoffice-devel/work/
mozilla/work/mozilla/netwerk/cookie/public'
gmake[3]: *** [export] Error 2
gmake[3]: Leaving directory `/usr/ports/editors/openoffice-devel/work/
mozilla/work/mozilla/netwerk/cookie'
gmake[2]: *** [export] Error 2
gmake[2]: Leaving directory `/usr/ports/editors/openoffice-devel/work/
mozilla/work/mozilla/netwerk'
gmake[1]: *** [tier_9] Error 2
gmake[1]: Leaving directory `/usr/ports/editors/openoffice-devel/work/
mozilla/work/mozilla'
gmake: *** [default] Error 2
*** Error code 2

Stop in /usr/ports/editors/openoffice-devel/work/mozilla.
*** Error code 1

Stop in /usr/ports/editors/openoffice-devel.
*** Error code 1

Stop in /usr/ports/editors/openoffice-devel.
*** Error code 1

Stop in /usr/ports/editors/openoffice-devel.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/
portinstall23087.0 make
** Fix the problem and try again.
** The following packages were not installed or upgraded 
(*:skipped / !:failed)
! editors/openoffice-devel  (coredump)


Ivan

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


openoffice-devel compile problems ...

2003-10-13 Thread Robert Huff

ivan georgiev writes:

  I tried three times to compile openoffice-devel (I use 5-1p10) and it 
  always fails when compiling mozilla - on different places and always 
  with a core dump. I saw some messages that people are happy with it 
  (therefore it must be compileable). Do I have to do something special 
  besaides the 
  portinstall  /usr/ports/editors/openoffice-devel which I use?

Mune breaks also, but at a different place.
Actually, in some ways it's the same place.  OO wants Mozilla,
which wants JDK14,  JDK14 is broken; my last response on the compile
was:

===  Building for jdk-1.4.1p3_3
# Start of jdk build
bsd i586 1.4.1-p3 build started: 03-10-09 19:08

It's been running since then using 66% of a P4-2.2g.

By the way, who do I excalate to when the maintainer doesn't
answer e-mail? I've sent two messages to [EMAIL PROTECTED] and
had no response.



Robert Huff




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


Re: openoffice-devel compile problems ...

2003-10-13 Thread Jens Rehsack
ivan georgiev wrote:
On Monday 13 October 2003 07:40 pm, Jens Rehsack wrote:
[...]

nsICookieService.idl
../../../dist/bin/xpidl -m header -w -I ../../../dist/idl -I. -o 
_xpidlgen/nsICookieService nsICookieService.idl
gmake[4]: *** [../../../dist/include/necko] Illegal instruction (core 
dumped)
I think this says all. Try another CPUTYPE and let me know the results.

Jens

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


Re: openoffice-devel compile problems ...

2003-10-13 Thread Jens Rehsack
Robert Huff wrote:
ivan georgiev writes:


I tried three times to compile openoffice-devel (I use 5-1p10) and it 
always fails when compiling mozilla - on different places and always 
with a core dump. I saw some messages that people are happy with it 
(therefore it must be compileable). Do I have to do something special 
besaides the 
portinstall  /usr/ports/editors/openoffice-devel which I use?


Mune breaks also, but at a different place.
Actually, in some ways it's the same place.  OO wants Mozilla,
which wants JDK14,  JDK14 is broken; my last response on the compile
was:
===  Building for jdk-1.4.1p3_3
# pkg_info | grep jdk-1.4
jdk-1.4.1p4 Java Development Kit 1.4.1
Alexey, Greg and all contributor did a great job with that
patch level, 'cause it runs for me without any problems.
Regards,
Jens
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: openoffice-devel compile problems ...

2003-10-13 Thread ivan georgiev
  nsICookieService.idl
  ../../../dist/bin/xpidl -m header -w -I ../../../dist/idl -I. -o
  _xpidlgen/nsICookieService nsICookieService.idl
  gmake[4]: *** [../../../dist/include/necko] Illegal instruction
  (core dumped)

 I think this says all. Try another CPUTYPE and let me know the
 results.

I forgot to mention that this was compiled with CPUTYPE=p3 (I have p4) 
I will try with pentiumpro(i686) and will let you know.

Thanks,
Ivan

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


Re: openoffice-devel compile problems ...

2003-10-13 Thread ivan georgiev
  nsICookieService.idl
  ../../../dist/bin/xpidl -m header -w -I ../../../dist/idl -I. -o
  _xpidlgen/nsICookieService nsICookieService.idl
  gmake[4]: *** [../../../dist/include/necko] Illegal instruction
  (core dumped)

 I think this says all. Try another CPUTYPE and let me know the
 results.

I compiled with CPUTYPE=i686 and it passed successfully the mozilla 
build. However, this time it stopped with this error:

--
Making: ../../../../../../unxfbsd.pro/slb/sablot.lib
Making: ../../../../../../unxfbsd.pro/lib/libsablot.a
dmake:  Error code 139, while making '../../../../../../unxfbsd.pro/
lib/libsablot.a'
---* TG_SLO.MK *---
dmake:  Error code 255, while making './unxfbsd.pro/misc/build/
so_built_so_sablotron'
---* TG_SLO.MK *---

ERROR: Error 65280 occurred while making /usr/ports/editors/
openoffice-devel/work/oo_1.1_src/sablot
dmake:  Error code 1, while making 'build_all'
---* TG_SLO.MK *---
*** Error code 255

Stop in /usr/ports/editors/openoffice-devel.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/
portinstall37293.0 make
** Fix the problem and try again.
** The following packages were not installed or upgraded 
(*:skipped / !:failed)
! editors/openoffice-devel  (linker error)


Ivan

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


make buildkernel compile problems, stop in umass.c

2003-02-03 Thread lilpuppie
Hello,

I've got a 4.4-RC server that I'm attempting to upgrade all the source on. I'm 
following the directions found at: 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html  to the 
letter to do this. My make buildworld went just fine, although I can't seem to get 
past this make buildkernel compile problem. I CVSup'd on February 1st 2003 at around 
6:00pm. It keeps failing on umass.c, the below is the offending output of the build:


=== umass
cc -O -pipe   -D_KERNEL -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  
-Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions -ansi 
-DKLD_MODULE -nostdinc -I-  -I. -I@ -I@/../include  -mpreferred-stack-boundary=2 -Wall 
-Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes 
-Wpointer-arith -Winline -Wcast-qual  -fformat-extensions -ansi -c 
/usr/src/sys/modules/umass/../../dev/usb/umass.c
/usr/src/sys/modules/umass/../../dev/usb/umass.c:380: syntax error before `{'
/usr/src/sys/modules/umass/../../dev/usb/umass.c:383: warning: no semicolon at end of 
struct or union
/usr/src/sys/modules/umass/../../dev/usb/umass.c:426: syntax error before `}'
*** Error code 1
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error


I don't need this, as to my knowledge it's only a USB Mass Storage driver and it isn't 
a dependency of anything else (I'm assuming). I've commented out all the USB drivers 
in both my custom and GENERIC kernel config files, and tried building with both but it 
fails with exactly the same message (why is it even trying to make it?). I'm using no 
special switches to make, simply make buildkernel KERNCONF=GENERIC with the possible 
exception of make.conf (see below). Some system information follows.


uname -a output: (hostnames have been changed)

FreeBSD listserv.local.com 4.4-RC FreeBSD 4.4-RC #0: Fri Dec 21 18:11:25 EST 2001 
root at listserv.local.com:/usr/src/sys/compile/LISTSERV  i386


make.conf:

NOPROFILE=true #Avoid compiling profiled libraries
CFLAGS= -O -PIPE

My GENERIC conf file:

#
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ./LINT configuration file. If you are
# in doubt as to the purpose or necessity of a line, check first in LINT.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.50 2002/12/30 19:04:31 rwatson Exp $

machine i386
cpu I386_CPU
cpu I486_CPU
cpu I586_CPU
cpu I686_CPU
ident   GENERIC
maxusers0

#makeoptionsDEBUG=-g#Build kernel with gdb(1) debug symbols

options MATH_EMULATE#Support for x87 emulation
options INET#InterNETworking
options INET6   #IPv6 communications protocols
options FFS #Berkeley Fast Filesystem
options FFS_ROOT#FFS usable as root device [keep this!]
options SOFTUPDATES #Enable FFS soft updates support
options UFS_DIRHASH #Improve performance on big directories
options MFS #Memory Filesystem
options MD_ROOT #MD is a potential root device
options NFS #Network Filesystem
options NFS_ROOT#NFS usable as root device, NFS required
options MSDOSFS #MSDOS Filesystem
options CD9660  #ISO 9660 Filesystem
options CD9660_ROOT #CD-ROM usable as root, CD9660 required
options PROCFS  #Process filesystem
options COMPAT_43   #Compatible with BSD 4.3 [KEEP THIS!]
options SCSI_DELAY=15000#Delay (in ms) before probing SCSI
options UCONSOLE#Allow users to grab the console
options USERCONFIG  #boot -c editor
options VISUAL_USERCONFIG   #visual boot -c editor
options KTRACE  #ktrace(1) support
options SYSVSHM #SYSV-style shared memory
options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options P1003_1B#Posix P1003_1B real-time extensions
options _KPOSIX_PRIORITY_SCHEDULING
options ICMP_BANDLIM#Rate limit bad replies

Re: make buildkernel compile problems, stop in umass.c

2003-02-03 Thread Daniel Bye
Please try to wrap your lines at around 72 - 78 characters.  Many of us on
the list use text based mail clients that don't auto-wrap for us ;-)


On Mon, Feb 03, 2003 at 09:59:34AM -0500, [EMAIL PROTECTED] wrote:
 Hello,
 
   I've got a 4.4-RC server that I'm attempting to upgrade all the source on. I'm 
following the directions found at: 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html  to the 
letter to do this. My make buildworld went just fine, although I can't seem to get 
past this make buildkernel compile problem. I CVSup'd on February 1st 2003 at around 
6:00pm. It keeps failing on umass.c, the below is the offending output of the build:
 
[---snip---] 

Hmm, I have a good build from source obtained on the same day.  At about the
same time, too, I believe.  Try repeating the CVSup, and see what happens.

 
 I don't need this, as to my knowledge it's only a USB Mass Storage driver and it 
isn't a dependency of anything else (I'm assuming). I've commented out all the USB 
drivers in both my custom and GENERIC kernel config files, and tried building with 
both but it fails with exactly the same message (why is it even trying to make it?). 
I'm using no special switches to make, simply make buildkernel KERNCONF=GENERIC with 
the possible exception of make.conf (see below). Some system information follows.



Correct, it is the USB mass storage driver.  If it were required as a depend-
ency, I think you would get a very different error message (still with the
fatal results, mind you ;-)

It is building it as a kernel module.  AFAIK, all modules are built, unless
you specify a list of modules you want to build, in which case ONLY those
defined are built.  The option in /etc/make.conf to control this behaviour
is MODULES_OVERRIDE.  This is convenient if you know what modules you want.
I have never yet tried this feature, so see man make.conf for more info.

[---snip---]

Your config seems fine from a cursory glance.

Dan

-- 
Daniel Bye

PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3D73 AF47 D448 C5CA 88B4 0DCF 849C 1C33 3C48 2CDC
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \

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



Re: make buildkernel compile problems, stop in umass.c

2003-02-03 Thread Kris Kennaway
On Mon, Feb 03, 2003 at 09:59:34AM -0500, [EMAIL PROTECTED] wrote:
 Hello,
 
 I've got a 4.4-RC server that I'm attempting to upgrade all the
 source on. I'm following the directions found at:
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
 to the letter to do this. My make buildworld went just fine,
 although I can't seem to get past this make buildkernel compile
 problem. I CVSup'd on February 1st 2003 at around 6:00pm. It keeps
 failing on umass.c, the below is the offending output of the build:

cvsup again and retry.  Also please wrap your lines in future.

Kris



msg17776/pgp0.pgp
Description: PGP signature


ucspi-unix compile problems

2003-01-29 Thread M. Brownsworth
I'm having a problem compiling ucspi-unix-0.36 on the new mail host 
I'm configuring to run qmail.  Although its sister program, 
ucspi-tcp-0.88, compiled just fine, ucspi-unix's compile bombs due to 
a missing library:

su-2.05b# make
( echo '#!/bin/sh'; echo 'main=$1; shift'; echo exec `head -1 
conf-ld` '-o $main $main.o ${1+$@}' -lsysdeps; ) load
chmod 755 load
( echo '#!/bin/sh';  echo 'source=$1; shift';  echo 'base=`echo 
$source | sed -e s:.c$::`';  echo exec `head -1 conf-cc` '-I. 
-o ${base}.o -c $source ${1+$@}';  ) compile
chmod 755 compile
./compile unixclient.c
./compile env.c
env.c:4: sysdeps.h: No such file or directory
*** Error code 1

Stop in /usr/local/src/ucspi-unix-0.36.

So it can't find sysdeps.h.  A locate can't seem to come up with one, 
either.  A Google search using ucspi-unix, sysdeps, and freebsd 
turns up empty.  What the heck is the sysdeps library and why don't I 
have it?  (Or why does ucspi-unix need it?)

According to my understanding, vmailmgr, the password authentication 
module I plan to use with qmail and courier-imap, needs ucspi-unix. 
Specifically, it needs a program named unixserver (compiled with 
ucspi-unix), which is used to start vmailmgrd:

/usr/bin/unixserver /tmp/.vmailmgrd /usr/local/sbin/vmailmgrd \
21 | /var/qmail/bin/splogger 

I'm not sure if something else, perhaps ucspi-tcp, can substitute. 
In fact, given the huge thrash involved in installing qmail and its 
myriad of support programs, I'm not sure of much anything at this 
point.

If you have an answer to this problem, please cc me when you post, as 
I'm not a member of the list.

Here are my system specs:

su-2.05b# uname -a
FreeBSD apache.willamette.net 4.7-RELEASE FreeBSD 4.7-RELEASE #1: Thu 
Jan  9 10:02:57 PST 2003 
[EMAIL PROTECTED]:/usr/src/sys/compile/APACHE  i386

.\\ichelle

Michelle Brownsworth
System Administrator
Willamette.Net
http://www.willamette.net
Phone (541) 465-3282
Fax   (541) 465-1194

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


Re: ucspi-unix compile problems

2003-01-29 Thread Jon Reynolds
On Wed, 2003-01-29 at 11:17, M. Brownsworth wrote:
 I'm having a problem compiling ucspi-unix-0.36 on the new mail host 
 I'm configuring to run qmail.  Although its sister program, 
 ucspi-tcp-0.88, compiled just fine, ucspi-unix's compile bombs due to 
 a missing library:
 
 su-2.05b# make
 ( echo '#!/bin/sh'; echo 'main=$1; shift'; echo exec `head -1 
 conf-ld` '-o $main $main.o ${1+$@}' -lsysdeps; ) load
 chmod 755 load
 ( echo '#!/bin/sh';  echo 'source=$1; shift';  echo 'base=`echo 
 $source | sed -e s:.c$::`';  echo exec `head -1 conf-cc` '-I. 
 -o ${base}.o -c $source ${1+$@}';  ) compile
 chmod 755 compile
 ./compile unixclient.c
 ./compile env.c
 env.c:4: sysdeps.h: No such file or directory
 *** Error code 1
 
 Stop in /usr/local/src/ucspi-unix-0.36.
 
 So it can't find sysdeps.h.  A locate can't seem to come up with one, 
 either.  A Google search using ucspi-unix, sysdeps, and freebsd 
 turns up empty.  What the heck is the sysdeps library and why don't I 
 have it?  (Or why does ucspi-unix need it?)
 
 According to my understanding, vmailmgr, the password authentication 
 module I plan to use with qmail and courier-imap, needs ucspi-unix. 
 Specifically, it needs a program named unixserver (compiled with 
 ucspi-unix), which is used to start vmailmgrd:
 
 /usr/bin/unixserver /tmp/.vmailmgrd /usr/local/sbin/vmailmgrd \
 21 | /var/qmail/bin/splogger 
 
 I'm not sure if something else, perhaps ucspi-tcp, can substitute. 
 In fact, given the huge thrash involved in installing qmail and its 
 myriad of support programs, I'm not sure of much anything at this 
 point.
 
 If you have an answer to this problem, please cc me when you post, as 
 I'm not a member of the list.
 
 Here are my system specs:
 
 su-2.05b# uname -a
 FreeBSD apache.willamette.net 4.7-RELEASE FreeBSD 4.7-RELEASE #1: Thu 
 Jan  9 10:02:57 PST 2003 
 [EMAIL PROTECTED]:/usr/src/sys/compile/APACHE  i386
 
 .\\ichelle
 
 Michelle Brownsworth
 System Administrator
 Willamette.Net
 http://www.willamette.net
 Phone (541) 465-3282
 Fax   (541) 465-1194
 
I had a similiar problem with this exact app while trying to install
qmail. I eventually just went back to v.0.34 and it worked perfectly.

Jon


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



Re: ucspi-unix compile problems

2003-01-29 Thread M. Brownsworth
There's nothing like posting to mailing lists to get the answers to 
your problems.  Not that the answers always come from the list 
members.  Nine times out of ten, after I post to a list I keep 
digging in archives and documentation and ferret out the answer on my 
own.  Oddly, it doesn't seem to work if I don't post to the list 
first.  That was the case this time as well.  I posted my problem 
compiling (running FreeBSD 4.7) ucspi-unix, required by vmailmgr, to 
freebsd-answers, then joined the vmailmgr list and posted here. 
Almost immediately, I came across a post in the ucspi-unix list 
archive that said ucspi-unix, qmail-autoresponder, and a few other 
programs by Bruce Guenter required his proprietary bglibs in order to 
compile, so I located and downloaded bglibs-1.005.  Unfortunately, 
bglibs wouldn't compile either.  So I joined the bgware list and 
posted the problem.  Shortly afterward, I discovered some esoteric 
posts in the archives that discussed the need for some defines in one 
of bglibs' files, although it wasn't absolutely clear specifically 
what should be added and to which file.  But with nothing to lose, I 
added the following to only unix/sig_all.c:

  #define SIGMAX _SIG_MAXSIG
  #define _NSIG 32

Voila!  It compiled like a champ.  I installed and then cd'ed to 
ucspi-unix.  Boom!  Same deal, smooth as glass.  Ditto with 
qmail-autoresponder.  Time to start vmailmgr to see if my efforts 
were not in vain.  I wanted it to run under the supervise facility, 
so it would automatically be restarted if it quit.  There was no 
documentation on how to set up supervise specifically to run 
vmailmgr, so I cloned one of the qmail supervise setups and crossed 
my fingers.  And what do you know?  It started perfectly and came up:

  38248 con  S+ 0:01.04 supervise vmailmgrd
  38249 con  I+ 0:00.00 supervise log

Many thanks to the list.

Best,
.\\ichelle

Michelle Brownsworth
System Administrator
PrimeLogic Corporation
http://www.primelogic.com

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


Fwd: gkrellm2 port compile problems

2002-12-17 Thread Sean O'Neill

I asked this of the freebsd-ports group and got no answer.  Thought maybe 
someone here might know the answer.

Date: Sun, 15 Dec 2002 19:32:42 -0600
To: [EMAIL PROTECTED]
From: Sean O'Neill [EMAIL PROTECTED]
Subject: gkrellm2 port compile problems

Trying to compile gkrellm-2.1.0 in FreeBSD 4.7-RELEASE-p1 and I'm getting 
the following.  Anyone know why I'm getting the undefined references ?

# make
===  Building for gkrellm-2.1.0
(cd po  gmake all)
gmake[1]: Entering directory 
`/usr/ports/sysutils/gkrellm2/work/gkrellm-2.1.0/po'
gmake[1]: Nothing to be done for `all'.
gmake[1]: Leaving directory 
`/usr/ports/sysutils/gkrellm2/work/gkrellm-2.1.0/po'
(cd src  gmake \
EXTRAOBJS= SYS_LIBS=-lkvm -ldevstat -lmd gkrellm )
gmake[1]: Entering directory 
`/usr/ports/sysutils/gkrellm2/work/gkrellm-2.1.0/src'
cc -Wall -I.. `pkg-config --cflags gtk+-2.0 gthread-2.0`   -DENABLE_NLS 
-DLOCALEDIR=\/usr/X11R6/share/locale\ main.o alerts.o apm.o base64.o 
clock.o cpu.o disk.o fs.o hostname.o inet.o mail.o mem.o net.o proc.o 
sensors.o uptime.o chart.o panel.o config.o gui.o krell.o plugins.o 
pixops.o client.o utils.o winops-x11.o sysdeps-unix.o deprecated.o  -o 
gkrellm `pkg-config --libs gtk+-2.0 gthread-2.0`  -L/usr/X11R6/lib -lSM 
-lICE -lkvm -ldevstat -lmd -Wl,-E
/usr/lib/libc.so.4: WARNING!  setkey(3) not present in the system!
/usr/lib/libc.so.4: warning: this program uses gets(), which is unsafe.
/usr/lib/libc.so.4: warning: mktemp() possibly used unsafely; consider 
using mkstemp()
/usr/lib/libc.so.4: WARNING!  des_setkey(3) not present in the system!
/usr/lib/libc.so.4: WARNING!  encrypt(3) not present in the system!
/usr/lib/libc.so.4: warning: tmpnam() possibly used unsafely; consider 
using mkstemp()
/usr/lib/libc.so.4: warning: this program uses f_prealloc(), which is not 
recommended.
/usr/lib/libc.so.4: WARNING!  des_cipher(3) not present in the system!
/usr/lib/libc.so.4: warning: tempnam() possibly used unsafely; consider 
using mkstemp()
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to `FT_Seek_Stream'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to `FT_Get_Short'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to `FT_Forget_Frame'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to `FT_Access_Frame'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to `FT_Get_Long'
gmake[1]: *** [gkrellm] Error 1
gmake[1]: Leaving directory 
`/usr/ports/sysutils/gkrellm2/work/gkrellm-2.1.0/src'
gmake: *** [freebsd] Error 2
*** Error code 2

--

. ..- -. .. -..- .-. ..- .-.. . ... 
.-- .. -. -... .-.. --- .-- ... -.. .-. --- --- .-.. ...

Sean O'Neill

--

. ..- -. .. -..- .-. ..- .-.. . ... 
.-- .. -. -... .-.. --- .-- ... -.. .-. --- --- .-.. ...

Sean O'Neill 


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


Re: Fwd: gkrellm2 port compile problems

2002-12-17 Thread paul beard
Sean O'Neill wrote:


I asked this of the freebsd-ports group and got no answer.  Thought 
maybe someone here might know the answer.


/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to 
`FT_Seek_Stream'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to `FT_Get_Short'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to 
`FT_Forget_Frame'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to 
`FT_Access_Frame'
/usr/X11R6/lib/libpangoxft-1.0.so: undefined reference to `FT_Get_Long'
gmake[1]: *** [gkrellm] Error 1

the problem appears to be with /usr/X11R6/lib/libpangoxft-1.0.so:
might be worth making sure it (pango-1.0.5) is up to date (make 
deinstall  make reinstall).

[/home/paul/src]:: pkg_info -W /usr/X11R6/lib/libpangoxft-1.0.so
/usr/X11R6/lib/libpangoxft-1.0.so was installed by package pango-1.0.5

--
Paul Beard: seeking UNIX/internet engineering work
in Seattle area. Details available below:
	http://paulbeard.no-ip.org/paulbeard.html

A raccoon tangled with a 23,000 volt line today.  The results blacked
out 1400 homes and, of course, one raccoon.
		-- Steel City News


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