/*	cvsnt build number generator
    Copyright (C) 2004-5 Tony Hoyle and March-Hare Software Ltd

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License version 2.1 as published by the Free Software Foundation.

    This library 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
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
// genbuild.cpp : Defines the entry point for the application.
//

#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#define STRICT
#include <windows.h>
#endif
#include <time.h>
#include <stdio.h>

// Increase this if two releases get sent out in the same day
#define BUILD_FROB 0

#ifdef _WIN32
int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPTSTR    lpCmdLine,
                     int       nCmdShow)
{
#else
int main(int argc, char **argv)
{
	const char *lpCmdLine = argv[1];
#endif

	time_t t = time(NULL);
	size_t daysin = 0;
	size_t days = t/(60*60*24);
	days -= (365*30);
	days += BUILD_FROB;

	FILE *f=fopen("c:\\forcebuild.txt","r");
	if(f)
	{
		fscanf(f,"%d",&days);
		printf("Forcing build to %d\n",days);
		fclose(f);
	}
	else
	{
		printf("Generated build number %d\n",days);
	}

	FILE *fh=fopen(lpCmdLine,"r");
	if (fh!=NULL)
	{
		fscanf(fh,"#define CVSNT_PRODUCT_BUILD %d\n",&daysin);
		fclose(fh);
	}
	if ((daysin!=days)||(f))
	{
#ifdef _DEBUG
		if ((!f)&&(daysin!=0))
		{
			printf("Not writing a new build number because it's a debug build\n");
		}
		else
		{
#endif
			fh=fopen(lpCmdLine,"w");
			fprintf(fh,"#define CVSNT_PRODUCT_BUILD %d\n",days);
			fclose(fh);
#ifdef _DEBUG
		}
#endif
	}
	else
		printf("Not modifying the file because it hasn't changed\n");

	return 0;
}



syntax highlighted by Code2HTML, v. 0.9.1