#1683: --disable-hebrew doesn't work in configure script
--------------------+-------------------------------------------------------
 Reporter:  oldium  |       Owner:       
     Type:  defect  |      Status:  new  
 Priority:  normal  |   Milestone:  1.3.9
Component:  build   |     Version:  1.3.8
 Keywords:          |  
--------------------+-------------------------------------------------------
 The error is in configure.ac:

 {{{
 AC_ARG_ENABLE(
   hebrew,
   [  --enable-hebrew  include support for hebrew reverse string],
   USE_HEBREW=yes, USE_HEBREW=no)
 }}}

 The third parameter should be USE_HEBREW=$enableval:

 {{{
 AC_ARG_ENABLE(
   hebrew,
   [  --enable-hebrew  include support for hebrew reverse string],
   USE_HEBREW=$enableval, USE_HEBREW=no)
 }}}


 Whith this change, the --disable-hebrew finally works as expected (same
 effect as USE_HEBREW=no).

-- 
Ticket URL: <http://www.licq.org/ticket/1683>
Licq <http://www.licq.org/>
Licq - an instant messaging client for UNIX.

Reply via email to