mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
53a4e96313
* samba/tests/crypttest.c: Remove. * samba/tests/fcntl_lock.c: Likewise. * samba/tests/shared_mmap.c: Likewise. * samba/tests/sysv_ipc.c: Likewise. * samba/samba-files: Likewise. * samba/smbadduser: Likewise. * Make-mc.in: Adjust for the above. * samba/include/includes.h: Removed definitions related to the above tests.
16 lines
405 B
C
16 lines
405 B
C
#include <stdio.h>
|
|
|
|
main()
|
|
{
|
|
#if !(defined(HAVE_NETMASK_IFCONF) || defined(HAVE_NETMASK_IFREQ) || defined(HAVE_NETMASK_AIX))
|
|
printf("WARNING: No automated netmask determination - use an interfaces line\n");
|
|
#endif
|
|
|
|
#if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND)))
|
|
printf("ERROR: No random or srandom routine!\n");
|
|
exit(1);
|
|
#endif
|
|
|
|
exit(0);
|
|
}
|