You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Dean Gaudet <dg...@arctic.org> on 1997/07/21 21:49:58 UTC

Re: cvs commit: apache/src dummy.c

What???  Apache/Windows doesn't use Configure, so it doesn't use TestLib,
so it doesn't use dummy.c?  either that or we need another dummy.c.  This
does not work for unix because a program that consists entirely of
"dummy.c" does not have a main() and hence fails linking, and hence is
useless for testing the existance of a library.

Ah I see, I thought dummy.c was added for TestLib.  It wasn't.  Committing
a fix now.

Dean

On Mon, 21 Jul 1997, Alexei Kosut wrote:

> akosut      97/07/21 11:57:18
> 
>   Modified:    src       dummy.c
>   Log:
>   Make Apache/Windows work again. Dean's recent change broke it.
>   
>   Revision  Changes    Path
>   1.3       +1 -1      apache/src/dummy.c
>   
>   Index: dummy.c
>   ===================================================================
>   RCS file: /export/home/cvs/apache/src/dummy.c,v
>   retrieving revision 1.2
>   retrieving revision 1.3
>   diff -C3 -r1.2 -r1.3
>   *** dummy.c	1997/07/21 03:37:49	1.2
>   --- dummy.c	1997/07/21 18:57:17	1.3
>   ***************
>   *** 1,3 ****
>   ! void main()
>         {
>         }
>   --- 1,3 ----
>   ! void dummy()
>         {
>         }
>   
>   
>   
>