Added project configuration files for MSVC 2010 32/64bit.

This commit is contained in:
Takahiro Itagaki
2011-01-25 06:41:12 +00:00
parent 232c9bb6c9
commit 8ec3a085ad
8 changed files with 814 additions and 12 deletions

View File

@ -626,9 +626,14 @@ pgut_getopt(int argc, char **argv, pgut_option options[])
}
if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
{
fprintf(stderr, "%s %s\n", PROGRAM_NAME, PROGRAM_VERSION);
printf("%s %s\n", PROGRAM_NAME, PROGRAM_VERSION);
exit(1);
}
if (strcmp(argv[1], "--configuration") == 0)
{
printf("%s\n", PG_VERSION_STR);
exit(0);
}
}
/* Merge default and user options. */