Hello Stefan,
Am 26.04.2010 um 19:01 schrieb repository service:
Modified: trunk/fcode-utils-devel/toke/Makefile = = = = = = = = ====================================================================== --- trunk/fcode-utils-devel/toke/Makefile Mon Apr 26 17:57:21 2010 (r758) +++ trunk/fcode-utils-devel/toke/Makefile Mon Apr 26 19:01:01 2010 (r759) @@ -29,7 +29,7 @@ INCLUDES = -I../shared
# Normal flags -CFLAGS = -O2 -Wall -Wextra +CFLAGS = -O2 -Wall -ansi -Wno-pointer-sign #-Wextra LDFLAGS =
# Coverage:
OpenSolaris' gcc does not understand -Wno-pointer-sign:
cc1: error: unrecognized command line option "-Wno-pointer-sign"
Could we find another solution please? ;)
This works for me for now:
Index: toke/Makefile =================================================================== --- toke/Makefile (revision 774) +++ toke/Makefile (working copy) @@ -29,7 +29,7 @@ INCLUDES = -I../shared
# Normal flags -CFLAGS = -O2 -Wall -ansi -Wno-pointer-sign #-Wextra +CFLAGS = -O2 -Wall -ansi #-Wno-pointer-sign #-Wextra LDFLAGS =
# Coverage:
Thanks, Andreas