Phillip Bruce wrote:

> Hi,
>
>   I have some problem running the ./configure
>   command for version mysql-3.23.33 see below:
>
>  checking size of char... 0
> configure: error: No size for char type.
> A likely cause for this could be that there isn't any
> static libraries installed. You can verify this by checking if
> you have libm.a
> in /lib, /usr/lib or some other standard place.  If this is
> the problem,
> install the static libraries and try again.  If this isn't the
> problem,
> examine config.log for possible errors.  If you want to report
> this, use
> 'scripts/mysqlbug' and include at least the last 20 rows from
> config.log!
>
> I'm running this on the following:
>
> Solaris 2.8 release FCS ( Intel )
>  gcc -v
> Reading specs from
> /usr/local/lib/gcc-lib/i386-pc-solaris2.7/2.95.2/specs
> gcc version 2.95.2 19991024 (release)
>
> libm.a is there see below:
> find / -name libm.a -print
> /usr/lib/libp/libm.a
> /usr/lib/libm.a
> /usr/local/lib/libm.a
>
> LD_LIBRARY_PATH is set see below:
> echo $LD_LIBRARY_PATH
> /usr/lib /usr/local/lib /usr/openwin/lib
> /software/local/rvplayer5.0 /opt/ISLIodbc/2.11/lib
> /usr/java1.2.2/lib /usr/local/lib/glib
> /usr/local/lib/glib/include /opt/sfw/lib /opt/sfw/gnome/lib
> /opt/netscape /usr/lib/libp
>
> Any ideas why this stupid Config is not working? Any help
> would be appreciated.
>
> --
> ******************************************
> *** Phillip B. Bruce                    **
> *** http://pbbruce.home.mindspring.com  **
> *** [EMAIL PROTECTED]              **
> ******************************************
>
> ---------------------------------------------------------------------
> 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

If it has to do with a libraries problem try doing this

$ ldconfig

see if that works for you.

heres a little bit about ldconfig command

ldconfig(8)                                           ldconfig(8)

NAME
       ldconfig - determine run-time link bindings

SYNOPSIS
       ldconfig    [-DvnNX]    [-f conf]   [-C cache]   [-r root]
       directory ...
       ldconfig -l [-Dv] library ...
       ldconfig -p

DESCRIPTION
       ldconfig creates the necessary links and cache (for use by
       the  run-time  linker,  ld.so)  to  the most recent shared
       libraries found in the directories specified on  the  com-
       mand line, in the file /etc/ld.so.conf, and in the trusted
       directories (/usr/lib  and  /lib).   ldconfig  checks  the
       header  and file names of the libraries it encounters when
       determining  which  versions  should  have   their   links
       updated.   ldconfig  ignores  symbolic links when scanning
       for libraries.

       ldconfig should normally be run by the  super-user  as  it
       may  require  write permission on some root owned directo-
       ries and files.   It  is  normally  run  automatically  at
       bootup,  from  /etc/rc, or manually whenever new DLL's are
       installed.

OPTIONS
       -D     Debug mode.  Implies -N and -X.

       -v     Verbose mode.  Print current  version  number,  the
              name  of  each  directory  as it is scanned and any
              links that are created.

       -n     Only process directories specified on  the  command
              line.    Don't   process  the  trusted  directories
              (/usr/lib  and  /lib)  nor   those   specified   in
              /etc/ld.so.conf.  Implies -N.

       -N     Don't  rebuild the cache.  Unless -X is also speci-
              fied, links are still updated.

       -X     Don't update links.  Unless -N is  also  specified,
              the cache is still rebuilt.

       -f conf
              Use conf instead of /etc/ld.so.conf.

       -C cache
              Use cache instead of /etc/ld.so.cache.

       -r root
              Change to and use root as the root directory.

       -l     Library  mode.  Manually link individual libraries.
              Intended for use by experts only.

       -p     Print  the  lists  of  directories  and   candidate
              libraries stored in the current cache.

EXAMPLES
       In the bootup file /etc/rc having the line

              /sbin/ldconfig -v

       will  set up the correct links for the shared binaries and
       rebuild the cache.

       On the command line

              # /sbin/ldconfig -n /lib

       as root after the installation of a new DLL, will properly
       update the shared library symbolic links in /lib.

FILES
       /lib/ld.so          execution time linker/loader
       /etc/ld.so.conf     File   containing  a  list  of  colon,
                           space,   tab,   newline,   or    comma
                           spearated   directories  in  which  to
                           search for libraries.
       /etc/ld.so.cache    File containing  an  ordered  list  of
                           libraries  found  in  the  directories
                           specified in /etc/ld.so.conf.
       lib*.so.version     shared libraries

SEE ALSO
       ldd(1), ld(8), ld.so.info.

BUGS
       ldconfig's functionality, in conjunction  with  ld.so,  is
       only available for executables compiled using libc version
       4.4.3 or greater.

       ldconfig, being a user process, must be run  manually  and
       has  no  means  of  dynamically  determining and relinking
       shared libraries for use  by  ld.so  when  a  new  DLL  is
       installed.



---------------------------------------------------------------------
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

Reply via email to