Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ AM_COND_IF([WX],
CFLAGS="$WX_CFLAGS_ONLY $CFLAGS"
LIBS="$WX_LIBS $LIBS"])
], [
AC_MSG_NOTICE([No WX_CONFIG_CHECK available])
AC_MSG_ERROR([aclocal did not find wxwin.m4, so wxWidgets cannot be detected.
If wxWidgets is already installed, wxwin.m4 is outside aclocal's search path.
Re-run autoreconf with ACLOCAL_PATH set to the directory holding wxwin.m4.

Or configure with --disable-wx to build without graphics.])
AM_CONDITIONAL([WX], [test 1 = 0])
])],
AM_CONDITIONAL([WX], [test 1 = 0]))
Expand Down
Loading