Ethereal-dev: RE: [Ethereal-dev] Ethereal package compile error
Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.
From: "Hu, Guangping" <Guangping.Hu@xxxxxx>
Date: Thu, 10 Apr 2003 13:22:23 -0400
Martin, Thanks, I fixed that, but I got another error msg, any clue? Error: C:\temp\ethereal-0.9.9\packaging\nsis>nmake -f Makefile.nmake Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. "C:/program files/nsis/makensis.exe" /DVERSION=0.9.9 /DWTAP_VERSION=0.0 /DCOMMON_FILES_GNU="c:\program files\common files\gnu" ethereal.nsi MakeNSIS v2.0b3 - Copyright 1999-2003 Nullsoft, Inc. Portions Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler (zlib). Includes portions derived from bzip2 (see documentation for details). Contributors: nnop@xxxxxxxxxx, Ryan Geiss, Andras Varga, Drew Davidson, Peter Wi ndridge, Dave Laundon, Robert Rainwater, Yaroslav Faybishenko, Jeff Doozan, Amir Szekely, Ximon Eighteen, et al. Command line defined: "VERSION=0.9.9" Command line defined: "WTAP_VERSION=0.0" Command line defined: "COMMON_FILES_GNU=c:\program files\common files\gnu" Processing config: Changing directory to: "C:\temp\ethereal-0.9.9\packaging\nsis" Processing plugin dlls: "C:\program files\nsis\plugins\*.dll" - advsplash::show - Banner::destroy - Banner::show - BgImage::Destroy - BgImage::Init - BgImage::SetImage - BgImage::Sound - Dialer::AttemptConnect - Dialer::AutodialHangup - Dialer::AutodialOnline - Dialer::AutodialUnattended - Dialer::GetConnectedState - InstallOptions::dialog - InstallOptions::initDialog - InstallOptions::show - LangDLL::LangDialog - nsExec::Exec - nsExec::ExecToLog - nsExec::ExecToStack - nsisdl::download - nsisdl::download_quiet - splash::show - StartMenu::Select - System::Alloc - System::Call - System::Copy - System::Free - System::Get - System::Int64Op - System::Store - UserInfo::GetAccountType - UserInfo::GetName Processing script file: "ethereal.nsi" Name: "Ethereal" OutFile: "ethereal-setup-0.9.9.exe" Icon: "..\..\image\ethereal.ico" UninstallText: "This will uninstall Ethereal. Hit 'Next' to continue." "" LicenseText: "Ethereal is distributed under the GNU General Public License." "" LicenseData: "GPL.txt" ComponentText: "The following components are available for installation." "" "" Invalid command: EnabledBitmap Error in script "ethereal.nsi" on line 33 -- aborting creation process NMAKE : fatal error U1077: '"C:/program files/nsis/makensis.exe"' : return code '0x1' Stop. -----Original Message----- From: Martin Regner [mailto:martin.regner@xxxxxxxxx] Sent: Thursday, April 10, 2003 1:15 PM To: Hu, Guangping Subject: RE: [Ethereal-dev] Ethereal package compile error Hi, There is a space between "common" and "files" in "common files" so I guess that you should try to replece COMMON_FILES_GNU=c:\program files\common files\gnu with COMMON_FILES_GNU="c:\program files\common files\gnu" or maybe rename the directory from "common files" to "common_files" and change it to: COMMON_FILES_GNU=c:\program files\common_files\gnu -----Original Message----- From: Hu, Guangping <Guangping.Hu@xxxxxx> To: ethereal-dev@xxxxxxxxxxxx <ethereal-dev@xxxxxxxxxxxx> Date: Thursday, April 10, 2003 7:11 PM Subject: [Ethereal-dev] Ethereal package compile error All, Can anyone help me to figure out the following error message when I do Ethereal package compile? Error : C:\temp\ethereal-0.9.9\packaging\nsis> C:\temp\ethereal-0.9.9\packaging\nsis>nmake -f Makefile.nmake Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. "C:/program files/nsis/makensis.exe" /DVERSION=0.9.9 /DWTAP_VERSION=0.0 /DCOMMON_FILES_GNU=c:\program files\common files\gnu ethereal.nsi MakeNSIS v2.0b3 - Copyright 1999-2003 Nullsoft, Inc. Portions Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler (zlib). Includes portions derived from bzip2 (see documentation for details). Contributors: nnop@xxxxxxxxxx, Ryan Geiss, Andras Varga, Drew Davidson, Peter Wi ndridge, Dave Laundon, Robert Rainwater, Yaroslav Faybishenko, Jeff Doozan, Amir Szekely, Ximon Eighteen, et al. Command line defined: "VERSION=0.9.9" Command line defined: "WTAP_VERSION=0.0" Command line defined: "COMMON_FILES_GNU=c:\program" Processing config: Can't open script "files\common" NMAKE : fatal error U1077: '"C:/program files/nsis/makensis.exe"' : return code '0x1' Stop. ---------------------------------- Here is my configure file ------------------------- # $Id: config.nmake,v 1.34 2003/01/21 02:12:16 gerald Exp $ VERSION=0.9.9 RC_VERSION=0.9.9 WTAP_VERSION=0.0 GTK_VERSION=1.3 GLIB_VERSION=1.3 GLIB_DIR=C:\temp\ethereal-0.9.9\src\glib GTK_DIR=C:\temp\ethereal-0.9.9\src\gtk+ ZLIB_DIR=C:\temp\ethereal-0.9.9\src\zlib-114 PCAP_DIR=C:\temp\ethereal-0.9.9\WPdpack NET_SNMP_DIR=C:\temp\ethereal-0.9.9\net-snmp-5.0.6 COMMON_FILES_GNU=c:\program files\common files\gnu LOCAL_CFLAGS=-Zi LOCAL_LDFLAGS=/DEBUG # Set PDB_FILE according to your VC++ version PDB_FILE=vc*.pdb # Set path if you need to find some binary PATH=c:\cygnus\cygwin-b20\H-i586-cygwin32\bin;c:\python22;c:\ethereal\wiretap;C:\temp\ethereal-0.9.9\usr\local\wbin;c:\program files\common files\gnu;$(PATH) SH=bash PERL=perl POD2MAN=pod2man POD2HTML=pod2html #comment out by gphu #PYTHON="C:/python22/python.exe" LEX=flex YACC=bison # Set YACC_OPTS if cygnus bison can't find template file. #YACC_OPTS=-S t:\w32-ix86\cygnus\cygwin-b20\share\bison.simple #YACC_OPTS=C:\temp\ethereal-0.9.9\usr\local\share # To build the installer MAKENSIS="C:/program files/nsis/makensis.exe"
- Prev by Date: [Ethereal-dev] Ethereal package compile error
- Next by Date: [Ethereal-dev] patch to support the Chinese ITU SS7 variant
- Previous by thread: [Ethereal-dev] Ethereal package compile error
- Next by thread: Re: [Ethereal-dev] Ethereal package compile error
- Index(es):