public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Qestion about Bash Fork Resource Temporily Unavailable More
@ 2005-07-01  9:27 Question NS
  2005-07-01 15:51 ` Larry Hall
  0 siblings, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-01  9:27 UTC (permalink / raw)
  To: twall, cygwin

[-- Attachment #1: Type: text/plain, Size: 3029 bytes --]

Dear Cygwin and Ns-2:

I always suffered "Bash Fork Resource Temporily
Unavailable More" while I tried to install Ns-2.27 in
Cygwin, it shows below, I have attached makefile of
TCLCL-1.15. However, while I installed Ns2.27 in
Cygwin in April 2004, everything went very well, and I
never had problem until this time I reinstall cygwin
again.

============================================================
* Build Tclcl-1.15
============================================================
No .configure file found in current directory
Continuing with default options...
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking for gcc... gcc
checking for C compiler default output... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for executable suffix... .exe
checking for object suffix... o
checking whether we are using the GNU C compiler...
yes
checking whether gcc accepts -g... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler...
yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for string.h... yes
checking for main in -lXbsd... no
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... no
checking for dcgettext in -lintl... yes
checking for getnodebyname in -ldnet_stub... no
checking that g++ can handle -O2... no
checking standard STL is available... no
checking for ranlib... ranlib
checking for snprintf... yes
checking for ANSI C header files... (cached) yes
checking for strtoq... no
checking for strtoll... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... (cached) yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for long... yes
checking size of long... 4
checking for __int64_t... no
checking for long long... yes
checking for int64_t... no
checking which kind of 64-bit int to use... long long
C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
set - 0x0<0x0>, Win32 error
1450
C:\CYGWIN\bin\sh.exe (62896): *** thread handle not
set - 0x0<0x0>, Win32 error
1450
C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
set - 0x0<0x0>, Win32 error
1450
C:\CYGWIN\bin\sh.exe (62916): *** WFSO timed out after
longjmp
Signal 1
./configure: Cannot fork: Resource temporarily
unavailable
./configure: Cannot fork: Resource temporarily
unavailable
./configure: Cannot fork: Resource temporarily
unavailable
./configure: Cannot fork: Resource temporarily
unavailable
tclcl-1.15 configuration failed! Exiting
..../configure: Cannot fork: Resource t
emporarily unavailable

Your help is appreciated!

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

[-- Attachment #2: 2325580809-Makefile.in --]
[-- Type: application/octet-stream, Size: 6903 bytes --]

#
# Copyright (c) 1993-1994 The Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
#    must display the following acknowledgement:
#	This product includes software developed by the University of
#	California, Berkeley and the Network Research Group at
#	Lawrence Berkeley Laboratory.
# 4. Neither the name of the University nor of the Laboratory may be used
#    to endorse or promote products derived from this software without
#    specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# @(#) $Header: /cvsroot/otcl-tclcl/tclcl/Makefile.in,v 1.46 2003/07/29 18:15:09 xuanc Exp $ (LBL)
#

BLANK	= # make a blank space.  DO NOT add anything to this line

# The following will be redefined under Windows (see WIN32 lable below)
CC	= @CC@
CPP	= @CXX@
LINK	= $(CPP)
MKDEP	= ./conf/mkdep
TCLSH	= @V_TCLSH@
TCL2C	= ./tcl2c++
AR	= ar rc $(BLANK)

RANLIB	= @RANLIB@
INSTALL	= @INSTALL@
LN	= ln
TEST	= test
RM	= rm -f
PERL	= perl


CCOPT	= @V_CCOPT@
STATIC	= @V_STATIC@
LDFLAGS	= $(STATIC)
LDOUT	= -o $(BLANK)

DEFINE	= -DNO_TK @V_DEFINE@ @V_DEFINES@ @DEFS@

INCLUDES = \
	-I. @V_INCLUDES@

LIB	= \
	@V_LIBS@

CFLAGS	= $(CCOPT) $(DEFINE)

# Explicitly define compilation rules since SunOS 4's make doesn't like gcc.
# Also, gcc does not remove the .o before forking 'as', which can be a
# problem if you don't own the file but can write to the directory.
.SUFFIXES: .cc	# $(.SUFFIXES)

.cc.o:
	@rm -f $@
	$(CPP) -c $(CFLAGS) $(INCLUDES) -o $@ $*.cc

.c.o:
	@rm -f $@
	$(CC) -c $(CFLAGS) $(INCLUDES) -o $@ $*.c


GEN_DIR	= gen/
LIB_TCLCL = @V_ALL@
LIBRARY_TK = @V_LIBRARY_TK@
LIBRARY_TCL = @V_LIBRARY_TCL@


TCL_76_LIBRARY_FILES = \
	$(LIBRARY_TCL)/init.tcl
TCL_BASE_LIBRARY_FILES= \
	$(LIBRARY_TCL)/init.tcl \
	$(LIBRARY_TCL)/history.tcl \
	$(LIBRARY_TCL)/word.tcl
TCL_80_LIBRARY_FILES = \
	$(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.0/http.tcl
TCL_81_LIBRARY_FILES = $(TCL_80_LIBRARY_FILES)
TCL_82_LIBRARY_FILES = \
	$(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.1/http.tcl
TCL_83_LIBRARY_FILES = \
	$(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.3/http.tcl
TCL_84_LIBRARY_FILES = \
        $(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.4/http.tcl

TCL_LIBRARY_FILES = \
	@V_TCL_LIBRARY_FILES@

#TKDOSNAMES = \
#	$(LIBRARY_TK)/optionMenu.tcl \
#	$(LIBRARY_TK)/scrollbar.tcl
TKDOSNAMES = @V_TKDOSNAMES@

OBJ_COMPAT_C = 

# WIN32: uncomment the following line to be use with vc++ nmake
# !include <conf/makefile.win>

TK_LIBRARY_FILES = \
		$(TCL_LIBRARY_FILES) \
		$(LIBRARY_TK)/tk.tcl \
		$(LIBRARY_TK)/clrpick.tcl \
		$(LIBRARY_TK)/comdlg.tcl \
		$(LIBRARY_TK)/button.tcl \
		$(LIBRARY_TK)/dialog.tcl \
		$(LIBRARY_TK)/entry.tcl \
		$(LIBRARY_TK)/focus.tcl \
		$(LIBRARY_TK)/listbox.tcl \
		$(LIBRARY_TK)/menu.tcl \
		$(LIBRARY_TK)/palette.tcl \
		$(LIBRARY_TK)/scale.tcl \
		$(LIBRARY_TK)/tearoff.tcl \
		$(LIBRARY_TK)/text.tcl \
		$(LIBRARY_TK)/tkfbox.tcl \
		$(LIBRARY_TK)/msgbox.tcl \
		$(TKDOSNAMES)

CONSOLE_FILES = $(LIBRARY_TK)/console.tcl

OBJ_CC = Tcl.o Tcl2.o idlecallback.o iohandler.o timer.o rate-variable.o \
	tracedvar.o \
	embedded-tcl.o embedded-tk.o embedded-tclobj.o $(OBJ_COMPAT_CC)

SRC =	$(OBJ_CC:.o=.cc) $(OBJ_COMPAT_C:.o=.c)

all:	$(TCL2C) $(LIB_TCLCL)

$(TCL2C): tcl2c++.o
	$(RM) $@
	$(LINK) $(STATIC) $(LDFLAGS) $(LDOUT)$@ tcl2c++.o

# We used to link to libTcl.a for backwards compatibilty, but no more.
$(LIB_TCLCL): $(OBJ_CC) $(OBJ_COMPAT_C)
	$(RM) $@
	$(AR)$@ $(OBJ_CC) $(OBJ_COMPAT_C)
	$(RANLIB) $@

#
# pass-1 embedded tcl files
#
embedded-tcl.cc: $(TCL_LIBRARY_FILES) $(TCL2C)
	$(RM) $@
	$(TCL2C) et_tcl $(TCL_LIBRARY_FILES) > $@

embedded-tk.cc: $(TK_LIBRARY_FILES) $(TCL2C)
	$(RM) $@
	$(TCL2C) et_tk $(TK_LIBRARY_FILES) > $@

embedded-tclobj.cc: tcl-object.tcl tcl-import.tcl tcl-http.tcl $(TCL2C)
	$(RM) $@
	$(TCL2C) et_tclobject tcl-object.tcl tcl-import.tcl tcl-http.tcl > $@

#
# pass-1 console tcl files
#
embedded-console.cc: $(CONSOLE_FILES) $(TCL2C)
	$(RM) embedded-console.o
	$(TCL2C) et_console $(CONSOLE_FILES) > embedded-console.cc

install: force
	$(INSTALL) *.h @prefix@/include
	$(INSTALL) tcl2c++ @prefix@/bin
	$(INSTALL) $(LIB_TCLCL) @prefix@/lib

# libTcl is no longer installed as of 13-Nov-99
#	-test -f @prefix@/lib/libTcl.a && rm -f @prefix@/lib/libTcl.a || true
#	ln -s @prefix@/lib/libtclcl.a @prefix@/lib/libTcl.a

clean:
	$(RM) $(LIB_TCLCL) $(TCL2C) *.o config.log config.cache \
	embedded-tk.cc embedded-tclobj.cc embedded-tcl.cc

realclean:
	$(MAKE) clean
	rm -f Makefile config.log config.cache config.status

distclean: realclean

tags:	force
	ctags -tdwC $(SRC) *.h $(TKSRC)/*.c $(TKSRC)/*.h \
		$(TCLSRC)/*.c $(TCLSRC)/*.h

force:

depend:
	$(MKDEP) $(INCLUDES) $(DEFINE) $(SRC)

tar:	force
	tar=tclcl-`cat VERSION`-@V_TAR_TARGET@.tar.gz ; \
	rm -f $$tar ; \
	@V_TARCMD@ - README CHANGES.html @V_TAR_EXTRA@ $(ALL) | \
		gzip -c > $$tar

srctar: force
	@cwd=`pwd` ; dir=`basename $$cwd` ; \
	    name=tclcl-`cat VERSION | tr A-Z a-z` ; \
	    tar=tclcl-src-`cat VERSION`.tar.gz ; \
	    list="" ; \
	    for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \
	    echo \
	    "(rm -f $$tar; cd .. ; ln -s $$dir $$name)" ; \
	     (rm -f $$tar; cd .. ; ln -s $$dir $$name) ; \
	    echo \
	    "(cd .. ; tar cfh $$tar [lots of files])" ; \
	     (cd .. ; tar cfh - $$list) | gzip -c > $$tar ; \
	    echo \
	    "rm ../$$name; chmod 444 $$tar" ;  \
	     rm ../$$name; chmod 444 $$tar

# Create makefile.vc for Win32 development by replacing:
# "# !include ..." 	-> 	"!include ..."
makefile.vc:	Makefile.in
	$(PERL) -pe 's/^# (\!include)/\!include/o' < Makefile.in > makefile.vc

[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2005-07-08 14:12 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-01  9:27 Qestion about Bash Fork Resource Temporily Unavailable More Question NS
2005-07-01 15:51 ` Larry Hall
2005-07-01 19:07   ` Question NS
2005-07-01 20:47   ` Qestion about Bash Fork Resource Temporily Unavailable for NS2.28 and NS2.27 Question NS
2005-07-01 20:58     ` Brian Dessent
2005-07-03  3:56     ` Larry Hall
2005-07-03  3:59       ` daemon
2005-07-03  7:12       ` Question NS
2005-07-03 23:11         ` Larry Hall
2005-07-04  3:15           ` Question NS
2005-07-04 17:32             ` Larry Hall
2005-07-05  6:06               ` Question NS
2005-07-06  2:55                 ` Larry Hall
2005-07-06  6:28                   ` Question NS
2005-07-06 15:27                     ` Larry Hall
2005-07-08  3:29                       ` Yitzchak Scott-Thoennes
2005-07-08 14:12                         ` Larry Hall
2005-07-06 23:04                   ` Question NS
2005-07-07  2:48                     ` Larry Hall
2005-07-08  7:12                       ` Question NS
2005-07-08 13:54                         ` Larry Hall
2005-07-05  6:34               ` Question NS
2005-07-05  6:47               ` Question NS
2005-07-05  6:47               ` Question NS
2005-07-04  5:34           ` Yitzchak Scott-Thoennes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).