Hello, I've been looking at building source from SVN on OS X 10.3.9 and I've found these problems:
- configure.ac uses g++ instead of gcc when testing for -Wno-pointer-sign support (ignoring $CFLAGS) and gcc3 dies in libcroco. Already reported by jiho.
- isnan undeclared in src/libcola/cola.cpp. I worked around this by changing "isnan" to "isNaN" since the latter is defined in isnan.h, though I'm not sure this makes sense for all platforms.
- libcola/gradient_projection.cpp:54 isinf undefined. Adding '#include <math.h>' fixes this.
There are several issues for isnan already in the tracker, so my question is: are these new problems (requiring new bugs created), or the same as earlier bugs?
- Although configure apparently finds msgfmt, In po/Makefile, both $MSGFMT and $GMSGFMT are empty. When make hits the '.po.gmo:' target, it complains "-o: command not found" since part of the command is "$(GMSGFMT) -o $$file $<". Has anyone run into this?
Thanks!, John