You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Bob Cunnings <cu...@whitemesa.com> on 2003/05/17 04:59:44 UTC

mod_dav_svn VC project

Hi,

I checked out the latest (5957) today, set up for a windows build (on Win2K
SP3) the usual way, and all went smoothly. Once done, I noticed that
mod_dav_svn hadn't been built, as there was no such project generated when
gen-make.py was run. I only had to recycle the .dsp generated for a previous
effort, and was able to build mod_dav_svn as usual. I don't see anything
obvious in the .py files or my setup here. Has anyone else run into this? If
not I'll keep digging.

RC




---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: mod_dav_svn VC project

Posted by Branko Čibej <br...@xbc.nu>.
Bob Cunnings wrote:

>Hi,
>
>I checked out the latest (5957) today, set up for a windows build (on Win2K
>SP3) the usual way, and all went smoothly. Once done, I noticed that
>mod_dav_svn hadn't been built, as there was no such project generated when
>gen-make.py was run. I only had to recycle the .dsp generated for a previous
>effort, and was able to build mod_dav_svn as usual. I don't see anything
>obvious in the .py files or my setup here. Has anyone else run into this? If
>not I'll keep digging.
>  
>
Sigh. Here's what I'm about to commit:

Index: gen-make.py
===================================================================
--- gen-make.py	(revision 5955)
+++ gen-make.py	(working copy)
@@ -52,15 +52,19 @@
 
 def _usage_exit():
   "print usage, exit the script"
-  print "USAGE:  gen-make.py [-s] [-t TYPE] [conf-file]"
-  print "  -s  skip dependency generation"
-  print "  -t  use the TYPE generator; can be one of:"
+  print "USAGE:  gen-make.py [options...] [conf-file]"
+  print "  -s       skip dependency generation"
+  print "  -t TYPE  use the TYPE generator; can be one of:"
   items = gen_modules.items()
   items.sort()
   for name, (module, desc) in items:
-    print '      %-12s  %s' % (name, desc)
+    print '           %-12s  %s' % (name, desc)
   print
-  print "      The default generator type is 'make'"
+  print "           The default generator type is 'make'"
+  print
+  print "  --with-httpd=DIR              [Windows]"
+  print "           the (compiled) httpd sources required"
+  print "           for building mod_dav_svn are in DIR."
   sys.exit(0)
 
 if __name__ == '__main__':




-- 
Brane Čibej   <br...@xbc.nu>   http://www.xbc.nu/brane/


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org