aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorp37sitdu <devnull@localhost>2013-01-12 20:35:54 +0000
committerp37sitdu <devnull@localhost>2013-01-12 20:35:54 +0000
commit927887827f2a440f1f1b39e58d87b12154098d4a (patch)
tree93602fd514219a1a87419f656f1d0cd26f2e3b7e /configure.ac
parent0f0e7cc54aecab1647bdcd222c84d17275b92313 (diff)
AC_ERROR -> AC_MSG_ERROR
I see that Jeremy eradicated the other ones in Jan 2011, and I introduced some AC_ERRORs again for the 1.3 port -- corvid
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 5b7cf273..88b7cfc2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -119,9 +119,9 @@ case $fltk_version in
LIBFLTK_CFLAGS=`fltk-config --cflags`
LIBFLTK_LIBS=`fltk-config --ldflags`;;
?*) AC_MSG_RESULT(no)
- AC_ERROR(FLTK 1.3 required; version found: $fltk_version);;
+ AC_MSG_ERROR(FLTK 1.3 required; version found: $fltk_version);;
*) AC_MSG_RESULT(no)
- AC_ERROR(FLTK 1.3 required; fltk-config not found)
+ AC_MSG_ERROR(FLTK 1.3 required; fltk-config not found)
esac