Salut,

Je joins un patch pour qu'a la fin du ./configure il n'y ait pas 

========================================================================
distribution detected                           Fedora
 
dhcp support                                    no
 
.....


meme si dhcp est present.
Avec mon patch, il y a a la place

========================================================================
distribution detected                           Fedora
                                                                                
dhcp support                                    dhclient
                                                                                
.....
                                                                                
Il y a une ligne commentee, toujours dans mon patch qui permet d'avoir

========================================================================
distribution detected                           Fedora
                                                                                
dhcp support                                    yes
                                                                                
.....
                                                                                
A vous de choisir ce que vous preferez.

Pat

Index: configure.in
===================================================================
RCS file: /cvs/eagleusb/eagleusb/configure.in,v
retrieving revision 1.18
diff -u -3 -p -u -r1.18 configure.in
--- configure.in        1 Aug 2004 20:08:04 -0000       1.18
+++ configure.in        6 Aug 2004 17:47:15 -0000
@@ -359,7 +359,8 @@ echo -en "distribution detected\t\t\t\t"
 echo ${DISTRIB}
 
 echo -en "\ndhcp support\t\t\t\t\t"
-if test "${DHCP}" = "yes" ; then echo "yes" ; else echo "no " ; fi
+#if test "${DHCP}" != "no" ; then echo "yes" ; else echo "no " ; fi
+echo ${DHCP}
 
 echo -en "\npppd support\t\t\t\t\t"
 if test "${PPPD}" = "yes" ; then

Reply via email to