Skip to content
Snippets Groups Projects
Commit b925be1f authored by Brian Carrier's avatar Brian Carrier
Browse files

Added warning flags to C++ classes

parent ef8a723b
No related branches found
No related tags found
No related merge requests found
...@@ -20324,9 +20324,8 @@ done ...@@ -20324,9 +20324,8 @@ done
test -n "$JAVAC" || JAVAC="$JAVAPREFIX" test -n "$JAVAC" || JAVAC="$JAVAPREFIX"
   
fi fi
test "x$JAVAC" = x && { { echo "$as_me:$LINENO: error: no acceptable Java compiler found in \$PATH" >&5 test "x$JAVAC" = x && { echo "$as_me:$LINENO: WARNING: no acceptable Java compiler found in \$PATH" >&5
echo "$as_me: error: no acceptable Java compiler found in \$PATH" >&2;} echo "$as_me: WARNING: no acceptable Java compiler found in \$PATH" >&2;}
{ (exit 1); exit 1; }; }
   
{ echo "$as_me:$LINENO: checking if $JAVAC works" >&5 { echo "$as_me:$LINENO: checking if $JAVAC works" >&5
echo $ECHO_N "checking if $JAVAC works... $ECHO_C" >&6; } echo $ECHO_N "checking if $JAVAC works... $ECHO_C" >&6; }
...@@ -20337,7 +20336,7 @@ else ...@@ -20337,7 +20336,7 @@ else
JAVA_TEST=Test.java JAVA_TEST=Test.java
CLASS_TEST=Test.class CLASS_TEST=Test.class
cat << \EOF > $JAVA_TEST cat << \EOF > $JAVA_TEST
/* #line 20340 "configure" */ /* #line 20339 "configure" */
public class Test { public class Test {
} }
EOF EOF
...@@ -20349,9 +20348,8 @@ if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST' ...@@ -20349,9 +20348,8 @@ if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST'
(exit $ac_status); }; } >/dev/null 2>&1; then (exit $ac_status); }; } >/dev/null 2>&1; then
ac_cv_prog_javac_works=yes ac_cv_prog_javac_works=yes
else else
{ { echo "$as_me:$LINENO: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5 { echo "$as_me:$LINENO: WARNING: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5
echo "$as_me: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;} echo "$as_me: WARNING: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;}
{ (exit 1); exit 1; }; }
echo "configure: failed program was:" >&5 echo "configure: failed program was:" >&5
cat $JAVA_TEST >&5 cat $JAVA_TEST >&5
fi fi
......
...@@ -202,7 +202,7 @@ sysconfdir = @sysconfdir@ ...@@ -202,7 +202,7 @@ sysconfdir = @sysconfdir@
target_alias = @target_alias@ target_alias = @target_alias@
top_builddir = @top_builddir@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall AM_CPPFLAGS = -I../.. -I$(srcdir)/../.. -Wall -Wmultichar -Wstrict-null-sentinel -Woverloaded-virtual -Wsign-promo
EXTRA_DIST = .indent.pro EXTRA_DIST = .indent.pro
noinst_LTLIBRARIES = libtskauto.la noinst_LTLIBRARIES = libtskauto.la
# Note that the .h files are in the top-level Makefile # Note that the .h files are in the top-level Makefile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment