From: Markus G. <ger...@us...> - 2005-04-20 17:36:11
|
Update of /cvsroot/mpio/mpio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3575 Modified Files: ChangeLog configure.in Log Message: fixed version check for libusb, use black list instead Index: ChangeLog =================================================================== RCS file: /cvsroot/mpio/mpio/ChangeLog,v retrieving revision 1.141 retrieving revision 1.142 diff -C2 -d -r1.141 -r1.142 *** ChangeLog 31 May 2004 09:28:49 -0000 1.141 --- ChangeLog 20 Apr 2005 17:36:02 -0000 1.142 *************** *** 1,2 **** --- 1,6 ---- + 2005-04-20 Markus Germeier <ma...@tz...> + * configure.in: + fix version check for libusb, use black list instead + 2004-05-31 Markus Germeier <ma...@tz...> * libmpio/src/mpio.c (mpio_init_external): Index: configure.in =================================================================== RCS file: /cvsroot/mpio/mpio/configure.in,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** configure.in 30 May 2004 01:46:50 -0000 1.25 --- configure.in 20 Apr 2005 17:36:02 -0000 1.26 *************** *** 79,85 **** fi ! # This 'test' call uses non-standard syntax and will fail on most ! # systems, but it's just informational so any warning can be ignored. ! if test "$LIBUSB_VER" \< "0.1.7"; then AC_MSG_WARN([ *** You need at least version 0.1.7 of the libusb library for USB support --- 79,85 ---- fi ! dnl --- blacklist the too old versions ! case "$LIBUSB_VER" in ! 0.1.[[0123456]]|0.1.[[36]][[ab]]) AC_MSG_WARN([ *** You need at least version 0.1.7 of the libusb library for USB support *************** *** 87,92 **** *** If you cannot find the appropriate version, try CVS ]) ! exit 1 ! fi case "$usb_msg" in --- 87,93 ---- *** If you cannot find the appropriate version, try CVS ]) ! exit 1 ;; ! *);; ! esac case "$usb_msg" in |