1
1

add proper handling of xBSD types for BSDI and FreeBSD.

Этот коммит содержится в:
Timur Bakeyev 1998-12-29 19:33:28 +00:00
родитель 7cd7dbe352
Коммит 60f3d7c584
2 изменённых файлов: 10 добавлений и 14 удалений

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

@ -1,3 +1,9 @@
Tue Dec 29 22:25:34 1998 Timur Bakeyev <mc@bat.ru>
* mountlist.c: Compress all xBSD systems to one line and add check
for MOUNT_UFS - it seems, that 4.4BSD and 4.4BSD2 systems different-
ly handles FS names. (currently affects BSDI and FreeBSD)
Tue Dec 29 16:34:02 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
* file.c (progress_update_one): Ignore files in subdirectories
@ -12,7 +18,7 @@ Tue Dec 29 16:34:02 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
(various places): adpations for the above changes.
mon Dec 28 22:15:43 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
Mon Dec 28 22:15:43 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
* slint.c (try_alloc_color_pair): Changed hardcoded values into
defines.
@ -87,6 +93,7 @@ Thu Dec 24 18:42:52 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
* file.c: add a HAVE_GNOME only function
Mon Dec 21 22:39:35 1998 Norbert Warmuth <nwarmuth@privat.circular.de>
* mountlist.c: Define xBSD on FreeBSD.
* main.c (parse_an_arg): New function, popt callback. Option

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

@ -84,24 +84,13 @@ void free (void *ptr);
#include <sys/vfs.h>
#endif
#ifdef __bsdi__
/* 4.4BSD2 derived systems */
#if defined(__bsdi__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
# ifndef MOUNT_UFS
# define xBSD
# endif
#endif
#ifdef __NetBSD__
# define xBSD
#endif
#ifdef __OpenBSD__
# define xBSD
#endif
#ifdef __FreeBSD__
# define xBSD
#endif
/* void error (void); FIXME -- needed? */
#ifdef DOLPHIN