diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/Makefile | 2 | ||||
-rw-r--r-- | mbbsd/args.c | 2 | ||||
-rw-r--r-- | mbbsd/register.c | 3 | ||||
-rw-r--r-- | mbbsd/user.c | 3 |
4 files changed, 8 insertions, 2 deletions
diff --git a/mbbsd/Makefile b/mbbsd/Makefile index abfa1e0a..e6725456 100644 --- a/mbbsd/Makefile +++ b/mbbsd/Makefile @@ -44,7 +44,7 @@ install: $(PROG) install -d $(BBSHOME)/bin/ install -c -m 755 $(PROG) $(BBSHOME)/bin/ mv -f $(BBSHOME)/bin/mbbsd $(BBSHOME)/bin/mbbsd.`date '+%m%d%H'` - ln -sv $(BBSHOME)/bin/mbbsd.`date '+%m%d%H'` $(BBSHOME)/bin/mbbsd + ln -s $(BBSHOME)/bin/mbbsd.`date '+%m%d%H'` $(BBSHOME)/bin/mbbsd clean: rm -f $(OBJS) $(PROG) diff --git a/mbbsd/args.c b/mbbsd/args.c index bf36827b..32156517 100644 --- a/mbbsd/args.c +++ b/mbbsd/args.c @@ -1,4 +1,4 @@ -/* $Id: args.c,v 1.8 2003/06/26 01:04:03 kcwu Exp $ */ +/* $Id$ */ #include "bbs.h" #ifdef HAVE_SETPROCTITLE diff --git a/mbbsd/register.c b/mbbsd/register.c index a578f16a..f1e63a2b 100644 --- a/mbbsd/register.c +++ b/mbbsd/register.c @@ -1,5 +1,8 @@ /* $Id$ */ +#ifndef Solaris #define _XOPEN_SOURCE +#endif + #define _ISOC99_SOURCE #include "bbs.h" diff --git a/mbbsd/user.c b/mbbsd/user.c index 5ce60d71..a7a1eced 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -1,5 +1,8 @@ /* $Id$ */ +#ifndef Solaris #define _XOPEN_SOURCE +#endif + #define _ISOC99_SOURCE #include "bbs.h" |