Update of /cvsroot/eas-dev/eas/server
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv13583/server
Modified Files:
Makefile main.prg
Log Message:
Yes! 0.2.1 Release Candidate - it's seem all things to work.
Index: Makefile
===================================================================
RCS file: /cvsroot/eas-dev/eas/server/Makefile,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Makefile 16 Jun 2006 15:22:20 -0000 1.5
+++ Makefile 17 Jun 2006 17:00:36 -0000 1.6
@@ -38,8 +38,6 @@
$(AUTH): pam-auth.c
$(CC) $(CFLAGS) -o $(AUTH) pam-auth.c $(AUTHLIBS)
- chown root.root $(AUTH)
- chmod ugo+s $(AUTH)
clean:
rm -f *.o core *.core $(PRG) $(DAEMON) $(AUTH) *.log *.nm *.ex *.exe *.so easserver.ini
@@ -49,7 +47,9 @@
@../mkinstalldirs $(DESTDIR)$(EASDATADIR)/server/
../mkinstalldirs $(DESTDIR)$(EASDBPATH)
$(CLIPROOT)/bin/clip_cp $(PRG) $(DESTDIR)$(EASBINDIR)
- $(CLIPROOT)/bin/clip_cp $(AUTH) $(DESTDIR)$(CLIPROOT)/bin
+ cp $(AUTH) $(DESTDIR)$(CLIPROOT)/bin
+ chown root.root $(DESTDIR)$(CLIPROOT)/bin/$(AUTH)
+ chmod ugo+s $(DESTDIR)$(CLIPROOT)/bin/$(AUTH)
[ -z "$(DESTDIR)" ] && [ `uname -s` = "Linux" ] && make linuxinstall
linuxinstall: all
Index: main.prg
===================================================================
RCS file: /cvsroot/eas-dev/eas/server/main.prg,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- main.prg 2 Jun 2006 14:49:00 -0000 1.1
+++ main.prg 17 Jun 2006 17:00:36 -0000 1.2
@@ -11,7 +11,7 @@
/*-------------------------------------------------------------------------*/
#define PRG_NAME "easserver"
-#define PRG_VERSION "0.2.1"
+#define PRG_VERSION "0.2.1rc"
#define DEBUG 20
#define TMP_DEFAULT '/tmp/easserver'
|