26 lines
651 B
Plaintext
26 lines
651 B
Plaintext
AC_INIT([ipx-utils], [1.4], [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 sys/socket.h net/if.h net/route.h netipx/ipx.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
|
|
src/Makefile
|
|
tools/Makefile
|
|
ipxripd/Makefile
|
|
po/Makefile.in
|
|
])
|
|
AC_OUTPUT
|