1
1

* src/param.h: Remove. Should use HAVE_SYS_PARAM_H everywhere

instead.
* key_nt.c: Use indented #error.
* key_os2.c: Use indented #error.
Этот коммит содержится в:
Pavel Roskin 2001-06-14 15:55:24 +00:00
родитель b341c86ca4
Коммит c68f401c67
4 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -1,3 +1,10 @@
2001-06-14 Pavel Roskin <proski@gnu.org>
* src/param.h: Remove. Should use HAVE_SYS_PARAM_H everywhere
instead.
* key_nt.c: Use indented #error.
* key_os2.c: Use indented #error.
2001-06-11 Pavel Roskin <proski@gnu.org>
* Makefile.MIN: Add "-mno-cygwin" to MC_MISC_CFLAGS.

Просмотреть файл

@ -20,7 +20,7 @@
*/
#include <config.h>
#ifndef _OS_NT
#error This file is for Win32 systems.
#error "This file is for Win32 systems only"
#else
#include <windows.h>

Просмотреть файл

@ -21,7 +21,7 @@
#include <config.h>
#ifndef __os2__
#error This file is for OS/2 systems.
#error "This file is for OS/2 systems only"
#else
#define INCL_BASE

Просмотреть файл

@ -1,7 +0,0 @@
/* Systems having sys/param.h should not include this file */
#ifdef HAVE_PARAM_H
#error Remove this file if you have real sys/param.h
#else
/* FIXME: We should warn, that this file should not be included */
#endif