André Hentschel : winegcc: Add detection for --param options.

Alexandre Julliard julliard at winehq.org
Wed Jun 16 13:23:21 CDT 2010


Module: wine
Branch: master
Commit: 7d7562d7394c55ac0bc472890e1d5f092e47fba2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7d7562d7394c55ac0bc472890e1d5f092e47fba2

Author: André Hentschel <nerv at dawncrow.de>
Date:   Tue Jun 15 21:30:01 2010 +0200

winegcc: Add detection for --param options.

---

 tools/winegcc/winegcc.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c
index fd31060..40f44c3 100644
--- a/tools/winegcc/winegcc.c
+++ b/tools/winegcc/winegcc.c
@@ -1189,6 +1189,10 @@ int main(int argc, char **argv)
 		    if (strcmp("-framework", argv[i]) == 0)
 			next_is_arg = 1;
 		    break;
+		case '-':
+		    if (strcmp("--param", argv[i]) == 0)
+			next_is_arg = 1;
+		    break;
 	    }
 	    if (next_is_arg) option_arg = argv[i+1];
 




More information about the wine-cvs mailing list