Package Details: gmdb2 0.9.1-1

Git Clone URL: https://aur.archlinux.org/gmdb2.git (read-only, click to copy)
Package Base: gmdb2
Description: Graphical viewer for Microsoft Access database files
Upstream URL: https://github.com/mdbtools/gmdb2
Licenses: GPL
Provides: gmdb2
Submitter: cdrozak
Maintainer: wtgort
Last Packager: cdrozak
Votes: 0
Popularity: 0.000000
First Submitted: 2021-08-21 08:37 (UTC)
Last Updated: 2021-08-26 08:07 (UTC)

Dependencies (4)

Required by (1)

Sources (1)

Latest Comments

RunasSudo commented on 2025-11-19 04:36 (UTC)

With recent versions of gettext this appears to cause the error:

configure.ac:18: warning: macro 'AM_ICONV' not found in library
configure.ac:18: error: possibly undefined macro: AM_ICONV

I was able to not-very-robustly fix this by patching package() to:

prepare() {
  cd "${srcdir}/${_srcname}"
  (head -n 17 configure.ac; echo "AM_GNU_GETTEXT([external])"; echo "AM_GNU_GETTEXT_VERSION(0.26)"; tail -n +18 configure.ac) > configure.ac.new
  mv configure.ac.new configure.ac
  autoreconf -i -f
}