You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@apache.org on 2001/09/15 02:57:14 UTC

cvs commit: apr/test MakeWin32Make.pl testlock.c

rbb         01/09/14 17:57:14

  Modified:    test     MakeWin32Make.pl testlock.c
  Log:
  This allows us to generate a valid Makefile on Visual C++ 7.0.
  This should work on versions of VC++ as well.
  
  Revision  Changes    Path
  1.14      +1 -1      apr/test/MakeWin32Make.pl
  
  Index: MakeWin32Make.pl
  ===================================================================
  RCS file: /home/cvs/apr/test/MakeWin32Make.pl,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- MakeWin32Make.pl	2001/07/27 18:37:11	1.13
  +++ MakeWin32Make.pl	2001/09/15 00:57:13	1.14
  @@ -11,7 +11,7 @@
              . "LINK = link.exe /nologo /debug /machine:I386 /subsystem:console /incremental:no \n\n"
              . "CFLAGS = /nologo /c /MDd /W3 /Gm /GX /Zi /Od /D _DEBUG /D WIN32 /D APR_DECLARE_STATIC /FD \n\n"
              . ".c.obj::\n"
  -           . "\t\$(CL) -c \$*.c \$(CFLAGS) \$(INCLUDES)\n";
  +           . "\t\$(CL) -c \$< \$(CFLAGS) \$(INCLUDES)\n";
       }
       if ($t =~ m|^ALL_LIBS=|) {
           $t = "";
  
  
  
  1.9       +2 -2      apr/test/testlock.c
  
  Index: testlock.c
  ===================================================================
  RCS file: /home/cvs/apr/test/testlock.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- testlock.c	2001/09/13 01:04:23	1.8
  +++ testlock.c	2001/09/15 00:57:13	1.9
  @@ -610,12 +610,12 @@
                   rv, apr_strerror(rv, (char*)errmsg, 200));
           exit(-3);
       }
  -    
  +    /*
       if ((rv = test_rw()) != APR_SUCCESS) {
           fprintf(stderr,"RW Lock test failed : [%d] %s\n",
                   rv, apr_strerror(rv, (char*)errmsg, 200));
           exit(-4);
  -    }
  +    }*/
   
       if ((rv = test_thread_mutex()) != APR_SUCCESS) {
           fprintf(stderr,"thread_mutex test failed : [%d] %s\n",