mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
* m4/gnulib-cache.m4: Add `getaddrinfo'. * libguile/Makefile.am (libguile_la_LDFLAGS): Add `$(GETADDRINFO_LIB) $(HOSTENT_LIB) $(SERVENT_LIB)'.
13 lines
441 B
Text
13 lines
441 B
Text
# pathmax.m4 serial 8
|
|
dnl Copyright (C) 2002-2003, 2005-2006, 2009-2010 Free Software Foundation,
|
|
dnl Inc.
|
|
dnl This file is free software; the Free Software Foundation
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
AC_DEFUN([gl_PATHMAX],
|
|
[
|
|
dnl Prerequisites of lib/pathmax.h.
|
|
AC_CHECK_FUNCS_ONCE([pathconf])
|
|
AC_CHECK_HEADERS_ONCE([sys/param.h])
|
|
])
|