From: David L. <dav...@cs...> - 2000-07-27 16:16:19
|
okay, finally moved everything around. I recommend using the -dP flags for cvs update when you next sync your trees. i stuck an ldap.py in Lib, but that will go when fog is ready to move ldaplib/ldap to Lib/ldap also made a few misc changes to configure.. remember, you have to run autoheader before autoconf. d -- David Leonard Dav...@cs... Dept of Comp. Sci. and Elec. Engg _ Room:78-640 Ph:+61 7 336 51187 The University of Queensland |+| http://www.csee.uq.edu.au/~leonard/ QLD 4072 AUSTRALIA ~` '~ E2A24DC6446E5779D7AFC41AA04E6401 Curses! - Mojo Jojo |
From: Michael <mi...@st...> - 2000-07-27 18:23:37
|
David Leonard wrote: > > finally moved everything around. I recommend using the -dP flags for > cvs update when you next sync your trees. I did a complete checkout and it seems that all the old dirs are still there. I'm not a CVS expert but "remove" should do it after deleting them in your local dir. I tried a build by going into python-ldap/python-ldap/ and typed "autoheader", "autoconf" and "configure --prefix=/usr". The build failed with: gcc -fpic -DLDAP_REFERRALS -O2 -m486 -I/usr/include/python1.5 -I/usr/include/python1.5 -DHAVE_CONFIG_H -c ./linkedlist.c ./linkedlist.c:106: `objobjproc' undeclared here (not in a function) ./linkedlist.c:106: warning: excess elements in struct initializer ./linkedlist.c:106: warning: (near initialization for `default_methods') ./linkedlist.c:106: parse error before `0' make[1]: *** [linkedlist.o] Error 1 make[1]: Leaving directory `/home/michael/temp/python-ldap/python-ldap/Modules' make: *** [all] Error 2 Ciao, Michael. |
From: David L. <dav...@cs...> - 2000-07-27 22:26:08
|
On Thu, 27 Jul 2000, Michael Ströder typed thusly: > > finally moved everything around. I recommend using the -dP flags for > > cvs update when you next sync your trees. > > I did a complete checkout and it seems that all the old dirs are > still there. I'm not a CVS expert but "remove" should do it after > deleting them in your local dir. I tend to use 'cvs up -PAd' which deletes empty directories.. maybe there are leftover non-cvs files in ldapmodule/ ? you have to remove those by hand. or just 'rm -rf ldapmodule'.. :) > I tried a build by going into python-ldap/python-ldap/ and typed > "autoheader", "autoconf" and "configure --prefix=/usr". there's also 'autoreconf' i remember now: it does autoheader and autoconf for you! > The build failed with: > gcc -fpic -DLDAP_REFERRALS -O2 -m486 -I/usr/include/python1.5 > -I/usr/include/python1.5 -DHAVE_CONFIG_H -c ./linkedlist.c > ./linkedlist.c:106: `objobjproc' undeclared here (not in a function) > ./linkedlist.c:106: warning: excess elements in struct initializer > ./linkedlist.c:106: warning: (near initialization for > `default_methods') > ./linkedlist.c:106: parse error before `0' > make[1]: *** [linkedlist.o] Error 1 > make[1]: Leaving directory > `/home/michael/temp/python-ldap/python-ldap/Modules' > make: *** [all] Error 2 oops, I've been building with Python 1.6a2 .. -- David Leonard Dav...@cs... Dept of Comp. Sci. and Elec. Engg _ Room:78-640 Ph:+61 7 336 51187 The University of Queensland |+| http://www.csee.uq.edu.au/~leonard/ QLD 4072 AUSTRALIA ~` '~ E2A24DC6446E5779D7AFC41AA04E6401 |
From: David L. <dav...@cs...> - 2000-07-28 13:14:20
|
On Fri, 28 Jul 2000, David Leonard typed thusly: > > The build failed with: > > ./linkedlist.c:106: `objobjproc' undeclared here (not in a function) > oops, I've been building with Python 1.6a2 .. i've committed a fix (i think). if it still breaks under 1.5 pls tell me. -- David Leonard Dav...@cs... Dept of Comp. Sci. and Elec. Engg _ Room:78-640 Ph:+61 7 336 51187 The University of Queensland |+| http://www.csee.uq.edu.au/~leonard/ QLD 4072 AUSTRALIA ~` '~ E2A24DC6446E5779D7AFC41AA04E6401 Curses! - Mojo Jojo |
From: Michael <mi...@st...> - 2000-07-28 23:53:53
|
David Leonard wrote: > > I tend to use 'cvs up -PAd' which deletes empty directories.. I tend to use it like a beginner starting from description on http://sourceforge.net/cvs/?group_id=2072 Also http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/?cvsroot=python-ldap should look tidy after the directory clean-up. If you have problems with removing directories completely it's better to contact the SourceForge support at http://sourceforge.net/staff.php. Ciao, Michael. |