Re: CVS availability?
Mihai Ibanescu <[email protected]> Mon, 28 Oct 2002 21:23:50 -0500 (EST)
| Newsgroups | gmane.network.beep.roadrunner.general |
|---|---|
| Message-ID | <Pine.LNX.4.44.0210282114050.1724-200000@roadrunner.devel.redhat.com> |
On 28 Oct 2002, Jonas Borgström wrote: > Mihai Ibanescu <[email protected]> writes: > > > Hello, > > > > I am trying to check out stuff from CVS, and I get the following error: > > > > cvs [update aborted]: connect to rr.codefactory.se(212.32.187.7):2401 > > failed: Connection refused > > > > Am I doing something wrong, or is the CVS server turned off for public? > > > Oops, the cvs info page wasn't updated when the RoadRunner website was moved > to a new server. (the cvs info page is now updated and should be correct) > > The cvs server should be "cvs.codefactory.se" and _not_ "rr.codefactory.se". Jonas, Thanks for your answer. I am running into troubles while trying to compile pyrr. My configuration: Red Hat Linux 7.3, autoconf-2.13, automake-1.4p5, python-2.2 Basically I had to use the attached patch to compile pyrr. Is my system totally different than yours? For once, as far as I can tell autoheader and autoconf by default look for a `configure.in' file, not `configure.ac'. Is there a missing step in creating the configure.in file, that I missed? Also, what is the rationale for linking with -l$(PYTHON_VERSION)? I've never seen a /usr/lib/libpython2.2.so or something similar to that. Cheers, Misa
pyrr.patch
(text/plain, 2.3 KB)
Index: autogen.sh =================================================================== RCS file: /cvsrep/roadrunner/pyrr/autogen.sh,v retrieving revision 1.1 diff -u -r1.1 autogen.sh --- autogen.sh 27 Jun 2002 12:03:25 -0000 1.1 +++ autogen.sh 29 Oct 2002 02:21:10 -0000 @@ -20,9 +20,10 @@ echo; aclocal $ACLOCAL_FLAGS; -autoheader; +autoheader configure.ac > config.h.in automake --add-missing; -autoconf; +autoconf configure.ac > configure; +chmod 755 configure libtoolize; ./configure $@ --enable-maintainer-mode --enable-compile-warnings Index: rr/Makefile.am =================================================================== RCS file: /cvsrep/roadrunner/pyrr/rr/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- rr/Makefile.am 19 Jul 2002 07:31:54 -0000 1.2 +++ rr/Makefile.am 29 Oct 2002 02:21:10 -0000 @@ -16,7 +16,7 @@ pyrrmodule_la_SOURCES = rr.c rrmodule.c pychannel.c pyrrmodule_la_LDFLAGS = -avoid-version -module -export-symbols-regex initpyrr -L$(PYTHON_LIBDIR) -pyrrmodule_la_LIBADD = $(PYRR_LIBS) -l$(PYTHON_VERSION) +pyrrmodule_la_LIBADD = $(PYRR_LIBS) CLEANFILES = rr.c Index: sasl/Makefile.am =================================================================== RCS file: /cvsrep/roadrunner/pyrr/sasl/Makefile.am,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile.am --- sasl/Makefile.am 27 Jun 2002 11:55:55 -0000 1.1.1.1 +++ sasl/Makefile.am 29 Oct 2002 02:21:10 -0000 @@ -11,7 +11,7 @@ saslmodule_la_SOURCES = rrsasl.c saslmodule.c saslmodule_la_LDFLAGS = -avoid-version -module -export-symbols-regex initsasl -L$(PYTHON_LIBDIR) -saslmodule_la_LIBADD = $(PYRRSASL_LIBS) -l$(PYTHON_VERSION) +saslmodule_la_LIBADD = $(PYRRSASL_LIBS) CLEANFILES = rrsasl.c Index: tls/Makefile.am =================================================================== RCS file: /cvsrep/roadrunner/pyrr/tls/Makefile.am,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile.am --- tls/Makefile.am 27 Jun 2002 11:55:55 -0000 1.1.1.1 +++ tls/Makefile.am 29 Oct 2002 02:21:10 -0000 @@ -11,7 +11,7 @@ tlsmodule_la_SOURCES = rrtls.c tlsmodule.c tlsmodule_la_LDFLAGS = -avoid-version -module -export-symbols-regex inittls -L$(PYTHON_LIBDIR) -tlsmodule_la_LIBADD = $(PYRRTLS_LIBS) -l$(PYTHON_VERSION) +tlsmodule_la_LIBADD = $(PYRRTLS_LIBS) CLEANFILES = rrtls.c