Huang Bambo schrieb:
The cygwin 1.7 don't need “server” tag in CYGWIN environment but the
start up of postgresql 8.2.11 checked this tag.
code:
131 check_cygserver() {
132 # Check for running cygserver processes first.
133 if ps -ef | grep -v grep | grep -q cygserver
134 then
135 echo -n "- cygserver OK - "
136 # echo "OK cygserver running"
137 else
138 echo "ERROR cygserver must be started"
139 echo cygrunsrv -S cygserver
140 exit 1
141 fi
142 # check for CYGWIN containing server
143 if [ -n "${CYGWIN%server}" ]
144 then
145 echo "ERROR CYGWIN must contain server for cygserver to work properly"
146 exit 1
147 fi
148 }
149
from 142 to 147 is not needed in cygwin 1.7
Thanks for the heads up.
This package is still from 1.5.
--
Reini Urban
http://phpwiki.org/ http://murbreak.at/
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple