2008-12-29 18:53:47 +01:00
|
|
|
/* GLIB - Library of useful routines for C programming
|
|
|
|
* Copyright (C) 2008 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
#ifndef __G_ASYNCNS_H__
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
2009-04-27 23:35:04 +02:00
|
|
|
|
|
|
|
/* We want to build the fork-based version, not the threaded version. */
|
2008-12-29 18:53:47 +01:00
|
|
|
#undef HAVE_PTHREAD
|
|
|
|
|
2009-04-27 23:35:04 +02:00
|
|
|
/* libasyncns doesn't actually need this include, and it breaks
|
|
|
|
* old OS X. #580301. Remove if asyncns.c stops including
|
|
|
|
* <arpa/nameser_compat.h> in the future.
|
|
|
|
*/
|
|
|
|
#undef HAVE_ARPA_NAMESER_COMPAT_H
|
|
|
|
|
|
|
|
/* Also for old OS X, #580301. Remove if these are added to asyncns.c
|
|
|
|
* in the future.
|
|
|
|
*/
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
/* Some BSDs require this for getrlimit */
|
|
|
|
#include <sys/resource.h>
|
|
|
|
|
2008-12-29 18:53:47 +01:00
|
|
|
#include "asyncns.h"
|
|
|
|
|
|
|
|
#endif
|