summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_sco-nothread.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_sco-nothread.GNU')
-rw-r--r--include/makeinclude/platform_sco-nothread.GNU21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/makeinclude/platform_sco-nothread.GNU b/include/makeinclude/platform_sco-nothread.GNU
deleted file mode 100644
index a01dc7062c6..00000000000
--- a/include/makeinclude/platform_sco-nothread.GNU
+++ /dev/null
@@ -1,21 +0,0 @@
-# According to Bryon G. Rigg <bgrigg@opus.bcbnet.com>, this file
-# should allow ACE to be built on Linux.
-
-CC = gcc -w
-# for threads
-# for no threads
-CXX = gcc -fno-implicit-templates -w -I. -fno-strict-prototypes -D__ACE_INLINE__
-DLD = $(CXX)
-LD = $(CXX)
-LIBS = -lstdc++ -lsocket
-PIC =
-AR = ar
-ARFLAGS = ruv
-RANLIB = /bin/true
-
-SOFLAGS = $(CPPFLAGS)
-SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<
-PRELIB = (echo "int main() { return 0; }" > gcctemp.c && \
- $(COMPILE.cc) -o gcctemp.o gcctemp.c && \
- $(LINK.cc) -o gcctemp gcctemp.o $^ $(LDFLAGS) $(LIBS); \
- status=$$?; exit $$status)