Do not compile code with -pedantic by default, since eFLTK code will fail on it.

Pass checks for FLTK 1.1.10 and FLTK 1.3.x branch
This commit is contained in:
Sanel Zukan 2009-10-08 12:13:52 +00:00
parent a800bb3255
commit 4725018886
2 changed files with 11 additions and 4 deletions

View File

@ -69,9 +69,9 @@ if $(SUN_COMPILER) {
} else {
# gcc assumed
WALL ?= "-Wall" ;
# some C libraries have issues with C++ when given '-pedantic' flag, so
# setting 'jam -sPEDANTIC=""' will allow compilation
PEDANTIC ?= "-pedantic" ;
# by default we do not use -pedantic; programs that use C libraries (HAL older versions) and eFLTK will fail
# to compile with it
PEDANTIC ?= ;
WNO_LONG_LONG ?= "-Wno-long-long" ;
}

View File

@ -148,7 +148,14 @@ if test -n "$FLTK_CONFIG"; then
case "$fltk_version" in ["1.1."[789]])
AC_MSG_RESULT(yes)
;;
*)
["1.1.10"])
AC_MSG_RESULT(yes)
;;
dnl check for FLTK 1.3.x branch
["1.3."[01]])
AC_MSG_RESULT([yes... Looks like you have unstable FLTK branch ($fltk_version). EDE is not well tested with these FLTK versions])
;;
*)
AC_MSG_ERROR([Looks like you have an older FLTK version ($fltk_version). Required is >= 1.1.7])
esac