(GUILE::parse_args): Recognize "-with-smobs" again, but don't do

any side effects.  This will go away again later, permananently.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@585 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Thien-Thi Nguyen 2000-07-20 20:03:07 +00:00
commit dff513fa24

View file

@ -82,6 +82,12 @@ GUILE::parse_args (int argc, char *argv[])
fputs (guile_usage, stderr);
SWIG_exit (0);
}
// Silent recognition (no side effects) of "-with-smobs" is here
// as a convenience to users. This will be removed after 1.3a4
// release. --ttn, 2000/07/20 13:01:07.
else if (strcmp (argv[i], "-with-smobs") == 0) {
Swig_mark_arg (i);
}
else if (strcmp (argv[i], "-prefix") == 0) {
if (argv[i + 1]) {
prefix = new char[strlen (argv[i + 1]) + 2];