1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-28 12:23:49 +03:00

r3455: some more portability fixes. We nearly compile on solaris again now.

This commit is contained in:
Andrew Tridgell
2004-11-02 03:44:52 +00:00
committed by Gerald (Jerry) Carter
parent 10188869ef
commit 4f33247f1c
9 changed files with 26 additions and 44 deletions

View File

@@ -104,6 +104,20 @@
#include <dlfcn.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#ifndef RTLD_LAZY
#define RTLD_LAZY 0
#endif
@@ -161,3 +175,8 @@
#ifndef HAVE_RENAME
int rename(const char *zfrom, const char *zto);
#endif
#ifndef UINT16_MAX
#define UINT16_MAX 65535
#endif

View File

@@ -1,35 +0,0 @@
/*
Unix SMB/CIFS implementation.
resource system include wrappers
Copyright (C) Andrew Tridgell 2004
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif