diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-01 23:45:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:12 -0500 |
commit | 28785364baec1fbbf66de9ca38f397d7cc5c2c67 (patch) | |
tree | ab600b3f80da9641839682f87ef070e907d14a13 /source4/include/system | |
parent | f20f1f994ac375ab96cc8a38075b99aa20041b3f (diff) | |
download | samba-28785364baec1fbbf66de9ca38f397d7cc5c2c67.tar.gz samba-28785364baec1fbbf66de9ca38f397d7cc5c2c67.tar.bz2 samba-28785364baec1fbbf66de9ca38f397d7cc5c2c67.zip |
r3446: created include/system/iconv.h and include/system/shmem.h
(This used to be commit 70055fb1f499cd40e996e56c7ba9ef8d2267b421)
Diffstat (limited to 'source4/include/system')
-rw-r--r-- | source4/include/system/iconv.h | 31 | ||||
-rw-r--r-- | source4/include/system/shmem.h | 39 |
2 files changed, 70 insertions, 0 deletions
diff --git a/source4/include/system/iconv.h b/source4/include/system/iconv.h new file mode 100644 index 0000000000..76b767e2e8 --- /dev/null +++ b/source4/include/system/iconv.h @@ -0,0 +1,31 @@ +/* + Unix SMB/CIFS implementation. + + iconv memory 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_NATIVE_ICONV +#ifdef HAVE_ICONV +#include <iconv.h> +#endif +#ifdef HAVE_GICONV +#include <giconv.h> +#endif +#endif + diff --git a/source4/include/system/shmem.h b/source4/include/system/shmem.h new file mode 100644 index 0000000000..57b47dd879 --- /dev/null +++ b/source4/include/system/shmem.h @@ -0,0 +1,39 @@ +/* + Unix SMB/CIFS implementation. + + shared memory 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. +*/ + +#if defined(HAVE_SYS_IPC_H) +#include <sys/ipc.h> +#endif /* HAVE_SYS_IPC_H */ + +#if defined(HAVE_SYS_SHM_H) +#include <sys/shm.h> +#endif /* HAVE_SYS_SHM_H */ + +/* NetBSD doesn't have these */ +#ifndef SHM_R +#define SHM_R 0400 +#endif + +#ifndef SHM_W +#define SHM_W 0200 +#endif + |