mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
generic: Hurd build fixes
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
cf68640e13
commit
2cd9559a3e
6 changed files with 34 additions and 23 deletions
|
@ -42,9 +42,7 @@
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#ifdef Q_OS_UNIX
|
|
||||||
#include <limits.h> // PATH_MAX
|
#include <limits.h> // PATH_MAX
|
||||||
#endif
|
|
||||||
|
|
||||||
class KArchivePrivate
|
class KArchivePrivate
|
||||||
{
|
{
|
||||||
|
|
|
@ -57,16 +57,30 @@ KFileSystemType::Type determineFileSystemTypeImpl(const QByteArray& path)
|
||||||
|
|
||||||
#elif defined(Q_OS_LINUX) || defined(Q_OS_HURD)
|
#elif defined(Q_OS_LINUX) || defined(Q_OS_HURD)
|
||||||
# include <sys/vfs.h>
|
# include <sys/vfs.h>
|
||||||
# include <linux/magic.h>
|
|
||||||
// LSB 3.2 has statfs in sys/statfs.h, sys/vfs.h is just an empty dummy header
|
// LSB 3.2 has statfs in sys/statfs.h, sys/vfs.h is just an empty dummy header
|
||||||
# include <sys/statfs.h>
|
# include <sys/statfs.h>
|
||||||
|
# if defined(Q_OS_LINUX)
|
||||||
# ifndef AUTOFSNG_SUPER_MAGIC
|
# include <linux/magic.h>
|
||||||
# define AUTOFSNG_SUPER_MAGIC 0x7d92b1a0
|
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
# ifndef NFS_SUPER_MAGIC
|
||||||
|
# define NFS_SUPER_MAGIC 0x00006969
|
||||||
|
# endif
|
||||||
|
# ifndef AUTOFS_SUPER_MAGIC
|
||||||
|
# define AUTOFS_SUPER_MAGIC 0x00000187
|
||||||
|
# endif
|
||||||
|
# ifndef MSDOS_SUPER_MAGIC
|
||||||
|
# define MSDOS_SUPER_MAGIC 0x00004d44
|
||||||
|
# endif
|
||||||
|
# ifndef SMB_SUPER_MAGIC
|
||||||
|
# define SMB_SUPER_MAGIC 0x0000517B
|
||||||
|
#endif
|
||||||
# ifndef FUSE_SUPER_MAGIC
|
# ifndef FUSE_SUPER_MAGIC
|
||||||
# define FUSE_SUPER_MAGIC 0x65735546
|
# define FUSE_SUPER_MAGIC 0x65735546
|
||||||
# endif
|
# endif
|
||||||
|
# ifndef RAMFS_MAGIC
|
||||||
|
# define RAMFS_MAGIC 0x858458F6
|
||||||
|
# endif
|
||||||
|
|
||||||
// Reverse-engineering without C++ code:
|
// Reverse-engineering without C++ code:
|
||||||
// strace stat -f /mnt 2>&1|grep statfs|grep mnt, and look for f_type
|
// strace stat -f /mnt 2>&1|grep statfs|grep mnt, and look for f_type
|
||||||
|
|
|
@ -63,6 +63,10 @@
|
||||||
|
|
||||||
#define case_sensitivity Qt::CaseSensitive
|
#define case_sensitivity Qt::CaseSensitive
|
||||||
|
|
||||||
|
#ifndef PATH_MAX
|
||||||
|
# define PATH_MAX _POSIX_PATH_MAX
|
||||||
|
#endif
|
||||||
|
|
||||||
class KStandardDirs::KStandardDirsPrivate
|
class KStandardDirs::KStandardDirsPrivate
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -796,8 +800,8 @@ KStandardDirs::KStandardDirsPrivate::realPath(const QString &dirname)
|
||||||
return dirname;
|
return dirname;
|
||||||
}
|
}
|
||||||
|
|
||||||
char realpath_buffer[MAXPATHLEN + 1];
|
char realpath_buffer[PATH_MAX + 1];
|
||||||
memset(realpath_buffer, 0, MAXPATHLEN + 1);
|
memset(realpath_buffer, 0, PATH_MAX + 1);
|
||||||
|
|
||||||
/* If the path contains symlinks, get the real name */
|
/* If the path contains symlinks, get the real name */
|
||||||
if (realpath( QFile::encodeName(dirname).constData(), realpath_buffer) != 0) {
|
if (realpath( QFile::encodeName(dirname).constData(), realpath_buffer) != 0) {
|
||||||
|
@ -846,8 +850,8 @@ KStandardDirs::realPath(const QString &dirname) const
|
||||||
QString
|
QString
|
||||||
KStandardDirs::realFilePath(const QString &filename)
|
KStandardDirs::realFilePath(const QString &filename)
|
||||||
{
|
{
|
||||||
char realpath_buffer[MAXPATHLEN + 1];
|
char realpath_buffer[PATH_MAX + 1];
|
||||||
memset(realpath_buffer, 0, MAXPATHLEN + 1);
|
memset(realpath_buffer, 0, PATH_MAX + 1);
|
||||||
|
|
||||||
/* If the path contains symlinks, get the real name */
|
/* If the path contains symlinks, get the real name */
|
||||||
if (realpath( QFile::encodeName(filename).constData(), realpath_buffer) != 0) {
|
if (realpath( QFile::encodeName(filename).constData(), realpath_buffer) != 0) {
|
||||||
|
@ -1355,9 +1359,9 @@ static QString readEnvPath(const char *env)
|
||||||
#ifdef Q_OS_LINUX
|
#ifdef Q_OS_LINUX
|
||||||
static QString executablePrefix()
|
static QString executablePrefix()
|
||||||
{
|
{
|
||||||
char path_buffer[MAXPATHLEN + 1];
|
char path_buffer[PATH_MAX + 1];
|
||||||
path_buffer[MAXPATHLEN] = 0;
|
path_buffer[PATH_MAX] = 0;
|
||||||
int length = readlink ("/proc/self/exe", path_buffer, MAXPATHLEN);
|
int length = readlink ("/proc/self/exe", path_buffer, PATH_MAX);
|
||||||
if (length == -1)
|
if (length == -1)
|
||||||
return QString();
|
return QString();
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -36,6 +35,10 @@
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef PATH_MAX
|
||||||
|
# define PATH_MAX _POSIX_PATH_MAX
|
||||||
|
#endif
|
||||||
|
|
||||||
int check_tmp_dir(const char *tmp_dir, int check_ownership);
|
int check_tmp_dir(const char *tmp_dir, int check_ownership);
|
||||||
int create_link(const char *file, const char *tmp_dir);
|
int create_link(const char *file, const char *tmp_dir);
|
||||||
int build_link(const char* tmp, const char *tmp_prefix, const char *kde_prefix);
|
int build_link(const char* tmp, const char *tmp_prefix, const char *kde_prefix);
|
||||||
|
|
|
@ -46,10 +46,6 @@
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#if defined(HAVE_LIMITS_H)
|
|
||||||
#include <limits.h> // PATH_MAX
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//sendfile has different semantics in different platforms
|
//sendfile has different semantics in different platforms
|
||||||
#if defined HAVE_SENDFILE && defined Q_OS_LINUX
|
#if defined HAVE_SENDFILE && defined Q_OS_LINUX
|
||||||
#define USE_SENDFILE 1
|
#define USE_SENDFILE 1
|
||||||
|
|
|
@ -107,11 +107,7 @@ extern "C" {
|
||||||
#define TTY_GROUP "tty"
|
#define TTY_GROUP "tty"
|
||||||
|
|
||||||
#ifndef PATH_MAX
|
#ifndef PATH_MAX
|
||||||
# ifdef MAXPATHLEN
|
# define PATH_MAX _POSIX_PATH_MAX
|
||||||
# define PATH_MAX MAXPATHLEN
|
|
||||||
# else
|
|
||||||
# define PATH_MAX 1024
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
///////////////////////
|
///////////////////////
|
||||||
|
|
Loading…
Add table
Reference in a new issue