Re: [Wireshark-dev] Trouble building wireshark: unrecognized command

2007-12-13 Thread Diaconou, Alex
eems to be ok. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Diaconou, Alex Sent: Thursday, December 13, 2007 12:18 PM To: Developer support list for Wireshark Subject: Re: [Wireshark-dev] Trouble building wireshark: unrecognized command I

Re: [Wireshark-dev] Trouble building wireshark: unrecognized command

2007-12-13 Thread Diaconou, Alex
). From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pascal Heude Sent: Thursday, December 13, 2007 11:50 AM To: wireshark-dev@wireshark.org Subject: Re: [Wireshark-dev] Trouble building wireshark: unrecognized command Hi, The problem you have comes from the

[Wireshark-dev] Trouble building wireshark: unrecognized command

2007-12-13 Thread Diaconou, Alex
Hi, I am currently trying to build wireshark using VC++ 2005 EE on Windows XP. I was able to do it on my own machine, but I had to move it over to an offline machine to do some development. I cannot run nmake setup since the system is offline, so I just copied the win32-lib folder from own su

Re: [Wireshark-dev] Trouble building wireshark: unrecognized command

2007-12-13 Thread Pascal Heude
Hi, The problem you have comes from the command line which calls the sed unix command. The option "-3" does not exist for sed. You may replace -3 by -e. I would also add double quote character (") after the first -e option, like this : sed -e "s/@VERSION@/0.3.1/" -e "s/@HAVE_LIBZ@/#define HAVE_

[Wireshark-dev] Trouble building wireshark: unrecognized command

2007-12-13 Thread Diaconou, Alex
From: Diaconou, Alex Sent: Thursday, December 13, 2007 10:33 AM To: 'wireshark-dev@wireshark.org' Subject: Trouble building wireshark: unrecognized command Hi, I am currently trying to build wireshark using VC++ 2005 EE on Windows XP. I was able to