RE: compile errors

2001-12-11 Thread Sinisa Milivojevic

Gill, Vern writes:
 Still need help with this one
 
 Anyone, anyone?
 
 trying to compile mysql-3.23.46, getting this error. Can't find any
 reference to it anywhere.
 Please help;
 
 kgcc -O3 -DDBUG_OFF -O9 -rdynamic -o isamchk isamchk.o sort.o libnisam.a
 ../mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lpthread
 -lz -lcrypt -lnsl -lm -lpthread
 ../mysys/libmysys.a(mf_tempfile.o): In function `create_temp_file':
 mf_tempfile.o(.text+0xcd): undefined reference to `mkstemp64'
 collect2: ld returned 1 exit status
 make[2]: *** [isamchk] Error 1
 make[2]: Leaving directory `/src/mysql-3.23.46/isam'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/src/mysql-3.23.46'
 make: *** [all-recursive-am] Error 2
 
 Vern H. Gill
 State Director
 Director of Marketing
 Conejo Valley Jaycees
 http://www.conejovalleyjaycees.org
 

What is compiler version and what OS and version.

Seems like Linux, in which case you have improper installation with
glibc missing the above symbol.


-- 
Regards,
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Mr. Sinisa Milivojevic [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Fulltime Developer
/_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
   ___/   www.mysql.com


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: compile errors

2001-12-11 Thread Gill, Vern

# uname -a
Linux linuxbox 2.4.16 #2 Wed Nov 28 12:24:51 PST 2001 i586 unknown
# rpm -qa | grep -i libc
glibc-2.2.4-20
glibc-devel-2.2.4-20
compat-glibc-6.2-2.1.3.2
glibc-common-2.2.4-20
# /usr/bin/gcc -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.1/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--disable-checking --host=i386-redhat-linux --with-system-zlib
Thread model: posix
gcc version 3.1 20011127 (Red Hat Linux Rawhide 3.1-0.10)

-Original Message-
From: Sinisa Milivojevic [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 11, 2001 3:57 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RE: compile errors


Gill, Vern writes:
 Still need help with this one
 
 Anyone, anyone?
 
 trying to compile mysql-3.23.46, getting this error. Can't find any
 reference to it anywhere.
 Please help;
 
 gcc -O3 -DDBUG_OFF -O9 -rdynamic -o isamchk isamchk.o sort.o libnisam.a
 ../mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lpthread
 -lz -lcrypt -lnsl -lm -lpthread
 ../mysys/libmysys.a(mf_tempfile.o): In function `create_temp_file':
 mf_tempfile.o(.text+0xcd): undefined reference to `mkstemp64'
 collect2: ld returned 1 exit status
 make[2]: *** [isamchk] Error 1
 make[2]: Leaving directory `/src/mysql-3.23.46/isam'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/src/mysql-3.23.46'
 make: *** [all-recursive-am] Error 2
 
 Vern H. Gill
 State Director
 Director of Marketing
 Conejo Valley Jaycees
 http://www.conejovalleyjaycees.org
 

What is compiler version and what OS and version.

Seems like Linux, in which case you have improper installation with
glibc missing the above symbol.


-- 
Regards,
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Mr. Sinisa Milivojevic [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Fulltime Developer
/_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
   ___/   www.mysql.com

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: compile errors

2001-12-11 Thread Sinisa Milivojevic

Gill, Vern writes:
 # uname -a
 Linux linuxbox 2.4.16 #2 Wed Nov 28 12:24:51 PST 2001 i586 unknown
 # rpm -qa | grep -i libc
 glibc-2.2.4-20
 glibc-devel-2.2.4-20
 compat-glibc-6.2-2.1.3.2
 glibc-common-2.2.4-20
 # /usr/bin/gcc -v
 Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.1/specs
 Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
 --infodir=/usr/share/info --enable-shared --enable-threads=posix
 --disable-checking --host=i386-redhat-linux --with-system-zlib
 Thread model: posix
 gcc version 3.1 20011127 (Red Hat Linux Rawhide 3.1-0.10)
 

The above glibc and especially compiler are prectically experimental,
so you are very much on your own.

-- 
Regards,
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Mr. Sinisa Milivojevic [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Fulltime Developer
/_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
   ___/   www.mysql.com


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: compile errors

2001-12-10 Thread Gill, Vern

Still need help with this one

Anyone, anyone?

-Original Message-
From: Gill, Vern [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 08, 2001 6:32 PM
To: '[EMAIL PROTECTED]'
Subject: RE: compile errors


Still not compiling. New issue now...

# rpm -q gcc
gcc-3.1-0.10

./configure --cache-file=config.cache --with-mysqld-user=mysql
--localstatedir=/usr/local/mysql/var --prefix=/usr/local/mysql
--with-unix-socket-path=/usr/local/mysql/lock/mysql.sock
--without-berkeley-db --without-bench --enable-shared --without-mit-threads
--enable-thread-safe-client  make

Making all in libmysql_r
make[2]: Entering directory `/src/mysql-3.23.46/libmysql_r'
/bin/sh ../libtool --mode=compile kgcc
-DDEFAULT_CHARSET_HOME=\/usr/local/mysql\
-DDATADIR=\/usr/local/mysql/var\
-DSHAREDIR=\/usr/local/mysql/share/mysql\ -DDONT_USE_RAID
-I./../include -I../include-I./.. -I.. -I..-O3 -DDBUG_OFF
-O9  -c libmysql.c
mkdir .libs
kgcc -DDEFAULT_CHARSET_HOME=\/usr/local/mysql\
-DDATADIR=\/usr/local/mysql/var\
-DSHAREDIR=\/usr/local/mysql/share/mysql\ -DDONT_USE_RAID -I./../include
-I../include -I./.. -I.. -I.. -O3 -DDBUG_OFF -O9 -c libmysql.c  -fPIC -DPIC
-o .libs/libmysql.lo
libmysql.c: In function `mysql_real_connect':
libmysql.c:1300: warning: passing arg 5 of `gethostbyname_r' from
incompatible pointer type
libmysql.c:1300: too few arguments to function `gethostbyname_r'
libmysql.c:1300: warning: assignment makes pointer from integer without a
cast
make[2]: *** [libmysql.lo] Error 1
make[2]: Leaving directory `/src/mysql-3.23.46/libmysql_r'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/src/mysql-3.23.46'
make: *** [all-recursive-am] Error 2


Any help available?

-Original Message-
From: Gill, Vern [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 05, 2001 8:05 PM
To: '[EMAIL PROTECTED]'
Subject: FW: compile errors


HELP!!

Can someone PLEASE help me with this issue?

-Original Message-
From: Gill, Vern [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 05, 2001 12:47 AM
To: '[EMAIL PROTECTED]'
Subject: FW: compile errors


Anyone able to help with this? Or am I just stuck...?

-Original Message-
From: Gill, Vern [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 30, 2001 6:47 PM
To: '[EMAIL PROTECTED]'
Subject: compile errors


trying to compile mysql-3.23.46, getting this error. Can't find any
reference to it anywhere.
Please help;

kgcc -O3 -DDBUG_OFF -O9 -rdynamic -o isamchk isamchk.o sort.o libnisam.a
../mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lpthread
-lz -lcrypt -lnsl -lm -lpthread
../mysys/libmysys.a(mf_tempfile.o): In function `create_temp_file':
mf_tempfile.o(.text+0xcd): undefined reference to `mkstemp64'
collect2: ld returned 1 exit status
make[2]: *** [isamchk] Error 1
make[2]: Leaving directory `/src/mysql-3.23.46/isam'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/src/mysql-3.23.46'
make: *** [all-recursive-am] Error 2

Vern H. Gill
State Director
Director of Marketing
Conejo Valley Jaycees
http://www.conejovalleyjaycees.org

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: compile errors

2001-12-08 Thread Gill, Vern

Still not compiling. New issue now...

# rpm -q gcc
gcc-3.1-0.10

./configure --cache-file=config.cache --with-mysqld-user=mysql
--localstatedir=/usr/local/mysql/var --prefix=/usr/local/mysql
--with-unix-socket-path=/usr/local/mysql/lock/mysql.sock
--without-berkeley-db --without-bench --enable-shared --without-mit-threads
--enable-thread-safe-client  make

Making all in libmysql_r
make[2]: Entering directory `/src/mysql-3.23.46/libmysql_r'
/bin/sh ../libtool --mode=compile kgcc
-DDEFAULT_CHARSET_HOME=\/usr/local/mysql\
-DDATADIR=\/usr/local/mysql/var\
-DSHAREDIR=\/usr/local/mysql/share/mysql\ -DDONT_USE_RAID
-I./../include -I../include-I./.. -I.. -I..-O3 -DDBUG_OFF
-O9  -c libmysql.c
mkdir .libs
kgcc -DDEFAULT_CHARSET_HOME=\/usr/local/mysql\
-DDATADIR=\/usr/local/mysql/var\
-DSHAREDIR=\/usr/local/mysql/share/mysql\ -DDONT_USE_RAID -I./../include
-I../include -I./.. -I.. -I.. -O3 -DDBUG_OFF -O9 -c libmysql.c  -fPIC -DPIC
-o .libs/libmysql.lo
libmysql.c: In function `mysql_real_connect':
libmysql.c:1300: warning: passing arg 5 of `gethostbyname_r' from
incompatible pointer type
libmysql.c:1300: too few arguments to function `gethostbyname_r'
libmysql.c:1300: warning: assignment makes pointer from integer without a
cast
make[2]: *** [libmysql.lo] Error 1
make[2]: Leaving directory `/src/mysql-3.23.46/libmysql_r'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/src/mysql-3.23.46'
make: *** [all-recursive-am] Error 2


Any help available?

-Original Message-
From: Gill, Vern [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 05, 2001 8:05 PM
To: '[EMAIL PROTECTED]'
Subject: FW: compile errors


HELP!!

Can someone PLEASE help me with this issue?

-Original Message-
From: Gill, Vern [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 05, 2001 12:47 AM
To: '[EMAIL PROTECTED]'
Subject: FW: compile errors


Anyone able to help with this? Or am I just stuck...?

-Original Message-
From: Gill, Vern [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 30, 2001 6:47 PM
To: '[EMAIL PROTECTED]'
Subject: compile errors


trying to compile mysql-3.23.46, getting this error. Can't find any
reference to it anywhere.
Please help;

kgcc -O3 -DDBUG_OFF -O9 -rdynamic -o isamchk isamchk.o sort.o libnisam.a
../mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lpthread
-lz -lcrypt -lnsl -lm -lpthread
../mysys/libmysys.a(mf_tempfile.o): In function `create_temp_file':
mf_tempfile.o(.text+0xcd): undefined reference to `mkstemp64'
collect2: ld returned 1 exit status
make[2]: *** [isamchk] Error 1
make[2]: Leaving directory `/src/mysql-3.23.46/isam'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/src/mysql-3.23.46'
make: *** [all-recursive-am] Error 2

Vern H. Gill
State Director
Director of Marketing
Conejo Valley Jaycees
http://www.conejovalleyjaycees.org

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php