(no subject)

2005-10-27 Thread George Katsanos
Hello , Since the actual 6.0 Release is taking too long , would you suggest me installing 6.0 RC-1 and then then 6.0 is out , can I just apply some patches , or I should Re-makeworld everything?... And another question , I'm on a PIII 550 with 256MB ram . I have 5.3 and some broken libs

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Rob
--- Igor Robul [EMAIL PROTECTED] wrote: %mkdir %cd / %cat ~/.grace/gracerc.user USE pow TYPE f_of_dd FROM /usr/lib/libm.so %ls %xmgrace % OK, great. Meanwhile, I came closer to the real problem. You don't need to create the link in /usr/X11R6/lib. The problem is dlerror().

Re: portupgrade stale dependencies

2005-10-27 Thread Andrew P.
On 10/27/05, John DeStefano [EMAIL PROTECTED] wrote: ...snip... After clearing out the ports, updating ports (with portsnap) and source, and rebuilding the system and kernel... it seemed the ultimate problem was actually a dependency of the package to apache1.3. After I ran 'pkgdb -F' and

finding the correct man page ???

2005-10-27 Thread ke.han
Hello list, I am working on configuring a new system and have run across maillist comments such as: The comment in GENERIC is not accurate, the bge driver supports 5721 based cards for a couple of month now (the manpage in RELENG_5 is correct). The problem is, which man page? There are so

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Rob
--- Igor Robul [EMAIL PROTECTED] wrote: Rob wrote: When I patch grace with this dummy dlerror(), prior to the dl-function calls, all works like a charm (and you don't need the link in /usr/X11R6/lib anymore). As I said before, I now have to find out why grace activates the dlerror()

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread Andrew P.
On 10/27/05, Joshua Tinnin [EMAIL PROTECTED] wrote: On Wed 26 Oct 05 09:18, Andrew P. [EMAIL PROTECTED] wrote: On 10/26/05, Robert Huff [EMAIL PROTECTED] wrote: Andrew P. writes: file /usr/bin/man on my machine outputs: /usr/bin/man: ELF 32-bit LSB executable,

Re: finding the correct man page ???

2005-10-27 Thread Andrew P.
On 10/27/05, ke.han [EMAIL PROTECTED] wrote: Hello list, I am working on configuring a new system and have run across maillist comments such as: The comment in GENERIC is not accurate, the bge driver supports 5721 based cards for a couple of month now (the manpage in RELENG_5 is correct).

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Rob wrote: --- XtAppContext app_con; Display *disp = NULL; char *display_name = NULL; XtSetLanguageProc(NULL, NULL, NULL); XtToolkitInitialize(); app_con = XtCreateApplicationContext(); disp = XOpenDisplay(display_name);

Re: Upgrading from 5.3 to 6.0 (was: no subject)

2005-10-27 Thread Andrew P.
On 10/27/05, George Katsanos [EMAIL PROTECTED] wrote: Hello , Since the actual 6.0 Release is taking too long , would you suggest me installing 6.0 RC-1 and then then 6.0 is out , can I just apply some patches , or I should Re-makeworld everything?... And another question , I'm on a PIII

Re: lost in nowhere land on 5.2.1

2005-10-27 Thread Andrew P.
On 10/27/05, Brian Howick [EMAIL PROTECTED] wrote: I set up a copy of 5.2.1 RELEASE a few years back and I am trying to upgrade it. The problem is I set it up over the net and not from a CD.. so when I try to upgrade I am told that whatever FTP server I connect to does not have the files...

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Igor Robul wrote: dlopen() _does not_ reset dlerror() state on sucess, it just returns non NULL. So you must not check dlerror() for error condition, you need check return result of dlopen(), and if it is NULL, then you need use dlerror(). So, code in grace: dlopen(library name, MODE);

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Sorry, I have reread manual page for dlerror() and found that it need clear error state after call, but dlerror() in src/libc/gen/dlfcn.c does not do this: #pragma weak dlerror const char * dlerror(void) { return sorry; } So error is in FreeBSD libc, if I understand this correctly. I'll do

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Igor Robul
Igor Robul wrote: Sorry, I have reread manual page for dlerror() and found that it need clear error state after call, but dlerror() in src/libc/gen/dlfcn.c does not do this: #pragma weak dlerror const char * dlerror(void) { return sorry; } So error is in FreeBSD libc, if I understand

Window Scaling

2005-10-27 Thread ptitoliv
Hello everybody, I have got 2 dedicated servers located on the same network. 1 is running on FreeBSD and the other under Linux Debian. The problem is that on the BSD box, it is impossible to have a transfer rate higer than 200 kB/s with one connection. If I create simultaneous connections, I can

kqueue and polling ... are they related?

2005-10-27 Thread ke.han
Dear list, I will be using kqueue on freeBSD 6.0-rc1 and need to understand the relationship between kqueue and polling since polling support requires explicite enabling and choosing the correct ethernet drivers, etc... First, is there a relationship between kqueue and polling? The kqueue man

Re: Maintaining my music collection (off topic)

2005-10-27 Thread Parv
in message [EMAIL PROTECTED], wrote Will Maier thusly... On Wed, Oct 26, 2005 at 06:39:48AM -0400, Parv wrote: Looks like this script is not going to work in FreeBSD /bin/sh. Install one of shells/bash* (guessing) ports and run this script under that shell (unless somebody does the

Re: kqueue and polling ... are they related?

2005-10-27 Thread Erik Trulsson
On Thu, Oct 27, 2005 at 05:09:58PM +0800, ke.han wrote: Dear list, I will be using kqueue on freeBSD 6.0-rc1 and need to understand the relationship between kqueue and polling since polling support requires explicite enabling and choosing the correct ethernet drivers, etc... First, is there

Window Scaling

2005-10-27 Thread ptitoliv
Hello everybody, I have got 2 dedicated servers located on the same network. 1 is running on FreeBSD and the other under Linux Debian. The problem is that on the BSD box, it is impossible to have a transfer rate higer than 200 kB/s with one connection. If I create simultaneous connections, I can

Re: math/grace port: libXcursor.so.1.0 not found ?? [FBSD/Xorg error?]

2005-10-27 Thread Rob
--- Igor Robul [EMAIL PROTECTED] wrote: Rob wrote: --- XtAppContext app_con; Display *disp = NULL; char *display_name = NULL; XtSetLanguageProc(NULL, NULL, NULL); XtToolkitInitialize(); app_con = XtCreateApplicationContext();

Re: kqueue and polling ... are they related?

2005-10-27 Thread ke.han
None of these have any relation to polling of the network interfaces as described in the polling(4) manpage. The only connection between poll(2) and polling(4) is that they have similar names. So, to answer your question: No, you do not need to have polling enabled in order to use kqueue.

FreeBSD 6.0-RC1/i386: build port java/eclipse fails: Error occurred during initialization of VM

2005-10-27 Thread O. Hartmann
Hello. I got this error during compiling 'eclipse' from ports: === Building for eclipse-3.1.1 Error occurred during initialization of VM Could not reserve enough space for object heap Assuming RHEL CLASSPATH compatible. Error occurred during initialization of VM Could not reserve enough space

Unable to upgrade kdenetwork using portupgrade

2005-10-27 Thread Teo De Las Heras
I'm running FreeBSD 5.4 on my dektop with X.org http://X.org and KDE 3.4. I'm synchronizing my ports tree using cvsup. When I run the following command portupgrade -rR kdenetwork It fails because it is unable to upgrade the kdelibs. The error messages says to run -F to force. What is the

Product Ordering - Payment Methods and Overseas Postage

2005-10-27 Thread bjrobilliard
Dear Sir/Madam, I was enquiring as to whether or not you sell official box sets. Is so, what are the contents of these sets? Are they manufactured media or are they just burnt CDs? Who sells these? Under which licence is FreeBSD released? Where can a copy of this be located on the web? When

Re: Product Ordering - Payment Methods and Overseas Postage

2005-10-27 Thread eoghan
[EMAIL PROTECTED] wrote: Hi Dear Sir/Madam, I was enquiring as to whether or not you sell official box sets. Is so, what are the contents of these sets? Are they manufactured media or are they just burnt CDs? Who sells these? http://www.freebsdmall.com/cgi-bin/fm Under which licence

Re: Console size

2005-10-27 Thread Lowell Gilbert
Jared Feider [EMAIL PROTECTED] writes: I am new to bsd. When I boot my dell Latitude C610 the console much smaller than the full screen would allow. When I start X it does go full screen. I know in Linux I could run lilo to change the console settings. What would be the parallel in

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread Micah
Andrew P. wrote: On 10/27/05, Joshua Tinnin [EMAIL PROTECTED] wrote: On Wed 26 Oct 05 09:18, Andrew P. [EMAIL PROTECTED] wrote: On 10/26/05, Robert Huff [EMAIL PROTECTED] wrote: Andrew P. writes: file /usr/bin/man on my machine outputs: /usr/bin/man: ELF 32-bit LSB executable, Intel

packet forwarding

2005-10-27 Thread Yance Kowara
Hi all, What's the difference between gateway_enable=YES in /etc/rc.conf and net.inet.ip.forwarding=1 in /etc/sysctl.conf Regards, Yance __ Yahoo! FareChase: Search multiple travel sites in one click. http://farechase.yahoo.com

Re: packet forwarding

2005-10-27 Thread Igor Robul
Yance Kowara wrote: Hi all, What's the difference between gateway_enable=YES in /etc/rc.conf and net.inet.ip.forwarding=1 in /etc/sysctl.conf Regards, There are no differences, you can check this by greping gateway_enable in /etc/rc.d/*.

Re: packet forwarding

2005-10-27 Thread Dan Nelson
In the last episode (Oct 27), Yance Kowara said: What's the difference between gateway_enable=YES in /etc/rc.conf and net.inet.ip.forwarding=1 in /etc/sysctl.conf From /etc/rc.d/routing: case ${gateway_enable} in [Yy][Ee][Ss]) echo -n ' IP gateway=YES'

Re: /dev/kqemu

2005-10-27 Thread dick hoogendijk
On Mon, 24 Oct 2005 21:22:00 -0500 Eric Schuele [EMAIL PROTECTED] wrote: dick hoogendijk wrote: I have found out that only the FIRST user that starts QEMU on ht computer gets support for kqemu accellaration. Even if he closes hiw qemu session and logs off, another NEW user can start QEMU

Re: Qwest DLS MSN Premium Linksys Router FreeBSD.. Oh my

2005-10-27 Thread Kris Anderson
--- Gary W. Swearingen [EMAIL PROTECTED] wrote: Kris Anderson [EMAIL PROTECTED] writes: I'm getting off cable (Comcast and 6 megabits) and Good move. Their fine print - Don't forget the finer print. Invisible print might be a better term; good luck even finding it before

packages for older 4.x systems

2005-10-27 Thread Alex Kapranoff
Hello! I'm trying to install cvsup on an older system: 4.11-RELEASE-p3. `pkg_add -r cvsup-without-gui' fails so I downloaded this file manually: ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4-stable/net/cvsup-without-gui-16.1h_2.tgz pkg_add fails too: pkg_add: read_plist: bad command

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread Will Maier
On Thu, Oct 27, 2005 at 06:51:21AM -0700, Micah wrote: I have a 5.4 system, /do/ go into single user when upgrading, and file does /not/ report FreeBSD version. I get the same output you do. It would be nice to know why this works on some systems and not on others. Consider diff'ing the

Hardware Donation?

2005-10-27 Thread Darren Sessions
I am wondering if the FreeBSD project is in need of any server hardware. If so, I would like to make a donation. Thanks, - Darren ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

Re: Hardware Donation?

2005-10-27 Thread Mark Kane
Darren Sessions wrote: I am wondering if the FreeBSD project is in need of any server hardware. If so, I would like to make a donation. Thanks, - Darren Hi Darren. Here is a list of some hardware that the FreeBSD team is looking for: http://www.freebsd.org/donations/wantlist.html I

Re: Hardware Donation?

2005-10-27 Thread Andrew P.
On 10/27/05, Darren Sessions [EMAIL PROTECTED] wrote: I am wondering if the FreeBSD project is in need of any server hardware. If so, I would like to make a donation. Thanks, - Darren ___ freebsd-questions@freebsd.org mailing list

RE: Qwest DLS MSN Premium Linksys Router FreeBSD.. Oh my

2005-10-27 Thread Ted Mittelstaedt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Kris Anderson Sent: Monday, October 24, 2005 8:48 PM To: [EMAIL PROTECTED] Subject: Qwest DLS MSN Premium Linksys Router FreeBSD.. Oh my Hey folks, I'm getting off cable (Comcast and 6 megabits) and

Scan for viruses!

2005-10-27 Thread Carstea Catalin
Hi there! I want to scan all traffic going through wan - interface for viruses? Any recommendation? P.S: my freebsd box is router of my network! -- Any help would be greatly appreciated. regards, Carstea Catalin ___ freebsd-questions@freebsd.org mailing

Re: Scan for viruses!

2005-10-27 Thread Rob Pitt
amavis On 27 Oct 2005, at 18:40, Carstea Catalin wrote: Hi there! I want to scan all traffic going through wan - interface for viruses? Any recommendation? P.S: my freebsd box is router of my network! -- Any help would be greatly appreciated. regards, Carstea Catalin

Re: Scan for viruses!

2005-10-27 Thread Kilaru Sambaiah
Carstea Catalin wrote: Hi there! I want to scan all traffic going through wan - interface for viruses? Any recommendation? P.S: my freebsd box is router of my network! -- Any help would be greatly appreciated. regards, Carstea Catalin ___ All

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread Micah
Will Maier wrote: On Thu, Oct 27, 2005 at 06:51:21AM -0700, Micah wrote: I have a 5.4 system, /do/ go into single user when upgrading, and file does /not/ report FreeBSD version. I get the same output you do. It would be nice to know why this works on some systems and not on others.

Re: math/grace port: libXcursor.so.1.0 not found ?? [FBSD/Xorg error?]

2005-10-27 Thread Kris Kennaway
On Thu, Oct 27, 2005 at 04:00:55AM -0700, Rob wrote: Here is the two points response from the grace mailinglist: 1. Because XOpenDisplay() causes dlerror() to be set: One of the FreeBSD X libraries is broken, calling an inexisting libXcursor.so.1.0. 2. The FreeBSD dynamic

Re: Unable to upgrade kdenetwork using portupgrade

2005-10-27 Thread Kris Kennaway
On Thu, Oct 27, 2005 at 09:06:36AM -0400, Teo De Las Heras wrote: I'm running FreeBSD 5.4 on my dektop with X.org http://X.org and KDE 3.4. I'm synchronizing my ports tree using cvsup. When I run the following command portupgrade -rR kdenetwork It fails because it is unable to upgrade the

Re: packages for older 4.x systems

2005-10-27 Thread Kris Kennaway
On Thu, Oct 27, 2005 at 07:36:26PM +0400, Alex Kapranoff wrote: Hello! I'm trying to install cvsup on an older system: 4.11-RELEASE-p3. `pkg_add -r cvsup-without-gui' fails so I downloaded this file manually:

Re: Window scaling

2005-10-27 Thread Daniel Gonzalez
Do you think that it is possible to modify parameters on the BSD box in order to reach the same transfer rates than the Debian box with only one connection ? I would think there may be options you can pass to the ethernet driver via ifconfig or maybe adjusting net related sysctls. You could

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread Micah
Will Maier wrote: On Thu, Oct 27, 2005 at 06:51:21AM -0700, Micah wrote: I have a 5.4 system, /do/ go into single user when upgrading, and file does /not/ report FreeBSD version. I get the same output you do. It would be nice to know why this works on some systems and not on others.

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread Will Maier
On Thu, Oct 27, 2005 at 11:36:18AM -0700, Micah wrote: In other words, it's not file that broken, but /every/ executable on the broken machine is broken. Now why would that be? A compiler flag or something? Must be -- some flag produces unique bits in the executables. I'm a little surprised

Re: /dev/kqemu

2005-10-27 Thread Eric Schuele
dick hoogendijk wrote: On Mon, 24 Oct 2005 21:22:00 -0500 Eric Schuele [EMAIL PROTECTED] wrote: dick hoogendijk wrote: I have found out that only the FIRST user that starts QEMU on ht computer gets support for kqemu accellaration. Even if he closes hiw qemu session and logs off, another

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread David Kirchner
On 10/27/05, Will Maier [EMAIL PROTECTED] wrote: Must be -- some flag produces unique bits in the executables. I'm a little surprised there isn't (AFAICT) anything descriptive in file(1)'s manpage or /u/s/mi/magic that would explain the discrepancy. Didn't see anything in quick looks through

increasing mount size

2005-10-27 Thread eoghan
Hello My /var mount has no more space left. I was wondering if there is some way to increase the size of it without loosing anything? Thanks Eoghan ___ freebsd-questions@freebsd.org mailing list

Re: increasing mount size

2005-10-27 Thread Roland Smith
On Thu, Oct 27, 2005 at 08:28:12PM +0100, eoghan wrote: Hello My /var mount has no more space left. I was wondering if there is some way to increase the size of it without loosing anything? That depends. If you have enough free space left on your harddrive, you could make a new slice, copy

Apache::DBI Problems

2005-10-27 Thread Cody Holland
I'm having some major issues with perl site I'm trying to get working. I'm running FreeBSD 5.4 stable using Apache 2.0.55 and perl 5.8.7. The error I'm getting is: Can't locate object method connect_on_init via package Apache::DBI (perhaps you forgot to load Apache::DBI?) I do have LoadModule

Hot-Swap HDD hardware recommendations?

2005-10-27 Thread Eric F Crist
Hello list, I need a cost-effective solution for hot-swap hard drives. I'm currently using a removable drive cage available at any CompUSA, but it's standard IDE/ATA, which is, AFAIK, not hot-swappable. What kind of RAID hardware/software would I need so that I can hot swap hard

Re: increasing mount size

2005-10-27 Thread Andrew P.
On 10/27/05, eoghan [EMAIL PROTECTED] wrote: Hello My /var mount has no more space left. I was wondering if there is some way to increase the size of it without loosing anything? Thanks Eoghan ___ freebsd-questions@freebsd.org mailing list

Re: increasing mount size

2005-10-27 Thread eoghan
On 27 Oct 2005, at 22:32, Andrew P. wrote: On 10/27/05, eoghan [EMAIL PROTECTED] wrote: Hello My /var mount has no more space left. I was wondering if there is some way to increase the size of it without loosing anything? Thanks Eoghan ___

linux: command not found

2005-10-27 Thread Mark Bucciarelli
I'm trying to load the linux kernel module to install java. When I type linux, I get a command not found error. Do I need to install a port or is this an issue with my kernel configuration? m ___ freebsd-questions@freebsd.org mailing list

Re: increasing mount size

2005-10-27 Thread eoghan
On 27 Oct 2005, at 23:03, eoghan wrote: FreeBSD default layout is very smart. What takes up so much in your /var? # du -s /var/* That says: du: No match. im not sure :) but i was trying to add openoffice... i know its big. the size of my var is only 248MB, which is the same size as

Re: increasing mount size

2005-10-27 Thread David Kirchner
On 10/27/05, eoghan [EMAIL PROTECTED] wrote: oops! typo... sorry... output: nathaniel# du -s /var/* 2 /var/account 6 /var/at 8 /var/backups 4 /var/crash 4 /var/cron 71010 /var/db This is probably because the port uses /var/db/mysql as the database directory

Re: linux: command not found

2005-10-27 Thread David Kirchner
On 10/27/05, Mark Bucciarelli [EMAIL PROTECTED] wrote: I'm trying to load the linux kernel module to install java. When I type linux, I get a command not found error. Do I need to install a port or is this an issue with my kernel configuration? The linux script is no longer in FreeBSD --

Re: increasing mount size

2005-10-27 Thread eoghan
On 27 Oct 2005, at 23:22, David Kirchner wrote: On 10/27/05, eoghan [EMAIL PROTECTED] wrote: oops! typo... sorry... output: nathaniel# du -s /var/* 2 /var/account 6 /var/at 8 /var/backups 4 /var/crash 4 /var/cron 71010 /var/db This is probably because the

libtool: link: `/hsphere/shared/lib/libiconv.la' is not a valid libtool archive

2005-10-27 Thread Pang
Hello Everyone, I have tried to compile PHP4.4.0 and got the following error: grep: /hsphere/shared/lib/libiconv.la: No such file or directory sed: /hsphere/shared/lib/libiconv.la: No such file or directory libtool: link: `/hsphere/shared/lib/libiconv.la' is not a valid libtool archive I

Re: increasing mount size

2005-10-27 Thread Jerry McAllister
Hello My /var mount has no more space left. I was wondering if there is some way to increase the size of it without loosing anything? This is a frequent question on the list. There might even be a FAQ on it. You might check. I know I have written numerous responses to essentially the

Intel Mother card

2005-10-27 Thread Albert Shih
Hi All I've a server under FreeBSD 5.4-stable. On front of this server I've red led. This led is on now, I'm sure this informe my there're a hardware problem. But I don't know what's wrong with this server. I search some software can check for my the hardware. The mother card is a Intel

Re: portupgrade stale dependencies

2005-10-27 Thread John DeStefano
On 10/27/05, Andrew P. [EMAIL PROTECTED] wrote: On 10/27/05, John DeStefano [EMAIL PROTECTED] wrote: After clearing out the ports, updating ports (with portsnap) and source, and rebuilding the system and kernel... it seemed the ultimate problem was actually a dependency of the package to

Re: portupgrade stale dependencies

2005-10-27 Thread Eric F Crist
On Oct 27, 2005, at 8:32 PM, John DeStefano wrote: On 10/27/05, Andrew P. [EMAIL PROTECTED] wrote: On 10/27/05, John DeStefano [EMAIL PROTECTED] wrote: After clearing out the ports, updating ports (with portsnap) and source, and rebuilding the system and kernel... it seemed the ultimate

Re: portupgrade stale dependencies

2005-10-27 Thread Michael C. Shultz
On Thursday 27 October 2005 18:49, Eric F Crist wrote: On Oct 27, 2005, at 8:32 PM, John DeStefano wrote: On 10/27/05, Andrew P. [EMAIL PROTECTED] wrote: On 10/27/05, John DeStefano [EMAIL PROTECTED] wrote: After clearing out the ports, updating ports (with portsnap) and source, and

Re: Which version of FreeBSD a binary was compiled for?

2005-10-27 Thread Micah
David Kirchner wrote: On 10/27/05, Will Maier [EMAIL PROTECTED] wrote: Must be -- some flag produces unique bits in the executables. I'm a little surprised there isn't (AFAICT) anything descriptive in file(1)'s manpage or /u/s/mi/magic that would explain the discrepancy. Didn't see anything in

help needed to fix Filesystem inconsistensy error

2005-10-27 Thread rashmi ns
Hello List, As i were testing our kernel modules systems used to crash and reboot ofently it you used to prompt that filesystem was inconsistent .then we ran fsck_ffs /dev/ad0s1f and the filesystem was marked clean .When we did a similar thing on the other drive which was also inconsistent we

True Type fonts

2005-10-27 Thread Olivier Nicole
Hi, Is there any free source for True Type fonts (the common ones like Times and etc) in order to use them with PDFLib. TIA Olivier ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

Re: Apache::DBI Problems

2005-10-27 Thread Vladimir Tsvetkov
I'm having some major issues with perl site I'm trying to get working. I'm running FreeBSD 5.4 stable using Apache 2.0.55 and perl 5.8.7. The error I'm getting is: Can't locate object method connect_on_init via package Apache::DBI (perhaps you forgot to load Apache::DBI?) I do have

Re: math/grace port: libXcursor.so.1.0 not found ?? [SOLVED]

2005-10-27 Thread Rob
--- Igor Robul [EMAIL PROTECTED] wrote: Rob wrote: --- XtAppContext app_con; Display *disp = NULL; char *display_name = NULL; XtSetLanguageProc(NULL, NULL, NULL); XtToolkitInitialize(); app_con = XtCreateApplicationContext();