dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] pnet/ilgac .cvsignore, NONE, 1.1 Makefile.am, NONE


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] pnet/ilgac .cvsignore, NONE, 1.1 Makefile.am, NONE, 1.1 ilgac.c, NONE, 1.1
Date: Tue, 11 Nov 2003 00:37:11 +0000

Update of /cvsroot/dotgnu-pnet/pnet/ilgac
In directory subversions:/tmp/cvs-serv25176/ilgac

Added Files:
        .cvsignore Makefile.am ilgac.c 
Log Message:


Add the "ilgac" program; fix some error-handling bugs in the
file and directory support routines.


--- NEW FILE: Makefile.am ---
bin_PROGRAMS   = ilgac
#man_MANS       = ilgac.1
#EXTRA_DIST     = $(man_MANS)
ilgac_SOURCES  = ilgac.c
ilgac_LDADD    = ../image/libILImage.a ../support/libILSupport.a

AM_CFLAGS = -I$(top_srcdir)/include

--- NEW FILE: ilgac.c ---
/*
 * ilgac.c - Manage the Global Assembly Cache.
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
[...1132 lines suppressed...]
        char *directory;
        if(!addToDirectoryStack(cache, 1))
        {
                return 0;
        }
        while(directoryStackSize > 0)
        {
                directory = directoryStack[--directoryStackSize];
                if(!scanDirectory(directory, assembly, version,
                                                  
directoryDefaultLevel[directoryStackSize]))
                {
                        return 0;
                }
        }
        return 1;
}

#ifdef  __cplusplus
};
#endif

--- NEW FILE: .cvsignore ---
Makefile
Makefile.in
.deps
ilgac





reply via email to

[Prev in Thread] Current Thread [Next in Thread]