Modifications for DEC Alpha - Mark Rivers.

This commit is contained in:
Janet B. Anderson
1997-06-04 14:17:09 +00:00
parent 6509cf77bf
commit 599b22b70b
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# CONFIG.Unix.alpha
# CONFIG.alpha
#
# This file is maintained by the EPICS community.
@@ -24,7 +24,7 @@ RANLIB = ranlib
YACC = $(EYACC)
LEX = $(ELEX)
G++ = g++
CCC = cc
CCC = cxx
CP=cp
MV = mv
@@ -136,7 +136,7 @@ COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
COMPILE.cc = $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c
# Unlike the 'Unix' makesystem, output flags -o .. are now part of LINK.c[c]
LINK.c = $(CC) -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
LINK.cc = $(CXX) -o $@ $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
LINK.cc = $(CCC) -o $@ $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
DEPEND_RULE.c = @echo no DEPENDS_RULE.c defined in CONFIG.alpha
DEPEND_RULE.cc = @echo no DEPENDS_RULE.cc defined in CONFIG.alpha

View File

@@ -128,7 +128,7 @@ int BSmakeServer(char** argv)
perror("Cannot fork");
return -1;
case 0: /* child */
#if defined linux || defined SOLARIS || defined SGI || defined _OSF_SOURCE || defined HP_UX
#if defined linux || defined SOLARIS || defined SGI || defined HP_UX
setpgrp();
#else
setpgrp(0,0);