/usr/share/aclocal/gdome2.m4 is in libgdome2-dev 0.8.1+debian-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # GDOME2_DEFS([GDOME2_REQS=gdome2])
# ---------------------------------------
AC_DEFUN([GDOME2_DEFS],
[
dnl Import gdome2 data
PKG_CHECK_MODULES(GDOME2,m4_default([$1], gdome2))
AC_SUBST(GDOME2_CFLAGS)
AC_SUBST(GDOME2_LIBS)
dnl Example for exporting other variables read from pkg-config
dnl foodir=`$PKG_CONFIG --variable=foodir "gdome2"`
dnl AC_SUBST(foodir)
])
|