1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-03 12:35:02 +00:00

Correct beastie_saver module name.

This commit is contained in:
Jung-uk Kim 2010-04-07 18:42:21 +00:00
parent 8c14c16020
commit 3504769505
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=206380
2 changed files with 6 additions and 0 deletions

View File

@ -171,4 +171,8 @@ static scrn_saver_t logo_module = {
NULL
};
#ifdef BEASTIE_LOGO
SAVER_MODULE(beastie_saver, logo_module);
#else
SAVER_MODULE(logo_saver, logo_module);
#endif

View File

@ -5,4 +5,6 @@
KMOD= beastie_saver
SRCS= beastie.c logo_saver.c
CFLAGS+=-DBEASTIE_LOGO
.include <bsd.kmod.mk>