mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
271f8d7eec
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2713 a592a061-630c-0410-9148-cb99ea01b6c8
56 lines
1.3 KiB
C++
56 lines
1.3 KiB
C++
/* -*- C++ -*- */
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
A few prototypes and definitions needed for OS/2 */
|
|
|
|
#ifndef OS2_DEFINES_H
|
|
#define OS2_DEFINES_H
|
|
|
|
#if defined (__cplusplus)
|
|
#include <cctype>
|
|
#include <cstdlib>
|
|
|
|
extern "C"
|
|
inline int readlink(const char *, char *, size_t) {return -1;}
|
|
|
|
#else
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#define readlink(s, t, l) (-1)
|
|
#endif
|
|
#include <process.h>
|
|
#include <unistd.h>
|
|
#include <X11/Xlocale.h>
|
|
/* #include <malloc.h> */
|
|
#define lstat stat
|
|
#define S_ISLNK(x) false
|
|
#define S_ISBLK(x) false
|
|
/*#define mkfifo(p, m) (0) *//* LyXserver is temporary disabled. */
|
|
#define chdir _chdir2
|
|
#define strcasecmp stricmp
|
|
#if defined (__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
const char* __XOS2RedirRoot(const char* pathname);
|
|
#if defined (__cplusplus)
|
|
}
|
|
#endif
|
|
#undef LYX_DIR
|
|
#define LYX_DIR __XOS2RedirRoot("/XFree86/lib/X11/lyx")
|
|
#undef LOCALEDIR
|
|
#define LOCALEDIR __XOS2RedirRoot("/XFree86/lib/X11/locale")
|
|
#undef TOP_SRCDIR
|
|
#define TOP_SRCDIR ".."
|
|
/* I have the slightest idea what I am doing here... */
|
|
#define bindtextdomain bindtextdomain__
|
|
#define textdomain textdomain__
|
|
|
|
#endif /* _OS2_DEFINES_H */
|