/*
 *  version.h
 */

#define SND_LIB_MAJOR           0 /**< major number of library version */
#define SND_LIB_MINOR           9 /**< minor number of library version */
#define SND_LIB_SUBMINOR        8 /**< subminor number of library version */
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 08 here was causing configure
for xine lib to fail. Dropping 0 before 8 helps
the following test to compile

...
  if((SND_LIB_MAJOR > major) ||
    ((SND_LIB_MAJOR == major) && (SND_LIB_MINOR > minor)) ||
    ((SND_LIB_MAJOR == major) && (SND_LIB_MINOR == minor) && (SND_LIB_SUBMINOR >
= micro))
^^^^^^^^^^^^^^^^^^ Here I was getting a note about a digit
present after radix. I suppose that could be a bug in gcc
(gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81))
).
But switching from 08 to 8 works around that.

_______________________________________________
Alsa-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-devel

Reply via email to