Files
ipx-utils/configure.ac
Mario Fetka 65d7b2c016
Some checks failed
Source release / source-package (push) Failing after 38s
add Gitea source release workflow
2026-04-29 20:35:01 +02:00

23 lines
556 B
Plaintext

AC_INIT([ipx-utils], [1.2], [mario.fetka@disconnected-by-peer.at])
AC_CONFIG_SRCDIR([src/ipx_configure.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz])
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.21])
AC_PROG_CC
AC_CHECK_HEADERS([libintl.h])
AC_SEARCH_LIBS([gettext], [intl])
AC_CHECK_FUNCS([gettext bindtextdomain textdomain])
AC_DEFINE_UNQUOTED([LOCALEDIR], ["${datadir}/locale"], [Define location of message catalogs])
AC_CONFIG_FILES([
Makefile
po/Makefile.in
])
AC_OUTPUT