Update of /cvsroot/eas-dev/eas/server
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv2049/server
Modified Files:
Makefile
Log Message:
Fix another connection. Concurrent connections are still broken.
Index: Makefile
===================================================================
RCS file: /cvsroot/eas-dev/eas/server/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Makefile 6 Jun 2006 13:29:31 -0000 1.4
+++ Makefile 16 Jun 2006 15:22:20 -0000 1.5
@@ -31,7 +31,7 @@
chmod +x $(DAEMON)
easserver.ini: easserver.ini.in
- cat easserver.ini.in | sed -e 's|BINROOT|$(EASBINDIR)|g;s|SERVERROOT|$(EASLOGDIR)|g;s|CLIPROOT|$(CLIPROOT)|g' >easserver.ini
+ cat easserver.ini.in | sed -e 's|BINROOT|$(EASBINDIR)|g;s|SERVERROOT|$(EASLOGDIR)|g' >easserver.ini
$(PRG): $(OBJS)
$(CLIP) $(CLIPFLAGS) -eslM $(CLIPINCLUDE) -o $(PRG) $(OBJS) $(CLIPLIBS) $(EASLIBS)
@@ -39,7 +39,7 @@
$(AUTH): pam-auth.c
$(CC) $(CFLAGS) -o $(AUTH) pam-auth.c $(AUTHLIBS)
chown root.root $(AUTH)
- chmod ug+s $(AUTH)
+ chmod ugo+s $(AUTH)
clean:
rm -f *.o core *.core $(PRG) $(DAEMON) $(AUTH) *.log *.nm *.ex *.exe *.so easserver.ini
|