$build and $build_os refer to the machine on which the software is
built, $host and $host_os refer to the machine for which the software
is (cross-)built.
The variables $target and $target_os (despite the confusing names)
are only relevant in the context of building cross-compilers.
AC_CONFIG_MACRO_DIR([autostuff])
AC_CONFIG_AUX_DIR([autostuff])
-AC_CANONICAL_TARGET
-
# We require at least automake 1.11 (needed for 'silent rules').
AM_INIT_AUTOMAKE([1.11 -Wall -Werror check-news])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
SP_PKGLIBS=""
SP_LIBS=""
-case $target_os in
+case $host_os in
*linux*)
AM_CONDITIONAL([LINUX], true)
AM_CONDITIONAL([WIN32], false)