1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

CONFIG_BEOS -> CONFIG_OS_BEOS

This commit is contained in:
Laurent MONIN 2006-01-11 20:12:59 +01:00 committed by Laurent MONIN
parent 202965d338
commit 3f9bb0d7f9
11 changed files with 17 additions and 17 deletions

View File

@ -97,7 +97,7 @@ XGETTEXT = @XGETTEXT@
CONFIG_256_COLORS = @CONFIG_256_COLORS@
CONFIG_ASCIIDOC = @CONFIG_ASCIIDOC@
CONFIG_BACKTRACE = @CONFIG_BACKTRACE@
CONFIG_BEOS = @CONFIG_BEOS@
CONFIG_OS_BEOS = @CONFIG_OS_BEOS@
CONFIG_BITTORRENT = @CONFIG_BITTORRENT@
CONFIG_BOOKMARKS = @CONFIG_BOOKMARKS@
CONFIG_BZIP2 = @CONFIG_BZIP2@

View File

@ -142,8 +142,8 @@ kill me!
AC_MSG_RESULT([$]$1)
])
EL_CHECK_COMPILER_MACROS(CONFIG_BEOS, [BEOS], [__BEOS__])
AC_SUBST(CONFIG_BEOS)
EL_CHECK_COMPILER_MACROS(CONFIG_OS_BEOS, [BEOS], [__BEOS__])
AC_SUBST(CONFIG_OS_BEOS)
EL_CHECK_COMPILER_MACROS(CONFIG_OS_RISCOS, [RISCOS], [__riscos__])
AC_SUBST(CONFIG_OS_RISCOS)
@ -157,7 +157,7 @@ test "$CONFIG_OS_OS2" = yes && LDFLAGS=`echo "$LDFLAGS" | sed "s/-Zexe//g"`
AC_MSG_CHECKING([for UNIX])
dnl FIXME: some depend kind of mechanism
if test "$CONFIG_BEOS" = no && \
if test "$CONFIG_OS_BEOS" = no && \
test "$CONFIG_OS_RISCOS" = no && \
test "$CONFIG_OS_WIN32" = no && \
test "$CONFIG_OS_OS2" = no; then

View File

@ -3,7 +3,7 @@
#define EL__ECMASCRIPT_SPIDERMONKEY_UTIL_H
/* For wild SpiderMonkey installations. */
#ifdef CONFIG_BEOS
#ifdef CONFIG_OS_BEOS
#define XP_BEOS
#elif CONFIG_OS_OS2
#define XP_OS2

View File

@ -2,7 +2,7 @@ top_builddir=../..
include $(top_builddir)/Makefile.config
INCLUDES += $(X_CFLAGS)
SUBDIRS-$(CONFIG_BEOS) += beos
SUBDIRS-$(CONFIG_OS_BEOS) += beos
SUBDIRS-$(CONFIG_OS_OS2) += os2
SUBDIRS-$(CONFIG_OS_RISCOS) += riscos
SUBDIRS-$(CONFIG_OS_UNIX) += unix

View File

@ -2,7 +2,7 @@
#ifndef EL__OSDEP_BEOS_BEOS_H
#define EL__OSDEP_BEOS_BEOS_H
#ifdef CONFIG_BEOS
#ifdef CONFIG_OS_BEOS
struct terminal;

View File

@ -2,7 +2,7 @@
#ifndef EL__OSDEP_BEOS_OVERRIDES_H
#define EL__OSDEP_BEOS_OVERRIDES_H
#ifdef CONFIG_BEOS
#ifdef CONFIG_OS_BEOS
#include <sys/time.h>
#include <sys/types.h>

View File

@ -2,7 +2,7 @@
#ifndef EL__OSDEP_BEOS_SYSINFO_H
#define EL__OSDEP_BEOS_SYSINFO_H
#ifdef CONFIG_BEOS
#ifdef CONFIG_OS_BEOS
#define SYSTEM_NAME "BeOS"
#define SYSTEM_STR "beos"

View File

@ -33,7 +33,7 @@ const struct open_in_new open_in_new[] = {
#ifdef CONFIG_OS_WIN32
{ ENV_WIN32, "", N_("~Window") },
#endif
#ifdef CONFIG_BEOS
#ifdef CONFIG_OS_BEOS
{ ENV_BE, DEFAULT_BEOS_TERM_CMD, N_("~BeOS terminal") },
#endif
{ 0, NULL, NULL }

View File

@ -232,7 +232,7 @@ get_terminal_size(int fd, int *x, int *y)
/* Pipe */
#if defined(CONFIG_OS_UNIX) || defined(CONFIG_BEOS) || defined(CONFIG_OS_RISCOS)
#if defined(CONFIG_OS_UNIX) || defined(CONFIG_OS_BEOS) || defined(CONFIG_OS_RISCOS)
void
set_bin(int fd)
@ -334,7 +334,7 @@ unsigned int resize_count = 0;
#ifndef CONFIG_OS_OS2
#if !(defined(CONFIG_BEOS) && defined(HAVE_SETPGID)) && !defined(CONFIG_OS_WIN32)
#if !(defined(CONFIG_OS_BEOS) && defined(HAVE_SETPGID)) && !defined(CONFIG_OS_WIN32)
int
exe(unsigned char *path)
@ -605,7 +605,7 @@ resize_window(int width, int height, int old_width, int old_height)
/* Threads */
#if defined(HAVE_BEGINTHREAD) || defined(CONFIG_BEOS)
#if defined(HAVE_BEGINTHREAD) || defined(CONFIG_OS_BEOS)
struct tdata {
void (*fn)(void *, int);
@ -706,7 +706,7 @@ get_ctl_handle(void)
#endif
#if !defined(CONFIG_BEOS) && !(defined(HAVE_BEGINTHREAD) && defined(HAVE_READ_KBD)) \
#if !defined(CONFIG_OS_BEOS) && !(defined(HAVE_BEGINTHREAD) && defined(HAVE_READ_KBD)) \
&& !defined(CONFIG_OS_WIN32)
int
@ -738,7 +738,7 @@ terminate_osdep(void)
#endif
#ifndef CONFIG_BEOS
#ifndef CONFIG_OS_BEOS
void
block_stdin(void)

View File

@ -1,7 +1,7 @@
#ifndef EL__OSDEP_SYSTEM_H
#define EL__OSDEP_SYSTEM_H
#if !defined(CONFIG_BEOS) \
#if !defined(CONFIG_OS_BEOS) \
&& !defined(CONFIG_OS_OS2) \
&& !defined(CONFIG_OS_RISCOS) \
&& !defined(CONFIG_OS_UNIX) \

View File

@ -170,7 +170,7 @@ exec_thread(unsigned char *path, int p)
{
int plen = strlen(path + 1) + 2;
#if defined(HAVE_SETPGID) && !defined(CONFIG_BEOS) && !defined(HAVE_BEGINTHREAD)
#if defined(HAVE_SETPGID) && !defined(CONFIG_OS_BEOS) && !defined(HAVE_BEGINTHREAD)
if (path[0] == 2) setpgid(0, 0);
#endif
exe(path + 1);