Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 colpack (1.0.10-1) unstable; urgency=medium
 .
   * Add github pointer to uscan debian/watch
   * New upstream version
Author: Barak A. Pearlmutter <bap@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- colpack-1.0.10.orig/configure.ac
+++ colpack-1.0.10/configure.ac
@@ -36,43 +36,42 @@ AC_CONFIG_FILES(Makefile)
 AM_PROG_AR
 LT_INIT
 
-AC_MSG_CHECKING(Build examples)
+AC_MSG_CHECKING([Build examples])
 AC_ARG_ENABLE([examples],
      [AS_HELP_STRING([--enable-examples],[Build examples])],
-     [case "${enableval}" in
-       yes) examples=true ;;
-       no)  examples=false ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-examples]) ;;
-     esac],[examples=false])
-     AM_CONDITIONAL([EXAMPLES], [test x$examples = xtrue])
+     [AS_CASE([${enableval}],
+       [yes],[examples=true],
+       [no],[examples=false],
+       [AC_MSG_ERROR([bad value ${enableval} for --enable-examples])])],
+     [examples=false])
+AM_CONDITIONAL([EXAMPLES], [test x$examples = xtrue])
+AC_MSG_RESULT([$examples])
 
-AC_MSG_CHECKING(OpenMP)
+AC_MSG_CHECKING([OpenMP])
 AC_ARG_ENABLE([openmp],
      [AS_HELP_STRING([--enable-openmp],[Enable OpenMP])],
-     [case "${enableval}" in
-       yes) openmp=true ;;
-       no)  openmp=false ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-openmp]) ;;
-     esac],[openmp=false])
-     AM_CONDITIONAL([ENABLE_OPENMP], [test x$openmp = xtrue])
+     [AS_CASE([${enableval}],
+       [yes],[openmp=true],
+       [no],[openmp=false],
+       [AC_MSG_ERROR([bad value ${enableval} for --enable-openmp])])],
+     [openmp=false])
+AM_CONDITIONAL([ENABLE_OPENMP], [test x$openmp = xtrue])
+AC_MSG_RESULT([$openmp])
 
 AC_OUTPUT
 
 # echo configuration
-echo \
-"
------------------------------------------------------------------------------
-Configuration:
-
-  C compiler:                       ${CC}
-  C++ compiler:                     ${CXX}
-  Linker:                           ${LD}
-  Source code location:             `pwd`
-  Install path:                     ${prefix}
-
-  CFLAGS:                           ${CFLAGS}
-  CXXFLAGS:                         ${CXXFLAGS}
-
-  Use OpenMP:                       ${openmp}
-  Build examples:                   ${examples}
-"
+AS_ECHO(["-----------------------------------------------------------------------------"])
+AS_ECHO(["Configuration:"])
+AS_ECHO([""])
+AS_ECHO(["  C compiler:                       ${CC}"])
+AS_ECHO(["  C++ compiler:                     ${CXX}"])
+AS_ECHO(["  Linker:                           ${LD}"])
+AS_ECHO(["  Source code location:             `pwd`"])
+AS_ECHO(["  Install path:                     ${prefix}"])
+AS_ECHO([""])
+AS_ECHO(["  CFLAGS:                           ${CFLAGS}"])
+AS_ECHO(["  CXXFLAGS:                         ${CXXFLAGS}"])
+AS_ECHO([""])
+AS_ECHO(["  Use OpenMP:                       ${openmp}"])
+AS_ECHO(["  Build examples:                   ${examples}"])
