[INFORMER]

* BUG: Specifying components as arguments now works on systems that do not
  have getopt_long().


git-svn-id: svn://localhost/gambas/trunk@2752 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2010-03-05 13:12:15 +00:00
parent c1dc30c5ca
commit 06a674e303

View file

@ -791,8 +791,7 @@ int main(int argc, char **argv)
}
else
{
#if HAVE_GETOPT_LONG
if (!getenv("GB_PRELOAD"))
if (!getenv("GB_PRELOAD"))
{
for (ind = optind; ind < argc; ind++)
{
@ -810,7 +809,6 @@ int main(int argc, char **argv)
//analyze(name, FALSE);
run_myself(argv[0], name);
}
#endif
}
}