Re: [AD] CVS tree freeze and 4.1.16 WIP

[ Thread Index | Date Index | More lists.liballeg.org/allegro-developers Archives ]


Elias Pschernig wrote:
The .tar.gz is missing the docs/scite directory.
the .zip also

otherwise it looks working under mingw 3.3.1 and msvc 7.1 with exception of makedevh.c which was now not c89 compliant. attached patch fixes that

--
Regards,
    Michal
--- makedevh.c	2004-10-03 14:04:02.000000000 +0200
+++ makedevh2.c	2004-10-03 17:22:52.423606400 +0200
@@ -112,10 +112,12 @@
 {
    char str[256];
    char *path;
+   FILE *file;
+   
    sprintf(str, "chapter%i.html", num);
    path = m_replace_filename (filename, str);
    printf("Writing %s.\n", path);
-   FILE *file = fopen(path, "w");
+   file = fopen(path, "w");
    if (file) {
       /* Ideally, this would use Allegro's common HTML style and header
          and footer. */


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/