Don't build with select for now.
This commit is contained in:
parent
b4bfd0f96c
commit
41b90aab2f
15
Makefile.in
15
Makefile.in
|
@ -124,7 +124,6 @@ SCSHOBJS = \
|
||||||
scsh/network1.o \
|
scsh/network1.o \
|
||||||
scsh/putenv.o \
|
scsh/putenv.o \
|
||||||
scsh/rx/regexp1.o \
|
scsh/rx/regexp1.o \
|
||||||
scsh/select.o scsh/select1.o \
|
|
||||||
scsh/sleep1.o \
|
scsh/sleep1.o \
|
||||||
scsh/syscalls1.o \
|
scsh/syscalls1.o \
|
||||||
scsh/syslog1.o \
|
scsh/syslog1.o \
|
||||||
|
@ -159,10 +158,6 @@ CONFIG_FILES = scheme/interfaces.scm scheme/low-packages.scm \
|
||||||
# default target.
|
# default target.
|
||||||
enough: $(VM) $(IMAGE) go $(LIBCIG) scsh $(LIBSCSH) $(LIBSCSHVM)
|
enough: $(VM) $(IMAGE) go $(LIBCIG) scsh $(LIBSCSH) $(LIBSCSHVM)
|
||||||
|
|
||||||
# Files generated by cig need their init functions called.
|
|
||||||
|
|
||||||
CIGGEDINIT = s48_init_select
|
|
||||||
|
|
||||||
# --------------------
|
# --------------------
|
||||||
# External code to include in the VM
|
# External code to include in the VM
|
||||||
# After changing any of these you should delete `scheme48vm' and remake it.
|
# After changing any of these you should delete `scheme48vm' and remake it.
|
||||||
|
@ -172,7 +167,7 @@ EXTERNAL_FLAGS = $(SOCKET_FLAGS)
|
||||||
EXTERNAL_INITIALIZERS = $(ADDITIONAL_INITIALIZER) $(SOCKET_INITIALIZERS) \
|
EXTERNAL_INITIALIZERS = $(ADDITIONAL_INITIALIZER) $(SOCKET_INITIALIZERS) \
|
||||||
$(LOOKUP_INITIALIZERS) \
|
$(LOOKUP_INITIALIZERS) \
|
||||||
$(SCSH_INITIALIZERS) \
|
$(SCSH_INITIALIZERS) \
|
||||||
s48_init_cig $(CIGGEDINIT)
|
s48_init_cig
|
||||||
|
|
||||||
|
|
||||||
# Rules for any external code.
|
# Rules for any external code.
|
||||||
|
@ -227,7 +222,7 @@ scsh/network1o: scsh/network1.h
|
||||||
scsh/flock1.o: scsh/flock1.h
|
scsh/flock1.o: scsh/flock1.h
|
||||||
|
|
||||||
scsh/fdports1.o scsh/fdports.o: scsh/fdports1.h
|
scsh/fdports1.o scsh/fdports.o: scsh/fdports1.h
|
||||||
scsh/select1.o scsh/select.o: scsh/select1.h
|
#scsh/select1.o scsh/select.o: scsh/select1.h
|
||||||
|
|
||||||
scsh/rx/regexp1.o: c/scheme48.h
|
scsh/rx/regexp1.o: c/scheme48.h
|
||||||
|
|
||||||
|
@ -410,7 +405,7 @@ clean-cig:
|
||||||
-rm -f cig/*.o $(CIG) $(CIG).image $(LIBCIG)
|
-rm -f cig/*.o $(CIG) $(CIG).image $(LIBCIG)
|
||||||
|
|
||||||
clean-scm2c:
|
clean-scm2c:
|
||||||
rm -f scsh/select.c
|
rm -f #scsh/select.c
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile config.log config.status c/sysdep.h config.cache \
|
rm -f Makefile config.log config.status c/sysdep.h config.cache \
|
||||||
|
@ -757,7 +752,6 @@ SCHEME =scsh/awk.scm \
|
||||||
scsh/scsh-read.scm \
|
scsh/scsh-read.scm \
|
||||||
scsh/scsh-version.scm \
|
scsh/scsh-version.scm \
|
||||||
scsh/scsh.scm \
|
scsh/scsh.scm \
|
||||||
scsh/select.scm \
|
|
||||||
scsh/sighandlers.scm \
|
scsh/sighandlers.scm \
|
||||||
scsh/startup.scm \
|
scsh/startup.scm \
|
||||||
scsh/stringcoll.scm \
|
scsh/stringcoll.scm \
|
||||||
|
@ -777,8 +771,7 @@ SCHEME =scsh/awk.scm \
|
||||||
# Explicitly giving the .o/.c dependency also makes it go.
|
# Explicitly giving the .o/.c dependency also makes it go.
|
||||||
############################################################
|
############################################################
|
||||||
cig/libcig.c: cig/libcig.scm
|
cig/libcig.c: cig/libcig.scm
|
||||||
scsh/jcontrol2.c: scsh/jcontrol2.scm
|
#scsh/select.c: scsh/select.scm
|
||||||
scsh/select.c: scsh/select.scm
|
|
||||||
|
|
||||||
scsh/scsh: scsh/scsh-tramp.c
|
scsh/scsh: scsh/scsh-tramp.c
|
||||||
$(CC) -o $@ $(CPPFLAGS) $(CFLAGS) \
|
$(CC) -o $@ $(CPPFLAGS) $(CFLAGS) \
|
||||||
|
|
|
@ -139,8 +139,8 @@
|
||||||
seek/delta
|
seek/delta
|
||||||
seek/end
|
seek/end
|
||||||
|
|
||||||
select
|
; select
|
||||||
select!
|
; select!
|
||||||
|
|
||||||
flush-all-ports
|
flush-all-ports
|
||||||
y-or-n?
|
y-or-n?
|
||||||
|
|
|
@ -217,7 +217,7 @@
|
||||||
scheme) ; For accessing the normal I/O operators.
|
scheme) ; For accessing the normal I/O operators.
|
||||||
(files syntax
|
(files syntax
|
||||||
syscalls
|
syscalls
|
||||||
select
|
; select
|
||||||
fname
|
fname
|
||||||
stringcoll
|
stringcoll
|
||||||
scsh-condition
|
scsh-condition
|
||||||
|
|
Loading…
Reference in New Issue