[debian] librairie mysql - pb script configure

librairie mysql - pb script configure [debian] - Linux et OS Alternatifs

Marsh Posté le 09-12-2002 à 20:54:39    

:hello:  
 
est ce que qq peut me donner le resultat de la cmd suivante chez lui :
 
ll /usr/lib | grep mysql  
 
parce que j'ai comme un pb avec un script configure qui trouve pas la librairie libmysqlclient
 
chez moi cela donne cela :
 

Code :
  1. lrwxrwxrwx    1 root     root           24 Dec  8 18:54 libmysqlclient.so.10 -> libmysqlclient.so.10.0.0
  2. -rw-r--r--    1 root     root            0 Dec  9 20:34 libmysqlclient.so.10.0.0
  3. lrwxrwxrwx    1 root     root           26 Dec  8 18:54 libmysqlclient_r.so.10 -> libmysqlclient_r.so.10.0.0
  4. -rw-r--r--    1 root     root       220868 Apr  7  2002 libmysqlclient_r.so.10.0.0


 
bizarre la taille de 0 , non ?


Message édité par matthias le 10-12-2002 à 19:36:09
Reply

Marsh Posté le 09-12-2002 à 20:54:39   

Reply

Marsh Posté le 09-12-2002 à 21:15:03    

j'utilise pas sql mais est-ce que tu as essayé un ?
apt-get install --reinstall libmysqlclient10


Message édité par Acontios le 09-12-2002 à 21:15:12
Reply

Marsh Posté le 09-12-2002 à 21:16:57    

installé pour l'occasion
 

$ ll /usr/lib/ | grep sql
lrwxrwxrwx    1 root     root           26 2002-12-09 21:14 libmysqlclient_r.so.10 -> libmysqlclient_r.so.10.0.0
-rw-r--r--    1 root     root       220612 2002-11-06 11:44 libmysqlclient_r.so.10.0.0
lrwxrwxrwx    1 root     root           24 2002-12-09 21:14 libmysqlclient.so.10 -> libmysqlclient.so.10.0.0
-rw-r--r--    1 root     root       217348 2002-11-06 11:44 libmysqlclient.so.10.0.0

Reply

Marsh Posté le 09-12-2002 à 21:28:53    

j'ai installe libmysqlclient10 & libmysqlclient10-dev  
 

Code :
  1. -rw-r--r--    1 root     root       302852 Apr  7  2002 libmysqlclient.a
  2. -rw-r--r--    1 root     root          703 Apr  7  2002 libmysqlclient.la
  3. lrwxrwxrwx    1 root     root           20 Dec  9 21:12 libmysqlclient.so -> libmysqlclient.so.10
  4. lrwxrwxrwx    1 root     root           24 Dec  9 21:22 libmysqlclient.so.10 -> libmysqlclient.so.10.0.0
  5. -rw-r--r--    1 root     root       217348 Apr  7  2002 libmysqlclient.so.10.0.0
  6. -rw-r--r--    1 root     root       309600 Apr  7  2002 libmysqlclient_r.a
  7. -rw-r--r--    1 root     root          735 Apr  7  2002 libmysqlclient_r.la
  8. lrwxrwxrwx    1 root     root           22 Dec  9 21:12 libmysqlclient_r.so -> libmysqlclient_r.so.10
  9. lrwxrwxrwx    1 root     root           26 Dec  9 21:22 libmysqlclient_r.so.10 -> libmysqlclient_r.so.10.0.0
  10. -rw-r--r--    1 root     root       220868 Apr  7  2002 libmysqlclient_r.so.10.0.0


 
pourquoi ma libmysqlclient_r.so  a pas la même taille que la tienne , c'est bizarre  :heink:  

Reply

Marsh Posté le 09-12-2002 à 21:31:22    

je suis en Sid, ça peut être une explication ;)

Reply

Marsh Posté le 09-12-2002 à 21:33:38    

911GT3 a écrit :

je suis en Sid, ça peut être une explication ;)


 
exact (je suis en stable), par contre j'ai toujours mon pb , mais ça avance doucement , j'ai deja toutes les librairies mysql imaginables  :D

Reply

Marsh Posté le 10-12-2002 à 19:09:20    

j'ai fais une grep avec un filtre sur "no" sur la sortie du script configure que j'utilise pour generer mon Makefile
, mon probleme est que ce dernier ne trouve pas les lib mysql (lignes isolées) , est ce que dans tous les autres trucs à no quelqu'un voit se qui pourrait eventuellement engendre le pb ...
moi je sais plus quoi faire  :pt1cable:  
 
 

Code :
  1. checking whether the C compiler (gcc  ) is a cross-compiler... no
  2. checking for AIX... no
  3. checking for POSIXized ISC... no
  4. checking for minix/config.h... (cached) no
  5. checking whether gcc needs -traditional... (cached) no
  6. checking for gcc option to accept ANSI C... (cached) none needed
  7. checking for socket in -lsocket... (cached) no
  8. checking for compress in -lz... (cached) no
  9. checking for mysql_init  in -lmysqlclient... (cached) no
  10. checking for mysql_connect  in -lmysqlclient... (cached)no
  11. checking for opendir in -ldir... (cached) no
  12. checking whether stat file-mode macros are broken... (cached) no
  13. checking for dir.h... (cached) no
  14. checking for direct.h... (cached) no
  15. checking whether setpgrp takes no argument... (cached) yes
  16. checking whether closedir returns void... (cached) no
  17. checking for _mkdir... (cached) no
  18. checking whether mkdir takes one argument... (cached) no
  19. checking for stricmp... (cached) no
  20. checking for strnicmp... (cached) no
  21. checking for _mkdir... (cached) no


Message édité par matthias le 10-12-2002 à 19:10:27
Reply

Marsh Posté le 10-12-2002 à 21:20:18    

le (cached) signifie qu'il n'a pas vérifié ce coup la mais qu'il s'est contenté de regarder dans un fichier cache.
 
supprime le config.cache et relance ton ./configure ;)

Reply

Marsh Posté le 10-12-2002 à 22:04:55    

Citation :

supprime le config.cache et relance ton ./configure ;)


 
 

Code :
  1. checking for mysql_init  in -lmysqlclient... (cached) yes


 
 
 :love:  yesss...... ça marche  :)  
 
 :jap:  :jap:  :jap:  

Reply

Marsh Posté le 10-12-2002 à 23:16:42    

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed