Hans Breuer writes:
 > Following Owen's nice mingw build descriptions [1] everything went smooth 
 > until atk which gives:

 > libtool: link: CURRENT `1000' is not a nonnegative integer

Find this in libtool:

        # Check that each of the things are valid numbers.
        case $current in
        0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;

Change to:

        0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9] | [1-9][0-9][0-9][0-9]) ;;

--tml

_______________________________________________
gtk-devel-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtk-devel-list

Reply via email to