=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== eclipse-titan-7.1.1/common/NetworkHandler.cc-56- eclipse-titan-7.1.1/common/NetworkHandler.cc:57:HCNetworkHandler::HCNetworkHandler() : m_mc_addr(NULL), m_local_addr(NULL) { } eclipse-titan-7.1.1/common/NetworkHandler.cc-58- ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-64- eclipse-titan-7.1.1/common/NetworkHandler.cc:65:bool HCNetworkHandler::set_local_addr(const char *p_addr, unsigned short p_port) eclipse-titan-7.1.1/common/NetworkHandler.cc-66-{ ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-78- eclipse-titan-7.1.1/common/NetworkHandler.cc:79:bool HCNetworkHandler::set_mc_addr(const char *p_addr, unsigned short p_port) eclipse-titan-7.1.1/common/NetworkHandler.cc-80-{ ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-92- eclipse-titan-7.1.1/common/NetworkHandler.cc:93:int HCNetworkHandler::getsockname_local_addr(int p_sockfd) eclipse-titan-7.1.1/common/NetworkHandler.cc-94-{ ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-105- eclipse-titan-7.1.1/common/NetworkHandler.cc:106:int HCNetworkHandler::bind_local_addr(int p_sockfd) const eclipse-titan-7.1.1/common/NetworkHandler.cc-107-{ eclipse-titan-7.1.1/common/NetworkHandler.cc-108- m_local_addr->set_port(0); eclipse-titan-7.1.1/common/NetworkHandler.cc:109: return ::bind(p_sockfd, m_local_addr->get_addr(), m_local_addr->get_addr_len()); eclipse-titan-7.1.1/common/NetworkHandler.cc-110-} ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-119-{ eclipse-titan-7.1.1/common/NetworkHandler.cc:120: return ::connect(p_sockfd, CAST_AWAY_CONST_FOR_SOLARIS6 m_mc_addr->get_addr(), eclipse-titan-7.1.1/common/NetworkHandler.cc-121- m_mc_addr->get_addr_len()); ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-123- eclipse-titan-7.1.1/common/NetworkHandler.cc:124:IPAddress *IPAddress::create_addr(const NetworkFamily& p_family) eclipse-titan-7.1.1/common/NetworkHandler.cc-125-{ ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-137- eclipse-titan-7.1.1/common/NetworkHandler.cc:138:IPAddress *IPAddress::create_addr(const char *p_addr) eclipse-titan-7.1.1/common/NetworkHandler.cc-139-{ ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-161-{ eclipse-titan-7.1.1/common/NetworkHandler.cc:162: set_addr(p_addr, p_port); eclipse-titan-7.1.1/common/NetworkHandler.cc-163-} ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-175- IPv4Address addr; eclipse-titan-7.1.1/common/NetworkHandler.cc:176: return addr.set_addr(p_addr); eclipse-titan-7.1.1/common/NetworkHandler.cc-177- } ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-182- // Or: (ntohl(m_addr.sin_addr.s_addr) & 0xff000000u) == 0x7f000000u. eclipse-titan-7.1.1/common/NetworkHandler.cc:183: return m_addr.sin_addr.s_addr == inet_addr("127.0.0.1"); eclipse-titan-7.1.1/common/NetworkHandler.cc-184-} eclipse-titan-7.1.1/common/NetworkHandler.cc-185- eclipse-titan-7.1.1/common/NetworkHandler.cc:186:bool IPv4Address::set_addr(const char *p_addr, unsigned short p_port) eclipse-titan-7.1.1/common/NetworkHandler.cc-187-{ ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-212- struct hostent *hptr = eclipse-titan-7.1.1/common/NetworkHandler.cc:213: gethostbyaddr(reinterpret_cast<const char *>(&m_addr.sin_addr), eclipse-titan-7.1.1/common/NetworkHandler.cc-214- sizeof(m_addr.sin_addr), m_addr.sin_family); ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-231- struct hostent *hptr = eclipse-titan-7.1.1/common/NetworkHandler.cc:232: gethostbyaddr(reinterpret_cast<const char *>(&m_addr.sin_addr), eclipse-titan-7.1.1/common/NetworkHandler.cc-233- sizeof(m_addr.sin_addr), m_addr.sin_family); ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-295-{ eclipse-titan-7.1.1/common/NetworkHandler.cc:296: set_addr(p_addr, p_port); eclipse-titan-7.1.1/common/NetworkHandler.cc-297-} ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-313- eclipse-titan-7.1.1/common/NetworkHandler.cc:314:bool IPv6Address::set_addr(const char *p_addr, unsigned short p_port) eclipse-titan-7.1.1/common/NetworkHandler.cc-315-{ ############################################## eclipse-titan-7.1.1/common/NetworkHandler.cc-444- IPv6Address addr; eclipse-titan-7.1.1/common/NetworkHandler.cc:445: return addr.set_addr(p_addr); eclipse-titan-7.1.1/common/NetworkHandler.cc-446- } ############################################## eclipse-titan-7.1.1/common/NetworkHandler.hh-60- virtual ~IPAddress() = 0; eclipse-titan-7.1.1/common/NetworkHandler.hh:61: static IPAddress *create_addr(const NetworkFamily& p_family); eclipse-titan-7.1.1/common/NetworkHandler.hh:62: static IPAddress *create_addr(const char *p_addr); eclipse-titan-7.1.1/common/NetworkHandler.hh-63- // Always return something. ############################################## eclipse-titan-7.1.1/common/NetworkHandler.hh-78- virtual void set_port(unsigned short p_port) = 0; eclipse-titan-7.1.1/common/NetworkHandler.hh:79: virtual bool set_addr(const char *p_addr, unsigned short p_port = 0) = 0; eclipse-titan-7.1.1/common/NetworkHandler.hh:80: virtual const struct sockaddr *get_addr() const = 0; eclipse-titan-7.1.1/common/NetworkHandler.hh-81- virtual socklen_type get_addr_len() const = 0; ############################################## eclipse-titan-7.1.1/common/NetworkHandler.hh-103- inline void set_port(unsigned short p_port) { m_addr.sin_port = htons(p_port); } eclipse-titan-7.1.1/common/NetworkHandler.hh:104: bool set_addr(const char *p_addr, unsigned short p_port = 0); eclipse-titan-7.1.1/common/NetworkHandler.hh:105: inline const struct sockaddr *get_addr() const { return reinterpret_cast<const struct sockaddr *>(&m_addr); } eclipse-titan-7.1.1/common/NetworkHandler.hh-106- inline socklen_type get_addr_len() const { return sizeof(m_addr); } ############################################## eclipse-titan-7.1.1/common/NetworkHandler.hh-136- inline void set_port(unsigned short p_port) { m_addr.sin6_port = htons(p_port); } eclipse-titan-7.1.1/common/NetworkHandler.hh:137: bool set_addr(const char *p_addr, unsigned short p_port = 0); eclipse-titan-7.1.1/common/NetworkHandler.hh:138: inline const struct sockaddr *get_addr() const { return reinterpret_cast<const struct sockaddr *>(&m_addr); } eclipse-titan-7.1.1/common/NetworkHandler.hh-139- inline socklen_type get_addr_len() const { return sizeof(m_addr); } ############################################## eclipse-titan-7.1.1/common/NetworkHandler.hh-173- eclipse-titan-7.1.1/common/NetworkHandler.hh:174: bool set_local_addr(const char *p_addr, unsigned short p_port = 0 /* Any port. */); eclipse-titan-7.1.1/common/NetworkHandler.hh:175: bool set_mc_addr(const char *p_addr, unsigned short p_port = 0 /* Any port. */); eclipse-titan-7.1.1/common/NetworkHandler.hh:176: int getsockname_local_addr(int p_sockfd); eclipse-titan-7.1.1/common/NetworkHandler.hh:177: int bind_local_addr(int p_sockfd) const; eclipse-titan-7.1.1/common/NetworkHandler.hh-178- int connect_to_mc(int p_sockfd) const; ############################################## eclipse-titan-7.1.1/common/NetworkHandler.hh-182- inline const char *get_local_addr_str() const { return m_local_addr->get_addr_str(); } eclipse-titan-7.1.1/common/NetworkHandler.hh:183: inline IPAddress *get_mc_addr() const { return m_mc_addr; } eclipse-titan-7.1.1/common/NetworkHandler.hh:184: inline IPAddress *get_local_addr() const { return m_local_addr; } eclipse-titan-7.1.1/common/NetworkHandler.hh-185- inline unsigned short get_mc_port() const { return m_mc_addr->get_port(); } ############################################## eclipse-titan-7.1.1/compiler2/makefile.c-2265- "COMPILER_FLAGS =%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n\n" eclipse-titan-7.1.1/compiler2/makefile.c:2266: "# Execution mode: (either ttcn3 or ttcn3-parallel)\n" eclipse-titan-7.1.1/compiler2/makefile.c-2267- "TTCN3_LIB = ttcn3%s%s%s\n\n" ############################################## eclipse-titan-7.1.1/compiler2/makefile.c-4528- fputs(" $(OTHER_FILES) \\\n" eclipse-titan-7.1.1/compiler2/makefile.c:4529: "\t| gzip >$(ARCHIVE_DIR)/`basename $(TARGET) .exe`-" eclipse-titan-7.1.1/compiler2/makefile.c-4530- "`date '+%y%m%d-%H%M'`.tgz\n\n", fp); ############################################## eclipse-titan-7.1.1/compiler2/titanver-9-# Find Perl in the path eclipse-titan-7.1.1/compiler2/titanver:10:# Can't use `perl -e 'print $^X'` because that may print just "perl" eclipse-titan-7.1.1/compiler2/titanver-11-perlexe=`which perl 2>/dev/null | sed -n 's/[^\/]*\(\/.*perl\)/\1/p'` ############################################## eclipse-titan-7.1.1/compiler2/titanver-29- eclipse-titan-7.1.1/compiler2/titanver:30:if [ `echo "${GCCVER}" | wc -l` != 1 ]; then eclipse-titan-7.1.1/compiler2/titanver-31- echo -e "Error! Object files compiled with different compilers were detected: ############################################## eclipse-titan-7.1.1/conformance_test/core_language_tests/negative_tests/SAtester.pl-58-my $max_cycles = 6; eclipse-titan-7.1.1/conformance_test/core_language_tests/negative_tests/SAtester.pl:59:# Execution statistics eclipse-titan-7.1.1/conformance_test/core_language_tests/negative_tests/SAtester.pl-60-# Number of TCs: PASSED, FAILED, ERROR verdicts, ############################################## eclipse-titan-7.1.1/conformance_test/core_language_tests/negative_tests/SAtester.pl-829- sa_log("Location : $ENV{PWD}\n"); eclipse-titan-7.1.1/conformance_test/core_language_tests/negative_tests/SAtester.pl:830: sa_log( `$sa_compilerCmd -v 2>&1` . "\n"); eclipse-titan-7.1.1/conformance_test/core_language_tests/negative_tests/SAtester.pl-831- my $sa_nrOfTCs2Execute = scalar @sa_tcList2Execute; ############################################## eclipse-titan-7.1.1/conformance_test/xml_tests/negative_test/SAtester_XML.pl-58-my $max_cycles = 6; eclipse-titan-7.1.1/conformance_test/xml_tests/negative_test/SAtester_XML.pl:59:# Execution statistics eclipse-titan-7.1.1/conformance_test/xml_tests/negative_test/SAtester_XML.pl-60-# Number of TCs: PASSED, FAILED, ERROR verdicts, ############################################## eclipse-titan-7.1.1/conformance_test/xml_tests/negative_test/SAtester_XML.pl-873- sa_log("Location : $ENV{PWD}\n"); eclipse-titan-7.1.1/conformance_test/xml_tests/negative_test/SAtester_XML.pl:874: sa_log( `$sa_compilerCmd -v 2>&1` . "\n"); eclipse-titan-7.1.1/conformance_test/xml_tests/negative_test/SAtester_XML.pl-875- my $sa_nrOfTCs2Execute = scalar @sa_tcList2Execute; ############################################## eclipse-titan-7.1.1/core/Communication.cc-95- } eclipse-titan-7.1.1/core/Communication.cc:96: if (!hcnh.set_local_addr(host_name, 0)){ eclipse-titan-7.1.1/core/Communication.cc-97- fprintf(stderr,"Could not get the IP address for the local address " // There is no connection to the MC ############################################## eclipse-titan-7.1.1/core/Communication.cc-111- "local address has not been set."); eclipse-titan-7.1.1/core/Communication.cc:112: return hcnh.get_local_addr(); eclipse-titan-7.1.1/core/Communication.cc-113-} ############################################## eclipse-titan-7.1.1/core/Communication.cc-130- hcnh.set_family(host_name); eclipse-titan-7.1.1/core/Communication.cc:131: if (!hcnh.set_mc_addr(host_name, tcp_port)){ eclipse-titan-7.1.1/core/Communication.cc-132- fprintf(stderr,"Could not get the IP address of MC (%s): Host name lookup " ############################################## eclipse-titan-7.1.1/core/Communication.cc-136- } eclipse-titan-7.1.1/core/Communication.cc:137: if ((hcnh.get_mc_addr())->is_local()){ eclipse-titan-7.1.1/core/Communication.cc-138- fprintf(stderr,"The address of MC was set to a local IP address. This may " ############################################## eclipse-titan-7.1.1/core/Communication.cc-154- "address of MC has not been set."); eclipse-titan-7.1.1/core/Communication.cc:155: return hcnh.get_mc_addr(); eclipse-titan-7.1.1/core/Communication.cc-156-} ############################################## eclipse-titan-7.1.1/core/Communication.cc-171- // TODO: Disable if config file parameter is set eclipse-titan-7.1.1/core/Communication.cc:172: if ((hcnh.get_mc_addr())->is_local() eclipse-titan-7.1.1/core/Communication.cc:173: || (local_addr_set && *(hcnh.get_mc_addr()) == *(hcnh.get_local_addr()))) { eclipse-titan-7.1.1/core/Communication.cc-174- sockaddr_un localaddr_unix; ############################################## eclipse-titan-7.1.1/core/Communication.cc-210- if (local_addr_set) { eclipse-titan-7.1.1/core/Communication.cc:211: if (hcnh.bind_local_addr(mc_fd)) { eclipse-titan-7.1.1/core/Communication.cc-212- fprintf(stderr,"Binding IP address %s to the local endpoint of the " ############################################## eclipse-titan-7.1.1/core/Communication.cc-236- if (!local_addr_set) { eclipse-titan-7.1.1/core/Communication.cc:237: if (hcnh.getsockname_local_addr(mc_fd)) { eclipse-titan-7.1.1/core/Communication.cc-238- close(mc_fd); ############################################## eclipse-titan-7.1.1/core/Error.cc-235- eclipse-titan-7.1.1/core/Error.cc:236: if(dladdr(pc, & info) == 0) { eclipse-titan-7.1.1/core/Error.cc-237- func = "??"; ############################################## eclipse-titan-7.1.1/core/LegacyLogger.cc-767- TitanLoggerApi::ExecutorUnqualified const& ex = eec.executorMisc(); eclipse-titan-7.1.1/core/LegacyLogger.cc:768: const char *name = ex.name(), *ip_addr_str = ex.addr(); eclipse-titan-7.1.1/core/LegacyLogger.cc-769- switch (ex.reason()) { ############################################## eclipse-titan-7.1.1/core/LoggerPluginManager.cc-1120- ex.name() = name; eclipse-titan-7.1.1/core/LoggerPluginManager.cc:1121: ex.addr() = address; eclipse-titan-7.1.1/core/LoggerPluginManager.cc-1122- ex.port__() = port; ############################################## eclipse-titan-7.1.1/core/Port.cc-1648- // using the same local IP address as the control connection to MC eclipse-titan-7.1.1/core/Port.cc:1649: IPAddress *local_addr = IPAddress::create_addr(TTCN_Communication::get_network_family()); eclipse-titan-7.1.1/core/Port.cc-1650- *local_addr = *TTCN_Communication::get_local_address(); eclipse-titan-7.1.1/core/Port.cc-1651- local_addr->set_port(0); eclipse-titan-7.1.1/core/Port.cc:1652: if (bind(server_fd, local_addr->get_addr(), local_addr->get_addr_len())) { eclipse-titan-7.1.1/core/Port.cc-1653- close(server_fd); ############################################## eclipse-titan-7.1.1/core/Port.cc-1847- // connect to the IP address and port number given in message CONNECT eclipse-titan-7.1.1/core/Port.cc:1848: IPAddress *remote_addr = IPAddress::create_addr(TTCN_Communication::get_network_family()); eclipse-titan-7.1.1/core/Port.cc-1849- remote_addr->pull_raw(text_buf); eclipse-titan-7.1.1/core/Port.cc-1850-#ifdef SOLARIS eclipse-titan-7.1.1/core/Port.cc:1851: if (connect(client_fd, (struct sockaddr*)remote_addr->get_addr(), remote_addr->get_addr_len())) { eclipse-titan-7.1.1/core/Port.cc-1852-#else eclipse-titan-7.1.1/core/Port.cc:1853: if (connect(client_fd, remote_addr->get_addr(), remote_addr->get_addr_len())) { eclipse-titan-7.1.1/core/Port.cc-1854-#endif ############################################## eclipse-titan-7.1.1/etc/solaris/get.sh-52-[ -f $V_openssl.tar.gz ] || wget http://www.openssl.org/source/$V_openssl.tar.gz eclipse-titan-7.1.1/etc/solaris/get.sh:53:[ -f $V_expect.tar.gz ] || wget http://downloads.sourceforge.net/project/expect/Expect/`echo $V |sed 's/expect//'`/$V.tar.gz eclipse-titan-7.1.1/etc/solaris/get.sh-54-[ -f $V_tcl.tar.gz ] || wget -O $V_tcl.tar.gz http://prdownloads.sourceforge.net/tcl/$V_tcl-src.tar.gz ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/any_from/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/any_from/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/any_from/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/cw.pl-45- #warn "Let's try with $_ instead"; eclipse-titan-7.1.1/function_test/Semantic_Analyser/cw.pl:46: exec( $_, '-w', $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/function_test/Semantic_Analyser/cw.pl-47- } ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/defpars/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/defpars/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/defpars/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/deprecated/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/deprecated/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/deprecated/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/deterministic/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/deterministic/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/deterministic/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/encode/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/encode/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/encode/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/encode_legacy/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/encode_legacy/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/encode_legacy/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/erroneous_attributes/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/erroneous_attributes/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/erroneous_attributes/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/float/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/float/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/float/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/harness.pl-23- #warn "Let's try with $_ instead"; eclipse-titan-7.1.1/function_test/Semantic_Analyser/harness.pl:24: exec( $_, '-w', $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/function_test/Semantic_Analyser/harness.pl-25- } ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn-52-testcase tc_A() runs on MTC { //^In testcase definition `tc_A':// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn:53: var integer i:=c_A_i; //^In variable definition \`i\'\:$// //^error: There is no local or imported definition with name `c_A_i'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn-54- i:=valueof(t_A_i); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_A_i'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn-62- i:=valueof(t_A_i_fr);//^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_A_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn:63: var A_MyInt_fr myInt_fr; //^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `A_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn-64- f_A_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_A_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn-83- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn:84: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_BPR_SE.ttcn-85- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_SE.ttcn-89- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_SE.ttcn:90: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/C_SE.ttcn-91- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPR_SE.ttcn-78- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPR_SE.ttcn:79: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPR_SE.ttcn-80- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPR_SE.ttcn-98- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPR_SE.ttcn:99: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPR_SE.ttcn-100- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPU_SE.ttcn-79- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPU_SE.ttcn:80: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPU_SE.ttcn-81- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPU_SE.ttcn-99- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPU_SE.ttcn:100: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_CPU_SE.ttcn-101- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn-47-testcase tc_A() runs on MTC { //^In testcase definition `tc_A':// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn:48: var integer i:=c_A_i; //^In variable definition \`i\'\:$// //^error: There is no local or imported definition with name `c_A_i'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn-49- i:=valueof(t_A_i); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_A_i'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn-79- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn:80: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn-81- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn-99- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn:100: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_FR_SE.ttcn-101- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_SE.ttcn-78- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_SE.ttcn:79: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_SE.ttcn-80- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_SE.ttcn-98- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_SE.ttcn:99: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/D_SE.ttcn-100- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn-78- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn:79: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn-80- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn-100- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn:101: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn-102- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn-120- i:=valueof(t_D_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_D_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn:121: var D_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `D_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPR_SE.ttcn-122- f_D_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_D_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn-80- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn:81: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn-82- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn-100- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn:101: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn-102- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn-120- i:=valueof(t_D_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_D_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn:121: var D_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `D_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_DPU_SE.ttcn-122- f_D_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_D_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn-48-testcase tc_A() runs on MTC { //^In testcase definition `tc_A':// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn:49: var integer i:=c_A_i; //^In variable definition \`i\'\:$// //^error: There is no local or imported definition with name `c_A_i'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn-50- i:=valueof(t_A_i); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_A_i'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn-101- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn:102: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn-103- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn-121- i:=valueof(t_D_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_D_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn:122: var D_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `D_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_FR_SE.ttcn-123- f_D_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_D_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn-78- i:=valueof(t_B_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_B_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn:79: var B_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `B_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn-80- f_B_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_B_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn-100- i:=valueof(t_C_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_C_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn:101: var C_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `C_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn-102- f_C_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_C_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn-120- i:=valueof(t_D_i_fr); //^In variable assignment:// //In the operand of operation `valueof\(\)'// //^error: There is no local or imported definition with name `t_D_i_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn:121: var D_MyInt_fr myInt_fr;//^In variable definition \`myInt_fr\'\:$// //^error: There is no local or imported definition with name `D_MyInt_fr'// eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/E_SE.ttcn-122- f_D_fr();//^In function or altstep instance:// //^error: There is no local or imported definition with name `f_D_fr'// ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/import_of_iports/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/invoking_function_from_specific_places/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/invoking_function_from_specific_places/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/invoking_function_from_specific_places/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/json/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/json/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/json/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/map_param/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/map_param/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/map_param/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/mtc_and_system_clause/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/mtc_and_system_clause/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/mtc_and_system_clause/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/oop/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/oop/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/oop/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/param/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/param/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/param/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/pattern_ref/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/pattern_ref/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/pattern_ref/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/port_map_connect/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/port_map_connect/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/port_map_connect/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/port_translation/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/port_translation/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/port_translation/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/realtime/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/realtime/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/realtime/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/recof_index/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/recof_index/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/recof_index/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/template/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/template/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/template/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/template_concat/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/template_concat/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/template_concat/t-9- ############################################## eclipse-titan-7.1.1/function_test/Semantic_Analyser/xer/t-7- eclipse-titan-7.1.1/function_test/Semantic_Analyser/xer/t:8:exec('make check --no-print-directory -s -C ' . $self); eclipse-titan-7.1.1/function_test/Semantic_Analyser/xer/t-9- ############################################## eclipse-titan-7.1.1/function_test/Tools/SAtester.pl-70-my $max_cycles = 6; eclipse-titan-7.1.1/function_test/Tools/SAtester.pl:71:# Execution statistics eclipse-titan-7.1.1/function_test/Tools/SAtester.pl-72-# Number of TCs: PASSED, FAILED, ERROR verdicts, ############################################## eclipse-titan-7.1.1/function_test/Tools/SAtester.pl-841- sa_log("Location : $ENV{PWD}\n"); eclipse-titan-7.1.1/function_test/Tools/SAtester.pl:842: sa_log( `$sa_compilerCmd -v 2>&1` . "\n"); eclipse-titan-7.1.1/function_test/Tools/SAtester.pl-843- my $sa_nrOfTCs2Execute = scalar @sa_tcList2Execute; ############################################## eclipse-titan-7.1.1/help/ttcn3_help-28-# check the number of arguments eclipse-titan-7.1.1/help/ttcn3_help:29:if test "`expr $# != 1`" = "1" eclipse-titan-7.1.1/help/ttcn3_help-30-then echo "Error: exactly one argument is expected"; exit 1; ############################################## eclipse-titan-7.1.1/help/ttcn3_help-50-# Netscape eclipse-titan-7.1.1/help/ttcn3_help:51:if test "`echo ${browser} | grep netscape`" != "" eclipse-titan-7.1.1/help/ttcn3_help-52-then { ############################################## eclipse-titan-7.1.1/help/ttcn3_help-54- # avoid listing grep command as well eclipse-titan-7.1.1/help/ttcn3_help:55: pslist=`/bin/ps -u ${username} -f` eclipse-titan-7.1.1/help/ttcn3_help:56: if test "`echo ${pslist} | grep netscape`" != "" eclipse-titan-7.1.1/help/ttcn3_help-57- then browser_options="-remote openURL(file:"; endtag=")" ############################################## eclipse-titan-7.1.1/help/ttcn3_help-61-# Mozilla eclipse-titan-7.1.1/help/ttcn3_help:62:elif test "`echo ${browser} | grep mozilla`" != "" eclipse-titan-7.1.1/help/ttcn3_help-63-then { ############################################## eclipse-titan-7.1.1/help/ttcn3_help-65- # avoid listing grep command as well eclipse-titan-7.1.1/help/ttcn3_help:66: pslist=`/bin/ps -u ${username}` eclipse-titan-7.1.1/help/ttcn3_help:67: if test "`echo ${pslist} | grep mozilla`" != "" eclipse-titan-7.1.1/help/ttcn3_help-68- then browser_options="-remote openURL(file:"; endtag=")" ############################################## eclipse-titan-7.1.1/help/ttcn3_help-72-# Opera eclipse-titan-7.1.1/help/ttcn3_help:73:elif test "`echo ${browser} | grep opera`" != "" eclipse-titan-7.1.1/help/ttcn3_help-74-then { ############################################## eclipse-titan-7.1.1/help/ttcn3_help-76- # avoid listing grep command as well eclipse-titan-7.1.1/help/ttcn3_help:77: pslist=`/bin/ps -u ${username} -f` eclipse-titan-7.1.1/help/ttcn3_help:78: if test "`echo ${pslist} | grep opera`" != "" eclipse-titan-7.1.1/help/ttcn3_help-79- then browser_options="-remote openURL(file:"; endtag=")" ############################################## eclipse-titan-7.1.1/help/ttcn3_help-83-# Lynx should be executed in a new terminal eclipse-titan-7.1.1/help/ttcn3_help:84:elif test "`echo ${browser} | grep lynx`" != "" eclipse-titan-7.1.1/help/ttcn3_help-85-then { ############################################## eclipse-titan-7.1.1/loggerplugins/LTTngUSTLogger/tp.hh-386- _ctf_xsd_charstring(logEvent_name, executor.name()) eclipse-titan-7.1.1/loggerplugins/LTTngUSTLogger/tp.hh:387: _ctf_xsd_charstring(logEvent_addr, executor.addr()) eclipse-titan-7.1.1/loggerplugins/LTTngUSTLogger/tp.hh-388- _ctf_xsd_integer(logEvent_port, executor.port__()) ############################################## eclipse-titan-7.1.1/mctr2/cli/config_read.y-830-{ eclipse-titan-7.1.1/mctr2/cli/config_read.y:831: cfg->add_exec($2); eclipse-titan-7.1.1/mctr2/cli/config_read.y-832-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-68- ps-recursive uninstall-recursive eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:69:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-70-am__vpath_adj = case $$p in \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:71: $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-72- *) f=$$p;; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-73- esac; eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:74:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-75-am__install_max = 40 eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-76-am__nobase_strip_setup = \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:77: srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-78-am__nobase_strip = \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-113- while test -n "$$dir1"; do \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:114: first=`echo "$$dir1" | sed -e "$$sed_first"`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-115- if test "$$first" != "."; then \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-116- if test "$$first" = ".."; then \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:117: dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:118: dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-119- else \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:120: first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-121- if test "$$first2" = "$$first"; then \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:122: dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-123- else \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-128- fi; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:129: dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-130- done; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-338- @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:339: files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-340- test -n "$$files" || exit 0; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-358- dot_seen=no; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:359: target=`echo $@ | sed s/-recursive//`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-360- list='$(SUBDIRS)'; for subdir in $$list; do \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-393- rev="$$rev ."; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:394: target=`echo $@ | sed s/-recursive//`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-395- for subdir in $$rev; do \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-471-GTAGS: eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:472: here=`$(am__cd) $(top_builddir) && pwd` \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-473- && $(am__cd) $(top_srcdir) \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-481- test -d "$(distdir)" || mkdir "$(distdir)" eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:482: @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:483: topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-484- list='$(DISTFILES)'; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-495- if test -d $$d/$$file; then \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:496: dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-497- if test -d "$(distdir)/$$file"; then \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-603- test -d $(distdir)/_build || exit 0; \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:604: dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-605- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-637- @$(am__cd) '$(distuninstallcheck_dir)' \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:638: && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-639- || { echo "ERROR: files left after uninstall:" ; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-649- fi eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in:650: @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ eclipse-titan-7.1.1/mctr2/editline/libedit/Makefile.in-651- || { echo "ERROR: files left in build directory after distclean:" ; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-141-done eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:142:cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-143-]) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-425-m4_define([_LT_CONFIG_STATUS_DECLARE], eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:426:[$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`']) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-427- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-435-# eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:436:# <var>='`$ECHO "X$<var>" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-437-m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-537-]], lt_decl_quote_varnames); do eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:538: case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-539- *[[\\\\\\\`\\"\\\$]]*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:540: eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-541- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-550-]], lt_decl_dquote_varnames); do eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:551: case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-552- *[[\\\\\\\`\\"\\\$]]*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:553: eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-554- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-563-*'\\\[$]0 --fallback-echo"')dnl " eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:564: lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\[$]0 --fallback-echo"\[$]/\[$]0 --fallback-echo"/'\` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-565- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-699- eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:700:# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-701-# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1046- }' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1047:aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1048-# Check for a 64-bit object if we didn't find anything. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1049-if test -z "$aix_libpath"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1050: aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1051-fi],[]) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1078- # Remove one level of quotation (which was required for Make). eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1079: ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1080- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1089- : eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1090:elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1091- # Yippee, $ECHO works! ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1115- # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1116: if { echo_test_string=`eval $cmd`; } 2>/dev/null && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1117- { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1123- eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1124: if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1125: echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1126- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1138- if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1139: test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1140: echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1141- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1150- if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1151: echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1152- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1165- ECHO='printf %s\n' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1166: if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1167: echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1168- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1170- : eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1171: elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1172- test "X$echo_testing_string" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1173: echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1174- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1179- ECHO="$CONFIG_SHELL [$]0 --fallback-echo" eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1180: elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1181- test "X$echo_testing_string" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1182: echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1183- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1189- for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1190: if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1191- then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1197- if test "$prev" != 'sed 50q "[$]0"'; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1198: echo_test_string=`eval $prev` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1199- export echo_test_string ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1240- if AC_TRY_EVAL(ac_compile); then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1241: case `/usr/bin/file conftest.$ac_objext` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1242- *ELF-32*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1256- if test "$lt_cv_prog_gnu_ld" = yes; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1257: case `/usr/bin/file conftest.$ac_objext` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1258- *32-bit*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1268- else eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1269: case `/usr/bin/file conftest.$ac_objext` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1270- *32-bit*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1560- # And add a safety zone eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1561: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1562: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1563- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1588- if test -n "$kargmax"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1589: lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1590- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1596- if test -n "$lt_cv_sys_max_cmd_len"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1597: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1598: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1599- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1608- # we can't tell. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1609: while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1610- = "XX$teststring$teststring"; } >/dev/null 2>&1 && ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1612- do eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1613: i=`expr $i + 1` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1614- teststring=$teststring$teststring ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1616- # Only check the string length outside the loop. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1617: lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1618- teststring= ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1621- # linker. It appears as though 1/2 is a usable value. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1622: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1623- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1936- if test "$hard_links" = no; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:1937: AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-1938- need_locks=warn ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2062- esac eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2063: lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2064- if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2068- # okay in the real world where ";" in dirpaths is itself problematic. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2069: lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2070- else eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2071: lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2072- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2075- lt_tmp_lt_search_path_spec= eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2076: lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2077- for lt_sys_path in $lt_search_path_spec; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2104-}'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2105: sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2106-else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2192- # Create ${libname}_ixlibrary.a entries in /sys/libs. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2193: finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2194- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2227- # DLL is installed to $(libdir)/../bin by postinstall_cmds eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2228: postinstall_cmds='base_file=`basename \${file}`~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2229: dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2230: dldir=$destdir/`dirname \$dlpath`~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2231- test -d \$dldir || mkdir -p \$dldir~ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2236- fi' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2237: postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2238- dlpath=$dir/\$dldll~ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2244- # Cygwin DLLs use 'cyg' prefix rather than 'lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2245: soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2246- sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2249- # MinGW DLLs use traditional 'lib' prefix eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2250: soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2251: sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2252- if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2258- # which wouldn't understand a cygwinified path. Ahh. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2259: sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2260- else eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2261: sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2262- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2265- # pw32 DLLs use 'pw' prefix rather than 'lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2266: library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2267- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2271- *) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2272: library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2273- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2288- shlibpath_var=DYLD_LIBRARY_PATH eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2289: shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2290-m4_if([$1], [],[ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2489- if test -f /etc/ld.so.conf; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2490: lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2491- sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2563- shlibpath_var=LD_LIBRARY_PATH eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2564: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2565- case $host_os in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2778- "file_magic "*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2779: file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2780- MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2860- # gcc leaves a trailing carriage return which upsets mingw eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2861: ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2862- *) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2863: ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2864- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2869- # Canonicalize the pathname of ld eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2870: ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2871- while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2872: ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2873- done ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2900- # Break only if it was the GNU/non-GNU ld that we prefer. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2901: case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2902- *GNU* | *'with BFD'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2940-[# I'd rather use --version here, but apparently some GNU lds only accept -v. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:2941:case `$LD -v 2>&1 </dev/null` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-2942-*GNU* | *'with BFD'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3124-openbsd*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:3125: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3126- lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3215- # Tru64's nm complains that /dev/null is an invalid object file eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:3216: case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3217- */dev/null* | *'Invalid file or object type'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3221- *) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:3222: case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3223- */dev/null*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3386-# If we're using GNU nm, then use its standard symbol codes. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:3387:case `$NM -V 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3388-*GNU* | *'with BFD'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3404-mingw*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:3405: opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3406- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3455- nlist=conftest.nm eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:3456: if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3457- # Try sorting and uniquifying the output. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3762- *) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:3763: case `$CC -V 2>&1 | sed 5q` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-3764- *Sun\ C*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4046- *) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4047: case `$CC -V 2>&1 | sed 5q` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4048- *Sun\ C*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4301- supports_anon_versioning=no eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4302: case `$LD -v 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4303- *GNU\ gold*) supports_anon_versioning=yes ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4367- # is EXPORTS), use it as is; otherwise, prepend... eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4368: _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4369- cp $export_symbols $output_objdir/$soname.def; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4390- # time. Moving up from 0x10000000 also allows more sbrk(2) space. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4391: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4392: _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4393- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4408- pgcc*) # Portland Group C compiler eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4409: _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4410- tmp_addflag=' $pic_flag' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4412- pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4413: _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4414- tmp_addflag=' $pic_flag -Mnomain' ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4427- esac eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4428: case `$CC -V 2>&1 | sed 5q` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4429- *Sun\ C*) # Sun C 5.9 eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4430: _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4431- _LT_TAGVAR(compiler_needs_object, $1)=yes ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4496- sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4497: case `$LD -v 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4498- *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4617- # below for broken collect2 doesn't work under 4.3+ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4618: collect2name=`${CC} -print-prog-name=collect2` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4619- if test -f "$collect2name" && ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4667- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4668: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4669- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4722- # FIXME: Setting linknames here is a bad hack. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4723: _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4724- # The linker will automatically build a .lib file if we build a DLL. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4727- _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4728: _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4729- _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4857- if test "$GCC" = yes; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4858: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4859- # Try to use the -exported_symbol ld option, if it does not ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4864- AC_LINK_IFELSE(int foo(void) {}, eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4865: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4866- ) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4868- else eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4869: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4870: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4871- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4905- _LT_TAGVAR(hardcode_direct_absolute, $1)=yes eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4906: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4907- _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4938- _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4939: _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4940- else eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4941- _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4942: _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4943- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4951- _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4952: _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4953- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4955- _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4956: _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4957: _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4958: $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4959- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4974- else eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:4975: case `$CC -V 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-4976- *"Compilers 5.0"*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5166- _LT_TAGVAR(allow_undefined_flag, $1)= eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5167: if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5168- then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5476- # ancient GNU ld didn't support --whole-archive et. al. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5477: if eval "`$CC -print-prog-name=ld` --help 2>&1" | eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5478- $GREP 'no-whole-archive' > /dev/null; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5559- # below for broken collect2 doesn't work under 4.3+ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5560: collect2name=`${CC} -print-prog-name=collect2` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5561- if test -f "$collect2name" && ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5609- eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5610: _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5611- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5666- # is EXPORTS), use it as is; otherwise, prepend... eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5667: _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5668- cp $export_symbols $output_objdir/$soname.def; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5742- # dependencies. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5743: output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5744- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5807- # dependencies. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5808: output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5809- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5843- # time. Moving up from 0x10000000 also allows more sbrk(2) space. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5844: _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5845: _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5846- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5850- # SGI C++ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5851: _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5852- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5861- if test "$with_gnu_ld" = no; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5862: _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5863- else eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5864: _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5865- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5882- # to its proper name (with version) after linking. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5883: _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5884: _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5885- # Commands to make compiler produce verbose output that lists ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5892- # dependencies. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5893: output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5894- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5907- # earlier do not add the objects themselves. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5908: case `$CC -V 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5909- *"Version 7."*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5928- # Portland Group C++ compiler eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5929: case `$CC -V` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5930- *pgCC\ [[1-5]]* | *pgcpp\ [[1-5]]*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5933- $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5934: compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5935- _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5937- $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5938: $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5939- $RANLIB $oldlib' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5942- $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5943: $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5944- _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5946- $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5947: $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5948- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5956- _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5957: _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5958- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5975- # dependencies. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5976: output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5977- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5990- *) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5991: case `$CC -V 2>&1 | sed 5q` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5992- *Sun\ C*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5997- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:5998: _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-5999- _LT_TAGVAR(compiler_needs_object, $1)=yes ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6067- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6068: if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6069- _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6086- # to its proper name (with version) after linking. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6087: _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6088- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6107- _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6108: _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6109- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6112- _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6113: _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6114: _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6115- echo "-hidden">> $lib.exp~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6116: $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6117- $RM $lib.exp' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6131- # dependencies. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6132: output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6133- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6138- osf3*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6139: _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6140- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6141- *) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6142: _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6143- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6437- eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6438: for p in `eval "$output_verbose_link_cmd"`; do eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6439- case $p in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6523-linux*) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6524: case `$CC -V 2>&1 | sed 5q` in eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6525- *Sun\ C*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6574-if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:6575: _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-6576-fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7108- test $lt_ac_count -gt 10 && break eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7109: lt_ac_count=`expr $lt_ac_count + 1` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7110- if test $lt_ac_count -gt $lt_ac_max; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7283- # Extract subdirectory from the argument. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7284: func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7285- if test "X$func_dirname_result" = "X${1}"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7294-{ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7295: func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7296-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7324-{ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7325: func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7326: func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7327-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7331-{ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7332: func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7333-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7337-{ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7338: func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[[^.]]*$/.lo/'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7339-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7343-{ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7344: func_arith_result=`expr "$[@]"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7345-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7350-{ eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7351: func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7352-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7813-m4_define([lt_combine], eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:7814:[m4_if(m4_eval([$# > 3]), [1], eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-7815- [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8033-# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8034:# `$srcdir', `$srcdir/..', or `$srcdir/../..'. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8035-# ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8057-# iff we strip the leading $srcdir from $ac_aux_dir. That would be: eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8058:# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8059-# and then we would define $MISSING as ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8073-# expand $ac_aux_dir to an absolute path eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8074:am_aux_dir=`cd $ac_aux_dir && pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8075-]) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8174- if test "$am_compiler_list" = ""; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8175: am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8176- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8320- # Strip MF so we end up with the name of the file. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8321: mf=`echo "$mf" | sed -e 's/:.*$//'` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8322- # Check whether this is an Automake generated Makefile or not. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8329- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8330: dirpart=`AS_DIRNAME("$mf")` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8331- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8335- # from the Makefile without running `make'. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8336: DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8337- test -z "$DEPDIR" && continue eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8338: am__include=`sed -n 's/^am__include = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8339- test -z "am__include" && continue eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8340: am__quote=`sed -n 's/^am__quote = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8341- # When using ansi2knr, U may be empty or an underscore; expand it eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8342: U=`sed -n 's/^U = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8343- # Find all dependency output files, they are included files with ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8351- test -f "$dirpart/$file" && continue eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8352: fdir=`AS_DIRNAME(["$file"])` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8353- AS_MKDIR_P([$dirpart/$fdir]) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8406-AC_REQUIRE([AC_PROG_INSTALL])dnl eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8407:if test "`cd $srcdir && pwd`" != "`pwd`"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8408- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8508- * ) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8509: _am_stamp_count=`expr $_am_stamp_count + 1` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8510- esac eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8511-done eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8512:echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8513- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8583-# Ignore all kinds of additional output from `make'. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8584:case `$am_make -s -f confmf 2> /dev/null` in #( eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8585-*the\ am__doit\ target*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8593- echo '.include "confinc"' > confmf eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8594: case `$am_make -s -f confmf 2> /dev/null` in #( eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8595- *the\ am__doit\ target*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8746-if ( eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8747: set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8748- if test "$[*]" = "X"; then eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8749- # -L didn't work. eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4:8750: set X `ls -t "$srcdir/configure" conftest.file` eclipse-titan-7.1.1/mctr2/editline/libedit/aclocal.m4-8751- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-40- eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:41:me=`echo "$0" | sed -e 's,.*/,,'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-42- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-110-: ${TMPDIR=/tmp} ; eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:111: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-112- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-196- *) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:197: release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-198- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-223- *4.0) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:224: UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-225- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-226- *5.*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:227: UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-228- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-233- # types through head -n 1, so we only detect the type of CPU 0. eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:234: ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-235- case "$ALPHA_CPU_TYPE" in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-271- # 1.2 uses "1.2" for uname -r. eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:272: echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-273- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-328- s390x:SunOS:*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:329: echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-330- exit ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-331- sun4H:SunOS:5.*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:332: echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-333- exit ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-334- sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:335: echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-336- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-353- fi eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:354: echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-355- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-359- # it's likely to be more like Solaris than SunOS4. eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:360: echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-361- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-368- # Japanese Language versions have a version number like `4.1.3-JL'. eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:369: echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-370- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-374- sun*:*:4.2BSD:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:375: UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-376- test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-456- $CC_FOR_BUILD -o $dummy $dummy.c && eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:457: dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:458: SYSTEM_NAME=`$dummy $dummyarg` && eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-459- { echo "$SYSTEM_NAME"; exit; } ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-512- *:IRIX*:*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:513: echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-514- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-542-EOF eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:543: if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-544- then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-555- *:AIX:*:[456]) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:556: IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-557- if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-590- 9000/[34678]??:HP-UX:*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:591: HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-592- case "${UNAME_MACHINE}" in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-644-EOF eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:645: (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-646- test -z "$HP_ARCH" && HP_ARCH=hppa ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-672- ia64:HP-UX:*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:673: HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-674- echo ia64-hp-hpux${HPUX_REV} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-702-EOF eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:703: $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-704- { echo "$SYSTEM_NAME"; exit; } ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-773- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:774: FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-775- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-778- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:779: FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-780- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-793- pc98) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:794: echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-795- amd64) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:796: echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-797- *) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:798: echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-799- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-847- prep*:SunOS:5.*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:848: echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-849- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-851- # the GNU system eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:852: echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-853- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-855- # other systems with GNU libc and userland eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:856: echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-857- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-904-EOF eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:905: eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-906- echo "${UNAME_MACHINE}-pc-linux-${LIBC}" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-932-EOF eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:933: eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-934- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1014- i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:1015: UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1016- if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1281- *:DragonFly:*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:1282: echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1283- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1294- i*86:skyos:*:*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:1295: echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1296- exit ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1422- eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess:1423:$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && eclipse-titan-7.1.1/mctr2/editline/libedit/config.guess-1424- { echo "$SYSTEM_NAME"; exit; } ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-59- eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:60:me=`echo "$0" | sed -e 's,.*/,,'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-61- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-124-# Here we must recognize all the valid KERNEL-OS combinations. eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:125:maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-126-case $maybe_os in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-131- os=-$maybe_os eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:132: basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-133- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-134- *) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:135: basic_machine=`echo $1 | sed 's/-[^-]*$//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-136- if [ $basic_machine != $1 ] eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:137: then os=`echo $1 | sed 's/.*-/-/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-138- else os=; fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-185- os=-sco5v6 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:186: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-187- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-189- os=-sco3.2v5 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:190: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-191- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-193- os=-sco3.2v4 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:194: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-195- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-196- -sco3.2.[4-9]*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:197: os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:198: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-199- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-201- # Don't forget version if it is 3.2v4 or newer. eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:202: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-203- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-205- # Don't forget version if it is 3.2v4 or newer. eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:206: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-207- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-209- os=-sco3.2v2 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:210: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-211- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-212- -udk*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:213: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-214- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-216- os=-isc2.2 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:217: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-218- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-222- -isc*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:223: basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-224- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-228- -ptx*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:229: basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-230- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-231- -windowsnt*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:232: os=`echo $os | sed -e 's/windowsnt/winnt/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-233- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-324- *-*-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:325: echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-326- exit 1 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-435- amd64-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:436: basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-437- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-477- blackfin-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:478: basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-479- os=-linux ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-680- i*86v32) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:681: basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-682- os=-sysv32 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-684- i*86v4*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:685: basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-686- os=-sysv4 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-688- i*86v) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:689: basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-690- os=-sysv ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-692- i*86sol2) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:693: basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-694- os=-solaris2 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-722- m68knommu-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:723: basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-724- os=-linux ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-755- mips3*-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:756: basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-757- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-758- mips3*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:759: basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-760- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-773- ms1-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:774: basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-775- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-878- parisc-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:879: basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-880- os=-linux ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-894- pc98-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:895: basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-896- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-909- pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:910: basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-911- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-912- pentiumpro-* | p6-* | 6x86-* | athlon-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:913: basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-914- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-915- pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:916: basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-917- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-918- pentium4-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:919: basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-920- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-927- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:928: ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-929- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-933- ppcle-* | powerpclittle-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:934: basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-935- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-937- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:938: ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-939- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-943- ppc64le-* | powerpc64little-*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:944: basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-945- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1240- *) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1241: echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1242- exit 1 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1248- *-digital*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1249: basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1250- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1251- *-commodore*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1252: basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1253- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1269- -solaris1 | -solaris1.*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1270: os=`echo $os | sed -e 's|solaris1|sunos4|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1271- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1281- -gnu/linux*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1282: os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1283- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1326- -nto*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1327: os=`echo $os | sed -e 's|nto|nto-qnx|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1328- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1333- -mac*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1334: os=`echo $os | sed -e 's|mac|macos|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1335- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1339- -linux*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1340: os=`echo $os | sed -e 's|linux|linux-gnu|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1341- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1342- -sunos5*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1343: os=`echo $os | sed -e 's|sunos5|solaris2|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1344- ;; eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1345- -sunos6*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1346: os=`echo $os | sed -e 's|sunos6|solaris3|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1347- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1394- -sinix5.*) eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1395: os=`echo $os | sed -e 's|sinix|sysv|'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1396- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1450- # Get rid of the `-' at the beginning of $os. eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1451: os=`echo $os | sed 's/[^-]*-//'` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1452: echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1453- exit 1 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1701- esac eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub:1702: basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` eclipse-titan-7.1.1/mctr2/editline/libedit/config.sub-1703- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:46: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-47- as_echo='print -r --' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-48- as_echo_n='print -rn --' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-50- as_echo='printf %s\n' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-52-else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:53: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-54- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-62- expr "X$arg" : "X\\(.*\\)$as_nl"; eclipse-titan-7.1.1/mctr2/editline/libedit/configure:63: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-64- esac; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-172- eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:173: test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 eclipse-titan-7.1.1/mctr2/editline/libedit/configure-174-test \$(( 1 + 1 )) = 2 || exit 1" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-288- case $as_dir in #( eclipse-titan-7.1.1/mctr2/editline/libedit/configure:289: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( eclipse-titan-7.1.1/mctr2/editline/libedit/configure-290- *) as_qdir=$as_dir;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-353- { eclipse-titan-7.1.1/mctr2/editline/libedit/configure:354: as_val=`expr "$@" || test $? -eq 1` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-355- } ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-360-# --------------------------------- eclipse-titan-7.1.1/mctr2/editline/libedit/configure:361:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are eclipse-titan-7.1.1/mctr2/editline/libedit/configure-362-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-423- eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:424: test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { eclipse-titan-7.1.1/mctr2/editline/libedit/configure-425- # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-514- esac; eclipse-titan-7.1.1/mctr2/editline/libedit/configure:515: case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( eclipse-titan-7.1.1/mctr2/editline/libedit/configure-516- ???[sx]*):;;*)false;;esac;fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-535- # Remove one level of quotation (which was required for Make). eclipse-titan-7.1.1/mctr2/editline/libedit/configure:536: ECHO=`echo "$lt_ECHO" | sed 's,\\\\\$\\$0,'$0','` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-537- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-546- : eclipse-titan-7.1.1/mctr2/editline/libedit/configure:547:elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-548- # Yippee, $ECHO works! ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-572- # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... eclipse-titan-7.1.1/mctr2/editline/libedit/configure:573: if { echo_test_string=`eval $cmd`; } 2>/dev/null && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-574- { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-580- eclipse-titan-7.1.1/mctr2/editline/libedit/configure:581: if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:582: echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-583- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-595- if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:596: test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:597: echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-598- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-607- if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:608: echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-609- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-622- ECHO='printf %s\n' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:623: if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:624: echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-625- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-627- : eclipse-titan-7.1.1/mctr2/editline/libedit/configure:628: elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-629- test "X$echo_testing_string" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:630: echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-631- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-636- ECHO="$CONFIG_SHELL $0 --fallback-echo" eclipse-titan-7.1.1/mctr2/editline/libedit/configure:637: elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-638- test "X$echo_testing_string" = 'X\t' && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:639: echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-640- test "X$echo_testing_string" = "X$echo_test_string"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-646- for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:647: if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null eclipse-titan-7.1.1/mctr2/editline/libedit/configure-648- then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-654- if test "$prev" != 'sed 50q "$0"'; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:655: echo_test_string=`eval $prev` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-656- export echo_test_string ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-943- case $ac_option in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:944: *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-945- *) ac_optarg=yes ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-986- -disable-* | --disable-*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:987: ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-988- # Reject names that are not valid shell variable names. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-991- ac_useropt_orig=$ac_useropt eclipse-titan-7.1.1/mctr2/editline/libedit/configure:992: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-993- case $ac_user_opts in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1012- -enable-* | --enable-*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1013: ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1014- # Reject names that are not valid shell variable names. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1017- ac_useropt_orig=$ac_useropt eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1018: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1019- case $ac_user_opts in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1216- -with-* | --with-*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1217: ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1218- # Reject names that are not valid shell variable names. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1221- ac_useropt_orig=$ac_useropt eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1222: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1223- case $ac_user_opts in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1232- -without-* | --without-*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1233: ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1234- # Reject names that are not valid shell variable names. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1237- ac_useropt_orig=$ac_useropt eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1238: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1239- case $ac_user_opts in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1270- *=*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1271: ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1272- # Reject names that are not valid shell variable names. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1291-if test -n "$ac_prev"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1292: ac_option=--`echo $ac_prev | sed 's/_/-/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1293- as_fn_error "missing argument to $ac_option" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1313- */ ) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1314: ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1315- eval $ac_var=\$ac_val;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1350-ac_ls_di=`ls -di .` && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1351:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1352- as_fn_error "working directory cannot be determined" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1406-case $srcdir in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1407:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1408-esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1449-By default, \`make install' will install all the files in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1450:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1451:an installation prefix other than \`$ac_default_prefix' using \`--prefix', eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1452-for instance \`--prefix=\$HOME'. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1548-*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1549: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1550- # A ".." for each directory in $ac_dir_suffix. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:1551: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-1552- case $ac_top_builddir_sub in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2086- *\'*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2087: ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2088- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2173- case $ac_val in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2174: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2175- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2190- case $ac_val in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2191: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2192- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2303- set,) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2304: { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2305:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2306- ac_cache_corrupted=: ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2314- # differences in whitespace do not lead to failure. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2315: ac_old_val_w=`echo x $ac_old_val` eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2316: ac_new_val_w=`echo x $ac_new_val` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2317- if test "$ac_old_val_w" != "$ac_new_val_w"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2334- case $ac_new_val in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2335: *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2336- *) ac_arg=$ac_var=$ac_new_val ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2712-$as_echo_n "checking whether the C compiler works... " >&6; } eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2713:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2714- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2756- then :; else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2757: ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2758- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2817- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2818: *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2819- break;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2926- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure:2927: *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-2928- break;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3315- # Check for GNU $ac_path_GREP eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3316:case `"$ac_path_GREP" --version 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3317-*GNU*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3381- # Check for GNU $ac_path_EGREP eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3382:case `"$ac_path_EGREP" --version 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3383-*GNU*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3542-do : eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3543: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3544-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3548- cat >>confdefs.h <<_ACEOF eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3549:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3550-_ACEOF ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3760-if ( eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3761: set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3762- if test "$*" = "X"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3763- # -L didn't work. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3764: set X `ls -t "$srcdir/configure" conftest.file` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3765- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3796-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3797:program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3798- eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3799-# expand $ac_aux_dir to an absolute path eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3800:am_aux_dir=`cd $ac_aux_dir && pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3801- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3941- { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue eclipse-titan-7.1.1/mctr2/editline/libedit/configure:3942: case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( eclipse-titan-7.1.1/mctr2/editline/libedit/configure-3943- 'mkdir (GNU coreutils) '* | \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4020-set x ${MAKE-make} eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4021:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4022-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4030-# GNU make sometimes prints "make[1]: Entering...", which would confuse us. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4031:case `${MAKE-make} -f conftest.make 2>/dev/null` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4032- *@@@%%%=?*=@@@%%%*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4077-# Ignore all kinds of additional output from `make'. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4078:case `$am_make -s -f confmf 2> /dev/null` in #( eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4079-*the\ am__doit\ target*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4087- echo '.include "confinc"' > confmf eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4088: case `$am_make -s -f confmf 2> /dev/null` in #( eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4089- *the\ am__doit\ target*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4119- eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4120:if test "`cd $srcdir && pwd`" != "`pwd`"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4121- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4208- if test "$am_compiler_list" = ""; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4209: am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4210- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4344-test "x$ac_build_alias" = x && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4345: ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4346-test "x$ac_build_alias" = x && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4347- as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4348:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4349- as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4368-IFS=$ac_save_IFS eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4369:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4370- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4379-else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4380: ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4381- as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4401-IFS=$ac_save_IFS eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4402:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4403- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4429- # Check for GNU $ac_path_SED eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4430:case `"$ac_path_SED" --version 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4431-*GNU*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4508- # Check for GNU $ac_path_FGREP eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4509:case `"$ac_path_FGREP" --version 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4510-*GNU*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4588- # gcc leaves a trailing carriage return which upsets mingw eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4589: ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4590- *) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4591: ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4592- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4597- # Canonicalize the pathname of ld eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4598: ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4599- while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4600: ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4601- done ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4632- # Break only if it was the GNU/non-GNU ld that we prefer. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4633: case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4634- *GNU* | *'with BFD'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4663- # I'd rather use --version here, but apparently some GNU lds only accept -v. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4664:case `$LD -v 2>&1 </dev/null` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4665-*GNU* | *'with BFD'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4708- # Tru64's nm complains that /dev/null is an invalid object file eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4709: case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4710- */dev/null* | *'Invalid file or object type'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4714- *) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4715: case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4716- */dev/null*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4937- # And add a safety zone eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4938: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4939: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4940- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4965- if test -n "$kargmax"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4966: lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4967- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4973- if test -n "$lt_cv_sys_max_cmd_len"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4974: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4975: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4976- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4985- # we can't tell. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4986: while { test "X"`$SHELL $0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4987- = "XX$teststring$teststring"; } >/dev/null 2>&1 && ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4989- do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4990: i=`expr $i + 1` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4991- teststring=$teststring$teststring ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4993- # Only check the string length outside the loop. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4994: lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4995- teststring= ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-4998- # linker. It appears as though 1/2 is a usable value. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:4999: lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-5000- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-5353-openbsd*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:5354: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-5355- lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-5842-# If we're using GNU nm, then use its standard symbol codes. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:5843:case `$NM -V 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-5844-*GNU* | *'with BFD'*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-5860-mingw*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:5861: opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp eclipse-titan-7.1.1/mctr2/editline/libedit/configure-5862- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-6056- test $ac_status = 0; }; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:6057: case `/usr/bin/file conftest.$ac_objext` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-6058- *ELF-32*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-6076- if test "$lt_cv_prog_gnu_ld" = yes; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:6077: case `/usr/bin/file conftest.$ac_objext` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-6078- *32-bit*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-6088- else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:6089: case `/usr/bin/file conftest.$ac_objext` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-6090- *32-bit*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7102-done eclipse-titan-7.1.1/mctr2/editline/libedit/configure:7103:cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7104- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7131- "file_magic "*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:7132: file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7133- MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7197- "file_magic "*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:7198: file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7199- MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7536- *) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:7537: case `$CC -V 2>&1 | sed 5q` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7538- *Sun\ C*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7872- if test "$hard_links" = no; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:7873: { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 eclipse-titan-7.1.1/mctr2/editline/libedit/configure:7874:$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7875- need_locks=warn ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7968- supports_anon_versioning=no eclipse-titan-7.1.1/mctr2/editline/libedit/configure:7969: case `$LD -v 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-7970- *GNU\ gold*) supports_anon_versioning=yes ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8034- # is EXPORTS), use it as is; otherwise, prepend... eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8035: archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8036- cp $export_symbols $output_objdir/$soname.def; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8057- # time. Moving up from 0x10000000 also allows more sbrk(2) space. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8058: archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8059: archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8060- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8075- pgcc*) # Portland Group C compiler eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8076: whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8077- tmp_addflag=' $pic_flag' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8079- pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8080: whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8081- tmp_addflag=' $pic_flag -Mnomain' ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8094- esac eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8095: case `$CC -V 2>&1 | sed 5q` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8096- *Sun\ C*) # Sun C 5.9 eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8097: whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8098- compiler_needs_object=yes ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8163- sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8164: case `$LD -v 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8165- *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8284- # below for broken collect2 doesn't work under 4.3+ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8285: collect2name=`${CC} -print-prog-name=collect2` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8286- if test -f "$collect2name" && ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8352- }' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8353:aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8354-# Check for a 64-bit object if we didn't find anything. eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8355-if test -z "$aix_libpath"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8356: aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8357-fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8363- hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8364: archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8365- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8392- }' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8393:aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8394-# Check for a 64-bit object if we didn't find anything. eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8395-if test -z "$aix_libpath"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8396: aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8397-fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8447- # FIXME: Setting linknames here is a bad hack. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8448: archive_cmds='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8449- # The linker will automatically build a .lib file if we build a DLL. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8452- old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8453: fix_srcfile_path='`cygpath -w "$srcfile"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8454- enable_shared_with_static_runtimes=yes ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8605- if test "$GCC" = yes; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8606: archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8607- # Try to use the -exported_symbol ld option, if it does not ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8616-if ac_fn_c_try_link "$LINENO"; then : eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8617: archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8618- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8623- else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8624: archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8625: archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8626- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8660- hardcode_direct_absolute=yes eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8661: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8662- archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8693- allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8694: archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8695- else eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8696- allow_undefined_flag=' -expect_unresolved \*' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8697: archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8698- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8706- allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8707: archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8708- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8710- allow_undefined_flag=' -expect_unresolved \*' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8711: archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8712: archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8713: $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8714- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8729- else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:8730: case `$CC -V 2>&1` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-8731- *"Compilers 5.0"*) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9123- esac eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9124: lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9125- if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9129- # okay in the real world where ";" in dirpaths is itself problematic. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9130: lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9131- else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9132: lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9133- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9136- lt_tmp_lt_search_path_spec= eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9137: lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9138- for lt_sys_path in $lt_search_path_spec; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9165-}'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9166: sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9167-else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9253- # Create ${libname}_ixlibrary.a entries in /sys/libs. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9254: finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9255- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9288- # DLL is installed to $(libdir)/../bin by postinstall_cmds eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9289: postinstall_cmds='base_file=`basename \${file}`~ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9290: dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9291: dldir=$destdir/`dirname \$dlpath`~ eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9292- test -d \$dldir || mkdir -p \$dldir~ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9297- fi' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9298: postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9299- dlpath=$dir/\$dldll~ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9305- # Cygwin DLLs use 'cyg' prefix rather than 'lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9306: soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9307- sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9310- # MinGW DLLs use traditional 'lib' prefix eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9311: soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9312: sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9313- if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9319- # which wouldn't understand a cygwinified path. Ahh. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9320: sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9321- else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9322: sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9323- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9326- # pw32 DLLs use 'pw' prefix rather than 'lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9327: library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9328- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9332- *) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9333: library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9334- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9349- shlibpath_var=DYLD_LIBRARY_PATH eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9350: shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9351- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9565- if test -f /etc/ld.so.conf; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9566: lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9567- sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9639- shlibpath_var=LD_LIBRARY_PATH eclipse-titan-7.1.1/mctr2/editline/libedit/configure:9640: if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-9641- case $host_os in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11088- for ac_func in _getb67 GETB67 getb67; do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:11089: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11090-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11155-for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:11156: as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11157-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11188- cat >>confdefs.h <<_ACEOF eclipse-titan-7.1.1/mctr2/editline/libedit/configure:11189:#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11190-_ACEOF ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11467-do : eclipse-titan-7.1.1/mctr2/editline/libedit/configure:11468: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11469-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11472- cat >>confdefs.h <<_ACEOF eclipse-titan-7.1.1/mctr2/editline/libedit/configure:11473:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11474-_ACEOF ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11680-do : eclipse-titan-7.1.1/mctr2/editline/libedit/configure:11681: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11682-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11685- cat >>confdefs.h <<_ACEOF eclipse-titan-7.1.1/mctr2/editline/libedit/configure:11686:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 eclipse-titan-7.1.1/mctr2/editline/libedit/configure-11687-_ACEOF ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12068-do : eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12069: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12070-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12073- cat >>confdefs.h <<_ACEOF eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12074:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12075-_ACEOF ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12237- ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12238: ac_i=`$as_echo "$ac_i" | sed "$ac_script"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12239- # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12324-if test -z "$BASH_VERSION$ZSH_VERSION" \ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12325: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12326- as_echo='print -r --' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12327- as_echo_n='print -rn --' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12328:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12329- as_echo='printf %s\n' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12331-else eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12332: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12333- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12341- expr "X$arg" : "X\\(.*\\)$as_nl"; eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12342: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12343- esac; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12417-# --------------------------------- eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12418:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12419-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12489- { eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12490: as_val=`expr "$@" || test $? -eq 1` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12491- } ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12593- case $as_dir in #( eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12594: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12595- *) as_qdir=$as_dir;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12650- esac; eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12651: case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12652- ???[sx]*):;;*)false;;esac;fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12740-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12741:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12742-ac_cs_version="\\ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12765- --*=*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12766: ac_option=`expr "X$1" : 'X\([^=]*\)='` eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12767: ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12768- ac_shift=: ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12789- case $ac_optarg in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12790: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12791- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12796- case $ac_optarg in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12797: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12798- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12865-delay_variable_subst='$delay_variable_subst' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12866:macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12867:macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12868:enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12869:enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12870:pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12871:enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12872:host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12873:host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12874:host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12875:build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12876:build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12877:build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12878:SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12879:Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12880:GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12881:EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12882:FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12883:LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12884:NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12885:LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12886:max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12887:ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12888:exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12889:lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12890:lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12891:lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12892:reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12893:reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12894:OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12895:deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12896:file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12897:AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12898:AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12899:STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12900:RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12901:old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12902:old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12903:old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12904:CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12905:CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12906:compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12907:GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12908:lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12909:lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12910:lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12911:lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12912:objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12913:SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12914:ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12915:MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12916:lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12917:lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12918:lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12919:lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12920:lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12921:need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12922:DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12923:NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12924:LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12925:OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12926:OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12927:libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12928:shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12929:extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12930:archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12931:enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12932:export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12933:whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12934:compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12935:old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12936:old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12937:archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12938:archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12939:module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12940:module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12941:with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12942:allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12943:no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12944:hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12945:hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12946:hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12947:hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12948:hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12949:hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12950:hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12951:hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12952:inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12953:link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12954:fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12955:always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12956:export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12957:exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12958:include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12959:prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12960:file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12961:variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12962:need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12963:need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12964:version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12965:runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12966:shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12967:shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12968:libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12969:library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12970:soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12971:postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12972:postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12973:finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12974:finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12975:hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12976:sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12977:sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12978:hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12979:enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12980:enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12981:enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12982:old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:12983:striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`' eclipse-titan-7.1.1/mctr2/editline/libedit/configure-12984- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13047-striplib; do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13048: case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13049- *[\\\\\\\`\\"\\\$]*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13050: eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13051- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13076-sys_lib_dlsearch_path_spec; do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13077: case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13078- *[\\\\\\\`\\"\\\$]*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13079: eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13080- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13088-case \$lt_ECHO in eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13089:*'\\\$0 --fallback-echo"') lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13090- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13182-fi eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13183:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13184-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13199- as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13200:ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13201-ac_delim='%!_!# ' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13205- eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13206: ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13207- if test $ac_delim_n = $ac_delim_num; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13335-for ac_last_try in false false :; do eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13336: ac_t=`sed -n "/$ac_delim/p" confdefs.h` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13337- if test -z "$ac_t"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13467- esac eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13468: case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13469- as_fn_append ac_file_inputs " '$ac_f'" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13526-*) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13527: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13528- # A ".." for each directory in $ac_dir_suffix. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13529: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13530- case $ac_top_builddir_sub in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13587-/@mandir@/p' eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13588:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13589-*datarootdir*) ac_datarootdir_seen=yes;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13604- eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13605:# Neutralize VPATH when `$srcdir' = `.'. eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13606-# Shell code in configure.ac might set extrasub. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13632-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13633: { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13634: { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13635- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13677- * ) eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13678: _am_stamp_count=`expr $_am_stamp_count + 1` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13679- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13724- # Strip MF so we end up with the name of the file. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13725: mf=`echo "$mf" | sed -e 's/:.*$//'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13726- # Check whether this is an Automake generated Makefile or not. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13761- # from the Makefile without running `make'. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13762: DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13763- test -z "$DEPDIR" && continue eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13764: am__include=`sed -n 's/^am__include = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13765- test -z "am__include" && continue eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13766: am__quote=`sed -n 's/^am__quote = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13767- # When using ansi2knr, U may be empty or an underscore; expand it eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13768: U=`sed -n 's/^U = //p' < "$mf"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13769- # Find all dependency output files, they are included files with ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13822- eclipse-titan-7.1.1/mctr2/editline/libedit/configure:13823:# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. eclipse-titan-7.1.1/mctr2/editline/libedit/configure-13824-# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14337- # Extract subdirectory from the argument. eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14338: func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14339- if test "X$func_dirname_result" = "X${1}"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14348-{ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14349: func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14350-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14375-{ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14376: func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14377: func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14378-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14382-{ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14383: func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14384-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14388-{ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14389: func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14390-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14394-{ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14395: func_arith_result=`expr "$@"` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14396-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14401-{ eclipse-titan-7.1.1/mctr2/editline/libedit/configure:14402: func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` eclipse-titan-7.1.1/mctr2/editline/libedit/configure-14403-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-67- sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:68:tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-69- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-224- # Version 6 uses the directory in both cases. eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:225: dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-226- test "x$dir" = "x$object" && dir= eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:227: base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-228- if test "$libtool" = yes; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-253- # Do two passes, one to just change these to eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:254: # `$object: dependent.h' and one to simply `dependent.h:'. eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-255- sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-295- # Do two passes, one to just change these to eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:296: # `$object: dependent.h' and one to simply `dependent.h:'. eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-297- sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-311- # Much of this is similar to the tru64 case; see comments there. eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:312: dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-313- test "x$dir" = "x$object" && dir= eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:314: base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-315- if test "$libtool" = yes; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-355- # Subdirectories are respected. eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:356: dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-357- test "x$dir" = "x$object" && dir= eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:358: base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-359- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-501- done eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp:502: obj_suffix=`echo "$object" | sed 's/^.*\././'` eclipse-titan-7.1.1/mctr2/editline/libedit/depcomp-503- touch "$tmpdepfile" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-54-DIST_SOURCES = eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in:55:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-56-am__vpath_adj = case $$p in \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in:57: $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-58- *) f=$$p;; \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-59- esac; eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in:60:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-61-am__install_max = 40 eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-62-am__nobase_strip_setup = \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in:63: srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-64-am__nobase_strip = \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-342- else :; fi eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in:343: @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in:344: topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-345- list='$(DISTFILES)'; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-356- if test -d $$d/$$file; then \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in:357: dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/doc/Makefile.in-358- if test -d "$(distdir)/$$file"; then \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-260- test -n "$(EXEEXT)" || exit 0; \ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in:261: list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-262- echo " rm -f" $$list; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-292-.c.obj: eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in:293:@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-294-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-297-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in:298:@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-299- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-358-GTAGS: eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in:359: here=`$(am__cd) $(top_builddir) && pwd` \ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-360- && $(am__cd) $(top_srcdir) \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-366-distdir: $(DISTFILES) eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in:367: @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in:368: topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-369- list='$(DISTFILES)'; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-380- if test -d $$d/$$file; then \ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in:381: dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/examples/Makefile.in-382- if test -d "$(distdir)/$$file"; then \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-217- fi eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh:218: cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-219- *) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-269- dstdir=$dst eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh:270: dst=$dstdir/`basename "$src"` eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-271- dstdir_status=0 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-351- # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh:352: ls_ld_tmpdir=`ls -ld "$tmpdir"` eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-353- case $ls_ld_tmpdir in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-358- $mkdirprog -m$different_mode -p -- "$tmpdir" && { eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh:359: ls_ld_tmpdir_1=`ls -ld "$tmpdir"` eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-360- test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-418- case $prefix in eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh:419: *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-420- *) qprefix=$prefix;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-467- if $copy_on_change && eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh:468: old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh:469: new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eclipse-titan-7.1.1/mctr2/editline/libedit/install-sh-470- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-161- # Extract subdirectory from the argument. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:162: func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-163- if test "X$func_dirname_result" = "X${1}"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-167- fi eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:168: func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-169-} ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-193- progdir=$func_dirname_result eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:194: progdir=`cd "$progdir" && pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-195- progpath="$progdir/$progname" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-221-# Since each input `\' is now two `\'s, look for any number of runs of eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:222:# four `\'s followed by two `\'s and then a '$'. `\' that '$'. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-223-bs='\\' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-328- # ...otherwise throw away the child directory and loop eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:329: my_directory_path=`$ECHO "X$my_directory_path" | $Xsed -e "$dirname"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-330- done eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:331: my_dir_list=`$ECHO "X$my_dir_list" | $Xsed -e 's,:*$,,'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-332- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-363- # If mktemp works, use that first and foremost eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:364: my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-365- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-394- *[\\\`\"\$]*) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:395: func_quote_for_eval_unquoted_result=`$ECHO "X$1" | $Xsed -e "$sed_quote_subst"` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-396- *) ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-536- s/\$with_gnu_ld/'"$with_gnu_ld"'/ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:537: s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:538: s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-539- p ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-565- : eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:566:elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t'; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-567- # Yippee, $ECHO works! ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-685- # quotes we have to do it in 2 steps: eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:686: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-687- eval "$extractedcf" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1021- # but not from the CC environment variable when configure was run. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1022: " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) ;; eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1023- # Blanks at the start of $base_compile will cause this to fail ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1028- # Evaluate the configuration. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1029: eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1030- CC_quoted= ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1036- case "$@ " in eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1037: " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1038- # The compiler in the base compile command matches ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1213- *.[cCFSifmso] | \ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1214: *.ada | *.adb | *.ads | *.asm | \ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1215- *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1290- if test "$compiler_c_o" = no; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1291: output_obj=`$ECHO "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1292- lockfile="$output_obj.lock" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1309-*** ERROR, $lockfile exists and contains: eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1310:`cat $lockfile 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1311- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1358- if test "$need_locks" = warn && eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1359: test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1360- $ECHO "\ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1361-*** ERROR, $lockfile contains: eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1362:`cat $lockfile 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1363- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1407- if test "$need_locks" = warn && eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1408: test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1409- $ECHO "\ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1410-*** ERROR, $lockfile contains: eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1411:`cat $lockfile 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1412- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1665- test -n "$library_names" && \ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1666: func_warning "\`$file' was not linked with \`-export-dynamic'" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1667- continue ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1676- if test ! -f "$dir/$dlname"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1677: func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1678- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1694- # Get the absolute pathname. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:1695: absdir=`cd "$dir" && pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-1696- test -n "$absdir" && dir="$absdir" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2012- # Determine the prefix the user has applied to our future dir. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2013: inst_prefix_dir=`$ECHO "X$destdir" | $Xsed -e "s%$libdir\$%%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2014- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2025- # Stick the inst_prefix_dir data into the link command. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2026: relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2027- else eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2028: relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2029- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2185- fi eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2186: libfile="$libdir/"`$ECHO "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2187- if test -n "$libdir" && test ! -f "$libfile"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2188: func_warning "\`$lib' has not been installed in \`$libdir'" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2189- finalize=no ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2204- # Replace the output file specification. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2205: relink_command=`$ECHO "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2206- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2223- # Install the binary that we compiled earlier. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2224: file=`$ECHO "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2225- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2294- my_pic_p="${3-no}" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2295: my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2296- my_dlsyms= ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2334- # Add our own program objects to the symbol list. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2335: progfiles=`$ECHO "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2336- for progfile in $progfiles; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2517- if test -f "$output_objdir/$my_outputname.def"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2518: compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2519: finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2520- else eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2521: compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2522: finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2523- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2525- *) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2526: compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2527: finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2528- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2540- # Nullify the symbol file. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2541: compile_command=`$ECHO "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2542: finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2543- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2555- win32_libid_type="unknown" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2556: win32_fileres=`file -L $1 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2557- case $win32_fileres in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2652- darwin_curdir=`pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2653: darwin_base_archive=`basename "$darwin_archive"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2654: darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2655- if test -n "$darwin_arches"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2656: darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2657- darwin_arch= ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2667- ## Okay now we've a bunch of thin objects, gotta fatten them up :) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2668: darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2669- darwin_file= ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2671- for darwin_file in $darwin_filelist; do eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2672: darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2673- $LIPO -create -output "$darwin_file" $darwin_files ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2686- esac eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2687: my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2688- done ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2757- shift eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2758: elif test \"X\`{ \$ECHO '\t'; } 2>/dev/null\`\" = 'X\t'; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2759- # Yippee, \$ECHO works! ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2769- # Find the directory that this script lives in. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2770: thisdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2771- test \"x\$thisdir\" = \"x\$file\" && thisdir=. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2773- # Follow symbolic links until we get to the real thisdir. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2774: file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2775- while test -n \"\$file\"; do eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2776: destdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2777- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2785- eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2786: file=\`\$ECHO \"X\$file\" | \$Xsed -e 's%^.*/%%'\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2787: file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2788- done ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2816- case \"\$thisdir\" in eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2817: *[\\\\/]$objdir ) thisdir=\`\$ECHO \"X\$thisdir\" | \$Xsed -e 's%[\\\\/][^\\\\/]*$%%'\` ;; eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2818- $objdir ) thisdir=. ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2822- # Try to get the absolute directory name. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2823: absdir=\`cd \"\$thisdir\" && pwd\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2824- test -n \"\$absdir\" && thisdir=\"\$absdir\" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2832- if test ! -f \"\$progdir/\$program\" || eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2833: { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2834- test \"X\$file\" != \"X\$progdir/\$program\"; }; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2847- if test -n \"\$relink_command\"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2848: if relink_command_output=\`eval \$relink_command 2>&1\`; then : eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2849- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2879- # The second colon is a workaround for a bug in BeOS R4 sed eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2880: $shlibpath_var=\`\$ECHO \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2881- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2994- *cygwin* ) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:2995: func_to_host_path_tmp1=`cygpath -w "$1"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-2996- func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-3006- # the odd construction: eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:3007: func_to_host_path_tmp1=`winepath -w "$1" 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-3008- if test "$?" -eq 0 && test -n "${func_to_host_path_tmp1}"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-3073- *cygwin* ) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:3074: func_to_host_pathlist_tmp2=`cygpath -w -p "$func_to_host_pathlist_tmp1"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-3075- func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp2" |\ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4240- moreargs= eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:4241: for fil in `cat "$save_arg"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4242- do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4490- *) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:4491: absdir=`cd "$dir" && pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4492- test -z "$absdir" && \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4505- *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:4506: testbindir=`$ECHO "X$dir" | $Xsed -e 's*/lib$*/bin*'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4507- case :$dllsearchpath: in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4927- # get the directories listed in $shlibpath_var eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:4928: eval shlib_search_path=\`\$ECHO \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-4929- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5053- for deplib in $dependency_libs; do eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5054: deplib_base=`$ECHO "X$deplib" | $Xsed -e "$basename"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5055- case " $weak_libs " in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5231- set dummy $deplibs_check_method; shift eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5232: match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5233- if eval "\$ECHO \"X$deplib\"" 2>/dev/null | $Xsed -e 10q \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5294- else eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5295: func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5296- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5323- if test -n "$inherited_linker_flags"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5324: tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed -e 's/-framework \([^ $]*\)/\1.ltframework/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5325- for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5331- fi eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5332: dependency_libs=`$ECHO "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5333- if test "$linkmode,$pass" = "lib,link" || ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5398- *) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5399: abs_ladir=`cd "$ladir" && pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5400- if test -z "$abs_ladir"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5624- shift eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5625: libname=`eval "\\$ECHO \"$libname_spec\""` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5626- # use dlname if we got it. it's perfectly good, no? ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5908- *) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5909: absdir=`cd "$dir" && pwd` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5910- if test -z "$absdir"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5919- depdepl= eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5920: eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5921- if test -n "$deplibrary_names" ; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5926- depdepl="$absdir/$objdir/$depdepl" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5927: darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5928- if test -z "$darwin_install_name"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5929: darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5930- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5941- else eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5942: eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5943- test -z "$libdir" && \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5964- else eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:5965: compiler_flags="$compiler_flags "`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-5966- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6113- test "$module" = no && \ eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6114: func_fatal_help "libtool library \`$output' must begin with \`lib'" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6115- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6250- if test "$age" -gt "$current"; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6251: func_error "AGE \`$age' is greater than the current interface number \`$current'" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6252- func_fatal_error "\`$vinfo' is not valid version information" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6411- removelist= eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6412: tempremovelist=`$ECHO "$output_objdir/*"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6413- for p in $tempremovelist; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6437- # Transform .lo files to .o files. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6438: oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6439- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6442- #for path in $notinst_path; do eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6443: # lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6444: # deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6445: # dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6446- #done ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6562- if test -n "$i" ; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6563: libname=`eval "\\$ECHO \"$libname_spec\""` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6564: deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6565- set dummy $deplib_matches; shift eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6566- deplib_match=$1 eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6567: if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6568- newdeplibs="$newdeplibs $i" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6605- if test -n "$i" ; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6606: libname=`eval "\\$ECHO \"$libname_spec\""` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6607: deplib_matches=`eval "\\$ECHO \"$library_names_spec\""` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6608- set dummy $deplib_matches; shift eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6609- deplib_match=$1 eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6610: if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6611- newdeplibs="$newdeplibs $i" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6640- set dummy $deplibs_check_method; shift eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6641: file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6642- for a_deplib in $deplibs; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6655- if test -n "$a_deplib" ; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6656: libname=`eval "\\$ECHO \"$libname_spec\""` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6657- for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6658: potential_libs=`ls $i/$libname[.-]* 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6659- for potent_lib in $potential_libs; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6671- while test -h "$potlib" 2>/dev/null; do eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6672: potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6673- case $potliblink in eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6674- [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6675: *) potlib=`$ECHO "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6676- esac ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6712- set dummy $deplibs_check_method; shift eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6713: match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6714- for a_deplib in $deplibs; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6727- if test -n "$a_deplib" ; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6728: libname=`eval "\\$ECHO \"$libname_spec\""` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6729- for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6730: potential_libs=`ls $i/$libname[.-]* 2>/dev/null` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6731- for potent_lib in $potential_libs; do ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6771- # can't use Xsed below, because $i might contain '/' eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6772: tmp_deplibs=`$ECHO "X $tmp_deplibs" | $Xsed -e "s,$i,,"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6773- done ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6796- # On Rhapsody replace the C library with the System framework eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6797: newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's/ -lc / System.ltframework /'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6798- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6848- *-*-darwin*) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6849: newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6850: new_inherited_linker_flags=`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6851: deplibs=`$ECHO "X $deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6852- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6972- # Use standard objects if they are pic eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6973: test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6974- test "X$libobjs" = "X " && libobjs= ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6987- # exporting using user supplied symfile eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:6988: if test "x`$SED 1q $export_symbols`" != xEXPORTS; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-6989- # and it's NOT already a .def file. Must figure out ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7139- save_output=$output eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7140: output_la=`$ECHO "X$output" | $Xsed -e "$basename"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7141- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7443- eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7444: reload_conv_objs=$reload_objs\ `$ECHO "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7445- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7454- # Create the old-style object. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7455: reload_objs="$objs$old_deplibs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7456- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7514- # On Rhapsody replace the C library is the System framework eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7515: compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7516: finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7517- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7532- # Time to change all our "foo.ltframework" stuff back to "-framework foo" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7533: compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7534: finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7535- ;; ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7610- *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7611: testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7612- case :$dllsearchpath: in ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7670- # Transform all the library objects into standard objects. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7671: compile_command=`$ECHO "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7672: finalize_command=`$ECHO "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7673- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7700- # Replace the output file specification. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7701: compile_command=`$ECHO "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7702- link_command="$compile_command$compile_rpath" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7747- # Replace the output file specification. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7748: link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7749- # Delete the old output file. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7766- if test "$fast_install" = yes; then eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7767: relink_command=`$ECHO "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7768- else ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7778- # Replace the output file specification. eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7779: link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7780- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7802- relink_command="(cd `pwd`; $relink_command)" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7803: relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7804- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7811- esac eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7812: qecho=`$ECHO "X$qecho" | $Xsed -e "$sed_quote_subst"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7813- else eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:7814: qecho=`$ECHO "X$ECHO" | $Xsed -e "$sed_quote_subst"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-7815- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8045- relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:8046: relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8047- if test "$hardcode_automatic" = yes ; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8065- name="$func_basename_result" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:8066: eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8067- test -z "$libdir" && \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8081- name="$func_basename_result" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:8082: eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8083- test -z "$libdir" && \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8100- name="$func_basename_result" eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:8101: eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8102- test -z "$libdir" && \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8404-# ### BEGIN LIBTOOL TAG CONFIG: disable-static eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh:8405:build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` eclipse-titan-7.1.1/mctr2/editline/libedit/ltmain.sh-8406-# ### END LIBTOOL TAG CONFIG: disable-static ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-139- # Could not run --version or --help. This is probably someone eclipse-titan-7.1.1/mctr2/editline/libedit/missing:140: # running `$TOOL --version' or `$TOOL --help' to check whether eclipse-titan-7.1.1/mctr2/editline/libedit/missing-141- # $TOOL exists and not knowing $TOOL uses missing. ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-173- from any GNU archive site." eclipse-titan-7.1.1/mctr2/editline/libedit/missing:174: files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-175- test -z "$files" && files="config.h" ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-202- proper tools for further handling them. eclipse-titan-7.1.1/mctr2/editline/libedit/missing:203: You can get \`$1' as part of \`Autoconf' from any GNU eclipse-titan-7.1.1/mctr2/editline/libedit/missing-204- archive site." eclipse-titan-7.1.1/mctr2/editline/libedit/missing-205- eclipse-titan-7.1.1/mctr2/editline/libedit/missing:206: file=`echo "$*" | sed -n "$sed_output"` eclipse-titan-7.1.1/mctr2/editline/libedit/missing:207: test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-208- if test -f "$file"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-231- *.y) eclipse-titan-7.1.1/mctr2/editline/libedit/missing:232: SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-233- if test -f "$SRCFILE"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-235- fi eclipse-titan-7.1.1/mctr2/editline/libedit/missing:236: SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-237- if test -f "$SRCFILE"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-261- *.l) eclipse-titan-7.1.1/mctr2/editline/libedit/missing:262: SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-263- if test -f "$SRCFILE"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-280- eclipse-titan-7.1.1/mctr2/editline/libedit/missing:281: file=`echo "$*" | sed -n "$sed_output"` eclipse-titan-7.1.1/mctr2/editline/libedit/missing:282: test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-283- if test -f "$file"; then ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-300- # The file to touch is that specified with -o ... eclipse-titan-7.1.1/mctr2/editline/libedit/missing:301: file=`echo "$*" | sed -n "$sed_output"` eclipse-titan-7.1.1/mctr2/editline/libedit/missing:302: test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-303- if test -z "$file"; then eclipse-titan-7.1.1/mctr2/editline/libedit/missing-304- # ... or it is the one specified with @setfilename ... eclipse-titan-7.1.1/mctr2/editline/libedit/missing:305: infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-306- file=`sed -n ' ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-312- # ... or it is derived from the source name (dir/f.texi becomes f.info) eclipse-titan-7.1.1/mctr2/editline/libedit/missing:313: test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info eclipse-titan-7.1.1/mctr2/editline/libedit/missing-314- fi ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-336- *o*) eclipse-titan-7.1.1/mctr2/editline/libedit/missing:337: firstarg=`echo "$firstarg" | sed s/o//` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-338- tar "$firstarg" "$@" && exit 0 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/missing-342- *h*) eclipse-titan-7.1.1/mctr2/editline/libedit/missing:343: firstarg=`echo "$firstarg" | sed s/h//` eclipse-titan-7.1.1/mctr2/editline/libedit/missing-344- tar "$firstarg" "$@" && exit 0 ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-51-CONFIG_CLEAN_VPATH_FILES = eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:52:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-53-am__vpath_adj = case $$p in \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:54: $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-55- *) f=$$p;; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-56- esac; eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:57:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-58-am__install_max = 40 eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-59-am__nobase_strip_setup = \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:60: srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-61-am__nobase_strip = \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-326- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:327: dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-328- test "$$dir" != "$$p" || dir=.; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-382-.c.obj: eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:383:@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-384-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-387-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:388:@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-389- ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-421- @list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:422: $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-423- test -n "$$files" || exit 0; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-471-GTAGS: eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:472: here=`$(am__cd) $(top_builddir) && pwd` \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-473- && $(am__cd) $(top_srcdir) \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-479-distdir: $(DISTFILES) eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:480: @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:481: topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-482- list='$(DISTFILES)'; \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-493- if test -d $$d/$$file; then \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in:494: dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ eclipse-titan-7.1.1/mctr2/editline/libedit/src/Makefile.in-495- if test -d "$(distdir)/$$file"; then \ ############################################## eclipse-titan-7.1.1/mctr2/editline/libedit/src/makelist-65--h) eclipse-titan-7.1.1/mctr2/editline/libedit/src/makelist:66: set - `echo $FILES | sed -e 's/\\./_/g'` eclipse-titan-7.1.1/mctr2/editline/libedit/src/makelist:67: hdr="_h_`basename $1`" eclipse-titan-7.1.1/mctr2/editline/libedit/src/makelist-68- cat $FILES | $AWK ' ############################################## eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-462- // name might be an IP address or a DNS alias eclipse-titan-7.1.1/mctr2/mctr/MainController.cc:463: IPAddress *ip_addr = IPAddress::create_addr(nh.get_family()); eclipse-titan-7.1.1/mctr2/mctr/MainController.cc:464: if (ip_addr->set_addr(name)) { eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-465- // check if IP addresses match ############################################## eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-2628-{ eclipse-titan-7.1.1/mctr2/mctr/MainController.cc:2629: IPAddress *remote_addr = IPAddress::create_addr(nh.get_family()); eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-2630- int fd = remote_addr->accept(p_server_fd); ############################################## eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-2639- delete remote_addr; eclipse-titan-7.1.1/mctr2/mctr/MainController.cc:2640: new_connection->ip_addr = IPAddress::create_addr("127.0.0.1"); eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-2641- } ############################################## eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-6298- eclipse-titan-7.1.1/mctr2/mctr/MainController.cc:6299: IPAddress *localaddr = IPAddress::create_addr(nh.get_family()); eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-6300- if (localaddr) localaddr->set_port(tcp_port); ############################################## eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-6302- if (local_address != NULL) { eclipse-titan-7.1.1/mctr2/mctr/MainController.cc:6303: if (!localaddr || !localaddr->set_addr(local_address, tcp_port)) { eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-6304- error("Cannot resolve host name `%s' to a local IP address: " ############################################## eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-6312- eclipse-titan-7.1.1/mctr2/mctr/MainController.cc:6313: if (bind(server_fd, localaddr->get_addr(), localaddr->get_addr_len())) { eclipse-titan-7.1.1/mctr2/mctr/MainController.cc-6314- if (local_address != NULL) { ############################################## eclipse-titan-7.1.1/mctr2/mctr/config_data.h-44- , component_list(0), component_list_len(0) eclipse-titan-7.1.1/mctr2/mctr/config_data.h:45: , local_addr(0) eclipse-titan-7.1.1/mctr2/mctr/config_data.h-46- , tcp_listen_port(0) ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/run_perftest.sh-29- # filter out the useful info: eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/run_perftest.sh:30: CPS_RESULT=`grep "final max CPS result" ${XML_NAME} | sed -e 's!.*<tq0001:result name=.final max CPS result. unit=.-.>\([0-9]*\).*</tq0001:result>.*!\1!g'` eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/run_perftest.sh-31- echo "cps result:$CPS_RESULT<<" ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Abstract_Socket.hh-138- const unsigned int get_remote_port_number(){return remote_port_number; }; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Abstract_Socket.hh:139: const struct sockaddr_in & get_remote_addr() {return remoteAddr; }; /* FIXME: This function is deprecated and should be removed! */ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Abstract_Socket.hh:140: const struct sockaddr_in & get_local_addr() {return localAddr; }; /* FIXME: This function is deprecated and should be removed! */ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Abstract_Socket.hh-141- const int& get_ai_family() const {return ai_family;} ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-254- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:255: if(pdu.header().srcaddr().lengthof() < 4) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-256- TTCN_Logger::begin_event(TTCN_WARNING); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-257- TTCN_Logger::log_event_str("f_EPTF_TransportIPL2_encodeIP: invalid source IP address "); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:258: pdu.header().srcaddr().log(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-259- TTCN_Logger::end_event(); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-261- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:262: if(pdu.header().dstaddr().lengthof() < 4) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-263- TTCN_Logger::begin_event(TTCN_WARNING); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-264- TTCN_Logger::log_event_str("f_EPTF_TransportIPL2_encodeIP: invalid destination IP address "); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:265: pdu.header().dstaddr().log(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-266- TTCN_Logger::end_event(); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-289- *p++ = 0; // checksum LSB eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:290: const unsigned char* addr = (const unsigned char*) pdu.header().srcaddr(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-291- *p++ = addr[0]; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-294- *p++ = addr[3]; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:295: addr = (const unsigned char*) pdu.header().dstaddr(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-296- *p++ = addr[0]; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-359- p+=2; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:360: pdu.header().srcaddr() = OCTETSTRING(4, p); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-361- p+=4; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc:362: pdu.header().dstaddr() = OCTETSTRING(4, p); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_ExternalFunctions.cc-363- p+=4; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_Functions.ttcn-1298- if(lengthof(v_EPTF_TransportIPL2_nameCache.addresses[vl_idx]) == 0) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_Functions.ttcn:1299: v_EPTF_TransportIPL2_nameCache.addresses[vl_idx] := f_OctetIpv4(f_getIpAddr(pl_hostName)); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_CLL_TransportIPL2_Functions.ttcn-1300- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1026- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn:1027: f_EPTF_SIP_getUserData_id_addr(pl_userIdx, pl_contactId, p_contact.contactBody.contactAddresses[0].addressField); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1028-} ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1132- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn:1133:function f_EPTF_SIP_FlatSipUrl2NameAddr( eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1134- in SIP_FlatSipUrl pl_flat, ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1165- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn:1166: f_EPTF_SIP_getUserData_id_addr(pl_userIdx, pl_idx, pl_addr.addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1167- pl_addr.password := v_db_users.data[pl_userIdx].iD[pl_idx].password; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1181- //////////////////////////////////////////////////// eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn:1182: function f_EPTF_SIP_getUserData_id_addr(in integer pl_userIdx, in integer pl_idx, out Addr_Union pl_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1183- runs on EPTF_SIP_LGen_CT ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1682- pl_route[vl_idx] := {{omit, cg_SipUrl_base}, omit}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn:1683: f_EPTF_SIP_FlatSipUrl2NameAddr(pl_routeBodyList[i].routeAddr, pl_route[vl_idx].nameAddr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_Common_Functions.ttcn-1684- pl_route[vl_idx].rrParam := pl_routeBodyList[i].rrParam; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_MessageCreator_Functions.ttcn-1496- var Addr_Union addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_MessageCreator_Functions.ttcn:1497: f_EPTF_SIP_getUserData_id_addr(pl_userIdx, vl_contactId, addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_MessageCreator_Functions.ttcn-1498- f_EPTF_SIP_updateContact(pl_header.contact, ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-1742- var Addr_Union vl_to, vl_from; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:1743: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_users.data[v_currentUser].regData.currentID, vl_from); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-1744- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-1746- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:1747: f_EPTF_SIP_getCalledUser_addr(v_currentUser, v_db_users.data[v_currentUser].regData.toIdx.calledUser, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-1748- }else{ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:1749: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_users.data[v_currentUser].regData.toIdx.userId, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-1750- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-2079- var Addr_Union vl_to, vl_from; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:2080: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_users.data[v_currentUser].regData.currentID, vl_from); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-2081- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-2083- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:2084: f_EPTF_SIP_getCalledUser_addr(v_currentUser, v_db_users.data[v_currentUser].regData.toIdx.calledUser, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-2085- }else{ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:2086: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_users.data[v_currentUser].regData.toIdx.userId, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-2087- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-2382- var Addr_Union vl_to, vl_from; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:2383: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_users.data[v_currentUser].regData.currentID, vl_from); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:2384: f_EPTF_SIP_getCalledUser_addr(v_currentUser, vl_calledUser, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-2385- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-3361- var Addr_Union vl_to; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:3362: f_EPTF_SIP_getCalledUser_addr(v_currentUser, vl_calledUser, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-3363- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-3370- var Addr_Union vl_from; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:3371: f_EPTF_SIP_getUserData_id_addr(v_currentUser, vl_idIdx, vl_from); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-3372- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-3909- var Addr_Union addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:3910: f_EPTF_SIP_getUserData_id_addr(v_currentUser, vl_idIdx, addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-3911- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-4572- var Addr_Union addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:4573: f_EPTF_SIP_getUserData_id_addr(v_currentUser, vl_idIdx, addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-4574- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5113- var Addr_Union vl_to, vl_from; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:5114: f_EPTF_SIP_getUserData_id_addr(v_currentUser, vl_idIdx, vl_from); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5115- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5118- vl_toIdx := {calledUser := vl_calledUser}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:5119: f_EPTF_SIP_getCalledUser_addr(v_currentUser, vl_calledUser, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5120- }else{ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5494- var Addr_Union vl_to, vl_from; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:5495: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_users.data[v_currentUser].regData.currentID, vl_from); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5496- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5498- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:5499: f_EPTF_SIP_getCalledUser_addr(v_currentUser, v_db_publish.data[vl_publish].escURI.calledUser, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5500- }else{ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:5501: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_publish.data[vl_publish].escURI.userId, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-5502- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-7471- var Addr_Union vl_from; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:7472: f_EPTF_SIP_getUserData_id_addr(v_currentUser, v_db_users.data[v_currentUser].regData.currentID, vl_from); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-7473- var Addr_Union vl_to := vl_from; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-7476- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:7477: f_EPTF_SIP_getCalledUser_addr(v_currentUser, vl_calledUser, vl_to); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-7478- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-8869- var Addr_Union vl_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:8870: f_EPTF_SIP_getCalledUser_addr(pl_userIdx, pl_calledUser, vl_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-8871- f_EPTF_SIP_GetRequestUri( ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-8879- var Addr_Union addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn:8880: f_EPTF_SIP_getUserData_id_addr(pl_userIdx, pl_idIdx, addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_TestSteps.ttcn-8881- f_EPTF_SIP_GetRequestUri(addr, v_db_users.data[pl_userIdx].regData.registrar); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-255-//////////////////////////////////////////////////// eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn:256:function f_EPTF_SIP_setUserData_id_addr(in integer pl_userIdx, in integer pl_idx, in Addr_Union pl_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-257-runs on EPTF_SIP_LGen_CT ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-264- // {see module EPTF_SIP_Common_Functions} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn:265: //function f_EPTF_SIP_getUserData_id_addr(in integer pl_userIdx, in integer pl_idx, out Addr_Union pl_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-266- //runs on EPTF_SIP_LGen_CT ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-778- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn:779: f_EPTF_SIP_getUserData_id_addr(f_EPTF_LGenBase_getBehaviorCtxItem(pl_entityIdx, v_SIP_myBIdx, 0), pl_iDindex, pl_uri); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-780- }else{ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-792- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn:793: f_EPTF_SIP_getCalledUser_addr(f_EPTF_LGenBase_getBehaviorCtxItem(pl_entityIdx, v_SIP_myBIdx, 0), pl_calledUser, pl_uri); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-794- }else{ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-801-// note: this function gets the called user by SIP User index eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn:802:function f_EPTF_SIP_getCalledUser_addr(in integer pl_userIdx, in integer pl_calledUser, inout Addr_Union pl_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-803-runs on EPTF_SIP_LGen_CT ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-808-// note: this function gets the called user by SIP User index eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn:809:function f_EPTF_SIP_getForwardedToUser_addr(in integer pl_userIdx, in integer pl_forwardedToUser, inout Addr_Union pl_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-810-runs on EPTF_SIP_LGen_CT ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-815-// note: this function gets the called user by SIP User index eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn:816:function f_EPTF_SIP_getAdditionalHost_addr(in integer pl_userIdx, in integer pl_additionalHost, inout Addr_Union pl_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/EPTF_SIP_UserDatabase_Functions.ttcn-817-runs on EPTF_SIP_LGen_CT ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-108- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:109:int SetLocalSockAddr(const char* debug_str, IPL4asp__PT_PROVIDER& portRef, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-110- int def_addr_family, ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-128- if (locPort != -1 && !locName_empty) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:129: hp = SetSockAddr(locName, locPort, sockAddr, sockAddrLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-130- else if (locPort == -1 && locName_empty) { // use default host and port ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-132- def_loc_host, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:133: hp = SetSockAddr(def_loc_host, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-134- portRef.defaultLocPort, sockAddr, sockAddrLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-137- locName, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:138: hp = SetSockAddr(locName, portRef.defaultLocPort, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-139- sockAddr, sockAddrLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-142- def_loc_host, locPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:143: hp = SetSockAddr(def_loc_host, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-144- locPort, sockAddr, sockAddrLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-148- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:149:int SetSockAddr(const char *name, int port, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-150- SockAddr& sa, socklen_t& saLen) { ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-1600-#endif eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:1601: if (SetSockAddr(asp.remName(), asp.remPort(), to, toLen) == -1) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-1602- setResult(result,PortError::ERROR__HOSTNAME, asp.connId()); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-1608-#ifdef USE_SCTP eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:1609: if (SetSockAddr(asp.remName(), asp.remPort(), to, toLen) == -1) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-1610- setResult(result,PortError::ERROR__HOSTNAME, asp.connId()); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2832- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:2833: hp=SetLocalSockAddr("f__IPL4__PROVIDER__listen",portRef,AF_INET,locName, locPort, sockAddr, sockAddrLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2834-// if (locPort != -1 && locName != "") eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:2835:// hp = SetSockAddr(locName, locPort, sockAddr, sockAddrLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2836-// else if (locPort == -1 && locName == "") { // use default host and port ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2838-// portRef.defaultLocHost, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:2839:// hp = SetSockAddr(HostName(portRef.defaultLocHost), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2840-// portRef.defaultLocPort, sockAddr, sockAddrLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2843-// (const char *)locName, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:2844:// hp = SetSockAddr(locName, portRef.defaultLocPort, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2845-// sockAddr, sockAddrLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2848-// portRef.defaultLocHost, (int)locPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:2849:// hp = SetSockAddr(HostName(portRef.defaultLocHost), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2850-// locPort, sockAddr, sockAddrLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2886- socklen_t saLoc2Len; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:2887: int hp3 = SetLocalSockAddr("f__IPL4__PROVIDER__connect",portRef,hp,options[addr_index].sctpAdditionalLocalAddresses()[i], locPort, saLoc2, saLoc2Len); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-2888-portRef.debug("f__IPL4__PROVIDER__listen: addr added Family: %s ",hp3==-1?"Error":hp3==AF_INET?"AF_INET":"AF_INET6"); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3104- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3105: if ((hp = SetSockAddr(remName, remPort, saRem, saRemLen)) == -1) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3106- SET_OS_ERROR_CODE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3145- socklen_t saLoc2Len; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3146: int hp3 = SetLocalSockAddr("f__IPL4__PROVIDER__connect",portRef,hp,proto.sctp().remSocks()()[i].hostName(), remPort, saLoc2, saLoc2Len); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3147-portRef.debug("f__IPL4__PROVIDER__listen: addr added Family: %s ",hp3==-1?"Error":hp3==AF_INET?"AF_INET":"AF_INET6"); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3202- //struct hostent *hp = NULL; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3203: int hp2 = SetLocalSockAddr("f__IPL4__PROVIDER__connect",portRef,hp,locName, locPort, saLoc, saLocLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3204-// if (locPort != -1 && locName != "") eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3205:// hp = SetSockAddr(locName, locPort, saLoc, saLocLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3206-// else if (locName == "" && locPort == -1) { // use default host and port ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3208-// portRef.defaultLocHost, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3209:// hp = SetSockAddr(HostName(portRef.defaultLocHost), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3210-// portRef.defaultLocPort, saLoc, saLocLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3213-// (const char *)locName, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3214:// hp = SetSockAddr(locName, portRef.defaultLocPort, saLoc, saLocLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3215-// } else { // use default host ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3217-// portRef.defaultLocHost, (int)locPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3218:// hp = SetSockAddr(HostName(portRef.defaultLocHost), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3219-// locPort, saLoc, saLocLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3280- //struct hostent *hp = NULL; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3281: int hp2 = SetLocalSockAddr("f__IPL4__PROVIDER__connect",portRef,hp,locName, locPort, saLoc, saLocLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3282- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3283-// if (locPort != -1 && locName != "") eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3284:// hp = SetSockAddr(locName, locPort, saLoc, saLocLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3285-// else if (locName == "" && locPort == -1) { // use default host and port ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3287-// portRef.defaultLocHost, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3288:// hp = SetSockAddr(HostName(portRef.defaultLocHost), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3289-// portRef.defaultLocPort, saLoc, saLocLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3292-// (const char *)locName, portRef.defaultLocPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3293:// hp = SetSockAddr(locName, portRef.defaultLocPort, saLoc, saLocLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3294-// } else { // use default host ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3296-// portRef.defaultLocHost, (int)locPort); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3297:// hp = SetSockAddr(HostName(portRef.defaultLocHost), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3298-// locPort, saLoc, saLocLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3333- socklen_t saLoc2Len; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:3334: int hp3 = SetLocalSockAddr("f__IPL4__PROVIDER__connect",portRef,hp2,options[addr_index].sctpAdditionalLocalAddresses()[i], locPort, saLoc2, saLoc2Len); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-3335-portRef.debug("f__IPL4__PROVIDER__listen: addr added Family: %s ",hp3==-1?"Error":hp3==AF_INET?"AF_INET":"AF_INET6"); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-5159- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:5160: hp=SetLocalSockAddr("f__IPL4__PROVIDER__listen",*this,AF_INET,locName, locPort, sockAddr, sockAddrLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-5161- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-5183- for(int i=1; i<num_of_addr;i++){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc:5184: hp=SetLocalSockAddr("f__IPL4__PROVIDER__listen",*this,AF_INET,options[addr_index].sctpAdditionalLocalAddresses()[i-1], locPort, sockAddr, sockAddrLen); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.cc-5185- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-194- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:195:int SetSockAddr(const char *name, int port, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-196- SockAddr& sa, socklen_t& saLen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-268- connection_method ( METHOD_ZERO ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:269: tcpReuseAddr ( YES ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-270-#ifdef LINUX eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:271: udpReuseAddr ( YES ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:272: sctpReuseAddr ( YES ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-273-#else eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:274: udpReuseAddr ( NO ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:275: sctpReuseAddr ( NO ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-276-#endif eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:277: sslReuseAddr(YES), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-278- tcpKeepAlive ( NOT_SET ), ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-782- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh:783:int SetLocalSockAddr(const char* debug_str, IPL4asp__PT_PROVIDER& portRef, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_PT.hh-784- int def_addr_family, ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-183- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:184:inline bool strToEtherAddr ( const char * src, EtherAddr & dst ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-185- unsigned int addr[6]; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-472- if ( ifExpIpAddress != 0 ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:473: ifExpIp = IPAddr ( ifExpIpAddress ); // TODO: IPv6 eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-474- debug ( "EtherIf::find(): requested ifIp: %s", ifExpIp.asStr () ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-475- } else if ( ifExclIpAddress != 0 ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:476: ifExclIp = IPAddr ( ifExclIpAddress ); // TODO: IPv6 eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-477- debug ( "EtherIf::find(): requested ifExclIp: %s", ifExclIp.asStr () ); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-745- unsigned char pad[2]; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:746: inline DhcpCInfo () : leaseExpire ( 0 ), etherAddr ( ETHER_ADDR_ZERO ) {} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-747-}; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1178- if ( leaseExpire + d >= (unsigned int) now.tv_sec ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1179: clients[ixAddr].ipAddr = IPAddr ( ipAddr ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1180- if ( clients[ixAddr].ipAddr.len == 0 ) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1181- throw "Error in file contents format"; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1182: if ( ! strToEtherAddr ( etherAddr, clients[ixAddr].etherAddr ) ) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1183- throw "Error in file contents format"; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1247- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1248:EtherAddr * incrEtherAddr ( EtherAddr * dst, unsigned int cnt = 1, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1249- const EtherAddr * src = 0 ) ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1261- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1262:int cmpEtherAddr ( const void * p1, const void * p2 ) // for qsort eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1263-{ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1281- while ( j < iNew && memcmp ( etherAddr.bytes, exc[j]->bytes, 6 ) == 0 ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1282: incrEtherAddr ( ðerAddr ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1283- ++j; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1285- clients[i].etherAddr = etherAddr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1286: incrEtherAddr ( & etherAddr ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1287- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1291- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1292:int cmpIPv4Addr ( const void * p1, const void * p2 ) // for qsort eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1293-{ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1295-} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1296:int cmpIPAddr ( const void * p1, const void * p2 ) // for qsort eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1297-{ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1501-// from the real IP address offset with the index eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1502:IPAddr makeIPAddr ( unsigned int index, const IPAddr & realIpAddr, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1503- const IPAddr & netMask ) { ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1608- if ( sender == eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1609: makeIPAddr( msgInfo[i].index, realIpAddr, netMask ) ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1610- debug ( "createIpAddrsWithARP(): IP address %s cannot be used", ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1625- if ( msgInfo[i].nSent > arpMsgRetransmitCount ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1626: ipAddrs[ixNextIP++] = makeIPAddr( msgInfo[i].index, realIpAddr, netMask ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1627- //debug ( "createIpAddrsWithARP(): IP address %s is selected", ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1633- etherAddr, realIpAddr, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1634: ETHER_BC_ADDR, makeIPAddr( msgInfo[i].index, realIpAddr, netMask ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1635- ARPHdr::REQUEST ); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1651- etherAddr, realIpAddr, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1652: ETHER_BC_ADDR, makeIPAddr( offsIP, realIpAddr, netMask ), eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1653- ARPHdr::REQUEST ); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1658- msgInfo[nUnansweredMsg++].set ( offsIP++, 0 ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1659: while ( !isIPAddrValid ( makeIPAddr( offsIP, realIpAddr, netMask ), netMask ) ) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1660- ++offsIP; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1707- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1708: EtherAddr etherAddr ( 0x10, 0x00, 0x00, 0x00, 0x00, 0x00 ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1709- if ( cCTS ( ethernetAddress ) ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc:1710: if ( ! strToEtherAddr ( ethernetAddress, etherAddr ) ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_discovery.cc-1711- TTCN_warning ( "f__findIpAddressesWithDhcp(): ethernetAddress is invalid" ); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-57- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:58: inline EtherAddr ( unsigned int b0, unsigned int b1, unsigned int b2, eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-59- unsigned int b3, unsigned int b4, unsigned int b5 ) { ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-62- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:63: inline EtherAddr ( unsigned char * buf, unsigned int len ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-64- (void) len; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-67- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:68: inline EtherAddr () {} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-69- const char * asStr() const; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-76- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:77:static const EtherAddr ETHER_BC_ADDR ( 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-78- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-127- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:128: inline IPAddr () : v4 ( 0 ), len ( 0 ) {} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:129: inline IPAddr ( unsigned char * buf, unsigned int length ) : len ( length ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-130- memcpy ( bytes, buf, length ); } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:131: inline IPAddr ( const char * str ) : len ( 0 ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-132- if ( str != 0 ) ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-164- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh:165:inline IPAddr ipv4ToIPAddr ( unsigned int ipv4Addr ) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IPL4asp_protocol_L234.hh-166- IPAddr ipAddr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IP_EncDec.cc-92- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IP_EncDec.cc:93: if (field.srcaddr().ispresent()) datalen += 4; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/IP_EncDec.cc-94- cksum = Calculate_cksum(ptr, datalen); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-248- message.interface__id() = index; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:249: message.eth__dst__addr() = OCTETSTRING(ETH_ALEN,packet); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:250: message.eth__src__addr() = OCTETSTRING(ETH_ALEN,packet+ETH_ALEN); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-251- message.type__field() = OCTETSTRING(2,packet+ETH_ALEN+ETH_ALEN); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-255- ASP__LANL2 message; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:256: message.eth__dst__addr() = OCTETSTRING(ETH_ALEN,packet); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:257: message.eth__src__addr() = OCTETSTRING(ETH_ALEN,packet+ETH_ALEN); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-258- message.type__field() = OCTETSTRING(2,packet+ETH_ALEN+ETH_ALEN); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-351- asp.interface__name() = interface_name; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:352: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-353- asp.mtu() = OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-370- asp.interface__name() = interface_name; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:371: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-372- asp.mtu() = OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-396- asp.interface__name() = interface_name; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:397: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-398- asp.mtu() = OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-438- asp.interface__name() = interface_name; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:439: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-440- asp.mtu() = OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-467- asp.interface__name() = interface_name; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:468: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-469- asp.mtu() = OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-487- asp.interface__name() = interface_name; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:488: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-489- asp.mtu() = OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-525- /* Set destination MAC addresses from ASP_LANL2 */ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:526: if (send_par.eth__dst__addr().lengthof() != ETH_ALEN) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:527: TTCN_error("LANL2asp_PT('%s'): Length of 'eth_dst_addr' is not of correct size (expected: %d, given: %d octets).",port_name,ETH_ALEN,send_par.eth__dst__addr().lengthof()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-528- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-534- /* Set source MAC addresses (from ASP_LANL2 or HW) */ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:535: if (!send_par.eth__src__addr().ispresent()) { //if not set in ASP, get MAC address from HW eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-536- #ifdef LINUX eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:537: send_packet(0,(const unsigned char*)send_par.eth__dst__addr(),interface_list[0]->src_mac_address,oct2int(send_par.type__field()),send_par.payload()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-538- return; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-542- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:543: if (send_par.eth__src__addr()().lengthof() != ETH_ALEN) TTCN_error("LANL2asp_PT('%s'): Length of 'eth_src_addr' is not of correct size (expected: %d, given: %d octets).",port_name,ETH_ALEN,send_par.eth__src__addr()().lengthof()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:544: send_packet(0,(const unsigned char*)send_par.eth__dst__addr(),(const unsigned char*)send_par.eth__src__addr()(),oct2int(send_par.type__field()),send_par.payload()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-545- #endif ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-602- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:603: if (send_par.eth__dst__addr().lengthof() != ETH_ALEN) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:604: TTCN_error("LANL2asp_PT('%s'): Length of 'eth_dst_addr' is not of correct size (expected: %d, given: %d octets).",port_name,ETH_ALEN,send_par.eth__dst__addr().lengthof()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-605- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-611- /* Set source MAC addresses (from ASP_LANL2 or HW) */ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:612: if (!send_par.eth__src__addr().ispresent()) { //if not set in ASP, get MAC address from HW eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-613- #ifdef LINUX eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:614: send_packet(id,(const unsigned char*)send_par.eth__dst__addr(),interface_list[id]->src_mac_address,oct2int(send_par.type__field()),send_par.payload()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-615- return; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-619- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:620: if (send_par.eth__src__addr()().lengthof() != ETH_ALEN) TTCN_error("LANL2asp_PT('%s'): Length of 'eth_src_addr' is not of correct size (expected: %d, given: %d octets).",port_name,ETH_ALEN,send_par.eth__src__addr()().lengthof()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:621: send_packet(id,(const unsigned char*)send_par.eth__dst__addr(),(const unsigned char*)send_par.eth__src__addr()(),oct2int(send_par.type__field()),send_par.payload()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-622- #endif ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-641- if (interface_list[id]->src_mac_address) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:642: asp.default__src__addr() = OCTETSTRING(6,interface_list[id]->src_mac_address); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-643- } else { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:644: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-645- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-672- const unsigned char* loc_src_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:673: if (send_par.default__src__addr().ispresent()) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:674: loc_src_addr=send_par.default__src__addr()(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-675- } else { ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-689- if (interface_list[id]->src_mac_address) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:690: asp.default__src__addr() = OCTETSTRING(6,interface_list[id]->src_mac_address); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-691- } else { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:692: asp.default__src__addr() = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-693- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-802- asp.sent__asp()().interface__id()=id; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:803: asp.sent__asp()().eth__dst__addr()=OCTETSTRING(ETH_ALEN,dst_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:804: asp.sent__asp()().eth__src__addr()=OCTETSTRING(ETH_ALEN,src_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-805- asp.sent__asp()().type__field()=int2oct(ETH_ALEN,ether_type); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-813- asp.error__type()=LANL2__Error__Types::SEND__FAILED; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:814: asp.sent__asp()().eth__dst__addr()=OCTETSTRING(ETH_ALEN,dst_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:815: asp.sent__asp()().eth__src__addr()=OCTETSTRING(ETH_ALEN,src_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-816- asp.sent__asp()().type__field()=int2oct(ETH_ALEN,ether_type); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-844- asp.sent__asp()().interface__id()=id; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:845: asp.sent__asp()().eth__dst__addr()=OCTETSTRING(ETH_ALEN,dst_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:846: asp.sent__asp()().eth__src__addr()=OCTETSTRING(ETH_ALEN,src_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-847- asp.sent__asp()().type__field()=int2oct(ETH_ALEN,ether_type); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-855- asp.error__type()=LANL2__Error__Types::PARTIAL__SEND; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:856: asp.sent__asp()().eth__dst__addr()=OCTETSTRING(ETH_ALEN,dst_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc:857: asp.sent__asp()().eth__src__addr()=OCTETSTRING(ETH_ALEN,src_addr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/LANL2asp_PT.cc-858- asp.sent__asp()().type__field()=int2oct(ETH_ALEN,ether_type); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Makefile-67- eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Makefile:68:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Makefile-69-TTCN3_LIB = ttcn3-parallel ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Makefile-199- $(USER_HEADERS) $(USER_SOURCES) $(OTHER_FILES) \ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Makefile:200: | gzip >$(ARCHIVE_DIR)/`basename $(TARGET) .exe`-`date '+%y%m%d-%H%M'`.tgz eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/Makefile-201- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3564- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3565: headerptr->referred__by()().referer__uri().nameAddr().displayName() = (yyvsp[(3) - (7)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3566: headerptr->referred__by()().referer__uri().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3567- headerptr->referred__by()().refererParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3584- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3585: headerptr->referred__by()().referer__uri().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3586- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3587: headerptr->referred__by()().referer__uri().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3588- headerptr->referred__by()().refererParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3618- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3619: headerptr->referred__by()().referer__uri().nameAddr().displayName() = (yyvsp[(3) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3620: headerptr->referred__by()().referer__uri().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3621- headerptr->referred__by()().refererParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3633- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3634: headerptr->referred__by()().referer__uri().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3635- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3636: headerptr->referred__by()().referer__uri().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3637- headerptr->referred__by()().refererParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3661- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3662: headerptr->p__profile__key()().profile__key().nameAddr().displayName() = (yyvsp[(3) - (7)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3663: headerptr->p__profile__key()().profile__key().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3664- headerptr->p__profile__key()().profile__key__params()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3681- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3682: headerptr->p__profile__key()().profile__key().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3683- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3684: headerptr->p__profile__key()().profile__key().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3685- headerptr->p__profile__key()().profile__key__params()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3715- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3716: headerptr->p__profile__key()().profile__key().nameAddr().displayName() = (yyvsp[(3) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3717: headerptr->p__profile__key()().profile__key().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3718- headerptr->p__profile__key()().profile__key__params()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3730- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3731: headerptr->p__profile__key()().profile__key().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3732- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3733: headerptr->p__profile__key()().profile__key().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3734- headerptr->p__profile__key()().profile__key__params()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3758- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3759: headerptr->p__served__user()().served__user().nameAddr().displayName() = (yyvsp[(3) - (7)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3760: headerptr->p__served__user()().served__user().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3761- headerptr->p__served__user()().served__user__params()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3778- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3779: headerptr->p__served__user()().served__user().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3780- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3781: headerptr->p__served__user()().served__user().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3782- headerptr->p__served__user()().served__user__params()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3812- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3813: headerptr->p__served__user()().served__user().nameAddr().displayName() = (yyvsp[(3) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3814: headerptr->p__served__user()().served__user().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3815- headerptr->p__served__user()().served__user__params()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3827- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3828: headerptr->p__served__user()().served__user().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3829- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3830: headerptr->p__served__user()().served__user().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3831- headerptr->p__served__user()().served__user__params()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3875- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3876: headerptr->refer__to()().addr().nameAddr().displayName() = (yyvsp[(3) - (7)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3877: headerptr->refer__to()().addr().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3878- headerptr->refer__to()().referToParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3895- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3896: headerptr->refer__to()().addr().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3897- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3898: headerptr->refer__to()().addr().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3899- headerptr->refer__to()().referToParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3913- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3914: headerptr->refer__to()().addr().addrSpecUnion()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3915- headerptr->refer__to()().referToParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3929- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3930: headerptr->refer__to()().addr().nameAddr().displayName() = (yyvsp[(3) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3931: headerptr->refer__to()().addr().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3932- headerptr->refer__to()().referToParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3944- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3945: headerptr->refer__to()().addr().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3946- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3947: headerptr->refer__to()().addr().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3948- headerptr->refer__to()().referToParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3959- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:3960: headerptr->refer__to()().addr().addrSpecUnion()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-3961- headerptr->refer__to()().referToParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4186- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4187: (*routeptr)[rcount].nameAddr().displayName()=(yyvsp[(2) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4188: (*routeptr)[rcount].nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4189- (*routeptr)[rcount].rrParam()()= *paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4206- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4207: (*routeptr)[rcount].nameAddr().displayName()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4208: (*routeptr)[rcount].nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4209- (*routeptr)[rcount].rrParam()()= *paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4225- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4226: (*routeptr)[rcount].nameAddr().displayName()=(yyvsp[(2) - (5)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4227: (*routeptr)[rcount].nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4228- (*routeptr)[rcount].rrParam()= OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4242- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4243: (*routeptr)[rcount].nameAddr().displayName()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:4244: (*routeptr)[rcount].nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-4245- (*routeptr)[rcount].rrParam()= OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-5994- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:5995: headerptr->p__DCS__trace__pty__id()().name__addr()=*(yyvsp[(2) - (2)].naddr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-5996- delete (yyvsp[(2) - (2)].naddr); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6154- (yyval.route_val) = new RouteBody; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6155: (yyval.route_val)->nameAddr().displayName()=(yyvsp[(2) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6156: (yyval.route_val)->nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6157- (yyval.route_val)->rrParam()()= *paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6174- (yyval.route_val) = new RouteBody; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6175: (yyval.route_val)->nameAddr().displayName()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6176: (yyval.route_val)->nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6177- (yyval.route_val)->rrParam()()= *paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6193- (yyval.route_val) = new RouteBody; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6194: (yyval.route_val)->nameAddr().displayName()=(yyvsp[(2) - (5)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6195: (yyval.route_val)->nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6196- (yyval.route_val)->rrParam()= OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6210- (yyval.route_val) = new RouteBody; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6211: (yyval.route_val)->nameAddr().displayName()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6212: (yyval.route_val)->nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6213- (yyval.route_val)->rrParam()= OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6510- (yyval.history_entry)= new Hi__Entry; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6511: (yyval.history_entry)->nameAddr()=*(yyvsp[(1) - (1)].naddr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6512- (yyval.history_entry)->hi__params()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6522- (yyval.history_entry)= new Hi__Entry; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:6523: (yyval.history_entry)->nameAddr()=*(yyvsp[(1) - (2)].naddr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-6524- (yyval.history_entry)->hi__params()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7026- (yyval.divparam)= new Diversion__params; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7027: (yyval.divparam)->nameAddr()=*(yyvsp[(1) - (1)].naddr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7028- (yyval.divparam)->div__params()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7038- (yyval.divparam)= new Diversion__params; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7039: (yyval.divparam)->nameAddr()=*(yyvsp[(1) - (2)].naddr); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7040- (yyval.divparam)->div__params()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7257- headerptr->passertedID()().ids()[passertedidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7258: nameAddr().displayName()= (yyvsp[(2) - (5)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7259- headerptr->passertedID()().ids()[passertedidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7260: nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7261- passertedidcount++; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7274- headerptr->passertedID()().ids()[passertedidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7275: nameAddr().displayName()= OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7276- headerptr->passertedID()().ids()[passertedidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7277: nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7278- passertedidcount++; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7311- headerptr->ppreferredID()().ids()[ppreferredidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7312: nameAddr().displayName()= (yyvsp[(2) - (5)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7313- headerptr->ppreferredID()().ids()[ppreferredidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7314: nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7315- ppreferredidcount++; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7328- headerptr->ppreferredID()().ids()[ppreferredidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7329: nameAddr().displayName()= OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7330- headerptr->ppreferredID()().ids()[ppreferredidcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7331: nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7332- ppreferredidcount++; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7403- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7404: headerptr->replyTo()().addressField().nameAddr().displayName() = (yyvsp[(2) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7405: headerptr->replyTo()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7406- headerptr->replyTo()().replyToParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7423- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7424: headerptr->replyTo()().addressField().nameAddr().displayName() = eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7425- OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7426: headerptr->replyTo()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7427- headerptr->replyTo()().replyToParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7457- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7458: headerptr->replyTo()().addressField().nameAddr().displayName() = (yyvsp[(2) - (5)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7459: headerptr->replyTo()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7460- headerptr->replyTo()().replyToParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7472- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7473: headerptr->replyTo()().addressField().nameAddr().displayName() = eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7474- OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:7475: headerptr->replyTo()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-7476- headerptr->replyTo()().replyToParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8131- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8132: headerptr->toField()().addressField().nameAddr().displayName() = (yyvsp[(3) - (7)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8133: headerptr->toField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8134- headerptr->toField()().toParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8149- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8150: headerptr->toField()().addressField().nameAddr().displayName()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8151: headerptr->toField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8152- headerptr->toField()().toParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8182- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8183: headerptr->toField()().addressField().nameAddr().displayName() = (yyvsp[(3) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8184: headerptr->toField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8185- headerptr->toField()().toParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8197- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8198: headerptr->toField()().addressField().nameAddr().displayName()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8199: headerptr->toField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8200- headerptr->toField()().toParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8270- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8271: addressField().nameAddr().displayName()= (yyvsp[(2) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8272- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8273: addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8274- headerptr->contact()().contactBody().contactAddresses()[contactcount]. ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8292- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8293: addressField().nameAddr().displayName()= OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8294- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8295: addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8296- headerptr->contact()().contactBody().contactAddresses()[contactcount]. ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8332- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8333: addressField().nameAddr().displayName()= (yyvsp[(2) - (5)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8334- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8335: addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8336- headerptr->contact()().contactBody().contactAddresses()[contactcount]. ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8351- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8352: addressField().nameAddr().displayName()= OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8353- headerptr->contact()().contactBody().contactAddresses()[contactcount]. eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8354: addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8355- headerptr->contact()().contactBody().contactAddresses()[contactcount]. ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8384- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8385: headerptr->fromField()().addressField().nameAddr().displayName() = (yyvsp[(3) - (7)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8386: headerptr->fromField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8387- headerptr->fromField()().fromParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8404- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8405: headerptr->fromField()().addressField().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8406- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8407: headerptr->fromField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8408- headerptr->fromField()().fromParams()=*paramptr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8438- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8439: headerptr->fromField()().addressField().nameAddr().displayName() = (yyvsp[(3) - (6)].sv); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8440: headerptr->fromField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8441- headerptr->fromField()().fromParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8453- { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8454: headerptr->fromField()().addressField().nameAddr().displayName() eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8455- = OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c:8456: headerptr->fromField()().addressField().nameAddr().addrSpec()= *uriptr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIP_parse_.tab.c-8457- headerptr->fromField()().fromParams()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-527- ec.failed__operation()=SIP__operation::SIP__OP__ACCEPT; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:528: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:529: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:530: ec.addr()().protocol()=SIP__com__prot::TCP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-531- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:532: ec.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:533: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:534: ec.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-535- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-574- ec.failed__operation()=SIP__operation::SIP__OP__RECEIVE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:575: ec.addr()().remote__host()=remote.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:576: ec.addr()().remote__port()=remote.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:577: ec.addr()().protocol()=a?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-578- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:579: ec.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:580: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:581: ec.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-582- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-752- req.raw()=raw_msg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:753: req.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:754: req.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:755: req.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-756- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:757: req.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:758: else req.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:759: req.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-760- incoming_message(req, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-771- req.raw()=raw_msg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:772: req.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:773: req.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:774: req.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-775- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:776: req.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:777: else req.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:778: req.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-779- incoming_message(req, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-784- req.request()=*reqmsg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:785: req.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:786: req.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:787: req.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-788- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:789: req.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:790: else req.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:791: req.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-792- incoming_message(req, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-800- resp.response()=*respmsg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:801: resp.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:802: resp.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:803: resp.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-804- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:805: resp.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:806: else resp.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:807: resp.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-808- incoming_message(resp, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-966- req.raw()=raw_msg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:967: req.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:968: req.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:969: req.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-970- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:971: req.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:972: else req.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:973: req.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-974- incoming_message(req, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-985- req.raw()=raw_msg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:986: req.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:987: req.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:988: req.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-989- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:990: req.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:991: else req.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:992: req.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-993- incoming_message(req, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-998- req.request()=*reqmsg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:999: req.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1000: req.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1001: req.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1002- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1003: req.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1004: else req.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1005: req.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1006- incoming_message(req, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1014- resp.response()=*respmsg_loc; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1015: resp.addr()().remote__host()=dest_addr_loc.host(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1016: resp.addr()().remote__port()=dest_addr_loc.portField(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1017: resp.addr()().protocol()=udportcp_loc?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1018- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1019: resp.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1020: else resp.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1021: resp.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1022- incoming_message(resp, &dest_addr_loc); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1064-void SIPmsg__PT::outgoing_send(const ASP__SIP__close& send_par, const ADDRESS *destination_address){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1065: if(send_par.addr().remote__host().ispresent() && send_par.addr().remote__port().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1066: int conn_id=get_conn_id(send_par.addr().remote__host()(),send_par.addr().remote__port()()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1067- if(conn_id>0) {log("Connection to %s:%i is closed",conn_list[conn_id].addr,conn_list[conn_id].port);close_conn(conn_id);} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1068- if(conn_id<0) TTCN_warning("No connection found to close! Maybe it is already closed."); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1069: } else if(send_par.addr().protocol().ispresent() && send_par.addr().protocol()()==SIP__com__prot::TCP__E) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1070- if(listen_soc_tcp!=-1){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1076- } else TTCN_warning("TCP listening socket is already closed!"); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1077: } else if(send_par.addr().protocol().ispresent() && send_par.addr().protocol()()==SIP__com__prot::UDP__E) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1078- if(listen_soc!=-1){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1086-void SIPmsg__PT::outgoing_send(const ASP__SIP__open& send_par, const ADDRESS *destination_address){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1087: if(send_par.addr().remote__host().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1088: check_address(&send_par.addr()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1089- if (comm_soc==-1) return; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1091- if(udportcp) log("TCP connection is opened."); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1092: } else if(send_par.addr().protocol().ispresent() && send_par.addr().protocol()()==SIP__com__prot::TCP__E){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1093- const char *loc_comm_addr=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1094- int loc_com_port=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1095: if(send_par.addr().local__host().ispresent()) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1096: loc_comm_addr=send_par.addr().local__host()(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1097: if(send_par.addr().local__port().ispresent()) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1098: loc_com_port=send_par.addr().local__port()(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1099- if(listen_soc_tcp!=-1){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1115- ec.failed__operation()=SIP__operation::SIP__OP__CREATE__SOCKET; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1116: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1117: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1118: ec.addr()().protocol()=SIP__com__prot::TCP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1119- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1120: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1121: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1122: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1123- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1141- ec.failed__operation()=SIP__operation::SIP__OP__SET__SOCKET__OPT; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1142: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1143: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1144: ec.addr()().protocol()=SIP__com__prot::TCP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1145- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1146: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1147: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1148: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1149- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1166- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__FCNTL; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1167: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1168: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1169: ec.addr()().protocol()=SIP__com__prot::TCP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1170- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1171: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1172: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1173: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1174- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1191- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__BIND; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1192: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1193: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1194: ec.addr()().protocol()=SIP__com__prot::TCP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1195- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1196: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1197: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1198: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1199- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1216- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__LISTEN; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1217: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1218: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1219: ec.addr()().protocol()=SIP__com__prot::TCP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1220- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1221: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1222: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1223: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1224- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1231- log("TCP listening socket is opened."); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1232: } else if(send_par.addr().protocol().ispresent() && send_par.addr().protocol()()==SIP__com__prot::UDP__E) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1233- const char *loc_comm_addr=local_addr; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1236- int dest_com_port=target_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1237: if(send_par.addr().remote__host().ispresent()) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1238: dest_comm_addr=send_par.addr().remote__host()(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1239: if(send_par.addr().local__host().ispresent()) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1240: loc_comm_addr=send_par.addr().local__host()(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1241: if(send_par.addr().remote__port().ispresent()) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1242: dest_com_port=send_par.addr().remote__port()(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1243: if(send_par.addr().local__port().ispresent()) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1244: loc_com_port=send_par.addr().local__port()(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1245- if(listen_soc!=-1){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1260- ec.failed__operation()=SIP__operation::SIP__OP__CREATE__SOCKET; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1261: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1262: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1263: ec.addr()().protocol()=SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1264- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1265: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1266: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1267: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1268- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1285- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__FCNTL; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1286: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1287: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1288: ec.addr()().protocol()=SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1289- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1290: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1291: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1292: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1293- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1310- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__BIND; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1311: ec.addr()().remote__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1312: ec.addr()().remote__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1313: ec.addr()().protocol()=SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1314- if(loc_comm_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1315: ec.addr()().local__host()()=loc_comm_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1316: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1317: ec.addr()().local__port()=loc_com_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1318- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1338- const ADDRESS *destination_address){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1339: if(send_par.addr().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1340: check_address(&send_par.addr()()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1341- } else check_address((SIP__comm__adress*)NULL); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1430- const ADDRESS *destination_address){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1431: if(send_par.addr().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1432: check_address(&send_par.addr()()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1433- } else check_address((SIP__comm__adress*)NULL); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1449- const ADDRESS *destination_address){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1450: if(send_par.addr().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1451: check_address(&send_par.addr()()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1452- } else check_address((SIP__comm__adress*)NULL); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1551- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1552: print_list(buff,m_size,b_size,&((*acceptargsptr)[a].acceptParam()()), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1553- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1599- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1600: print_list(buff,m_size,b_size,&(*listptr)[a].acceptParam()(), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1601- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1864- if(a){write_to_buff(buff,m_size,b_size, header_sep);} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1865: if((*listptr)[a].nameAddr().displayName().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1866: write_to_buff(buff,m_size,b_size, (*listptr)[a].nameAddr().displayName()()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1867- write_to_buff(buff,m_size,b_size," "); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1868- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1869: print_url(buff,m_size,b_size,&(*listptr)[a].nameAddr().addrSpec(), 2 , ipv6enabled); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1870- if((*listptr)[a].div__params().ispresent()){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1934- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:1935: print_list(buff,m_size,b_size,& (*fcptr)[a].feature__param()(), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-1936- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2001- if(a){write_to_buff(buff,m_size,b_size, header_sep);} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2002: if((*listptr)[a].nameAddr().displayName().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2003: write_to_buff(buff,m_size,b_size, (*listptr)[a].nameAddr().displayName()()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2004- write_to_buff(buff,m_size,b_size," "); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2005- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2006: print_url(buff,m_size,b_size,&(*listptr)[a].nameAddr().addrSpec(), 2 ,ipv6enabled); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2007- if((*listptr)[a].hi__params().ispresent()){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2201- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2202: print_list(buff,m_size,b_size,& header->p__called__party__id()().cpid__param()(), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2203- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2241- write_to_buff(buff,m_size,b_size, "P-DCS-Trace-Party-ID:"); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2242: const NameAddr *addr=& header->p__DCS__trace__pty__id()().name__addr(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2243- if(addr->displayName().ispresent()){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2409- for(int a=0;a<paramnum;a++){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2410: const NameAddr *addr=& (*listptr)[a].nameAddr(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2411- if(a){write_to_buff(buff,m_size,b_size, header_sep);} ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2419- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2420: print_list(buff,m_size,b_size,&(*listptr)[a].rrParam()(), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2421- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2546- for(int a=0;a<paramnum;a++){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2547: const NameAddr *addr=&(*listptr)[a].nameAddr(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2548- if(a){write_to_buff(buff,m_size,b_size, header_sep);} ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2556- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2557: print_list(buff,m_size,b_size,&(*listptr)[a].rrParam()(), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2558- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2644- write_to_buff(buff,m_size,b_size, h_mode?"r:":"Refer-To:"); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2645: print_addr_union(buff,m_size,b_size,&header->refer__to()().addr(),ipv6enabled); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2646- if(header->refer__to()().referToParams().ispresent()){ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2716- for(int a=0;a<paramnum;a++){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2717: const NameAddr *addr=& (*listptr)[a].nameAddr(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2718- if(a){write_to_buff(buff,m_size,b_size, header_sep);} ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2726- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2727: print_list(buff,m_size,b_size,&(*listptr)[a].rrParam()(), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2728- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2828- for(int a=0;a<paramnum;a++){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2829: const NameAddr *addr=& (*listptr)[a].nameAddr(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2830- if(a){write_to_buff(buff,m_size,b_size, header_sep);} ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2838- const char *atm[]={";",";","","="}; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:2839: print_list(buff,m_size,b_size,&(*listptr)[a].rrParam()(), atm ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-2840- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3092- if(addr->get_selection()==Addr__Union::ALT_nameAddr){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3093: if(addr->nameAddr().displayName().ispresent()){ eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3094: write_to_buff(buff,m_size,b_size,addr->nameAddr().displayName()()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3095- write_to_buff(buff,m_size,b_size," "); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3096- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3097: print_url(buff,m_size,b_size,& addr->nameAddr().addrSpec(), 2,ipv6enabled); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3098- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3287- } eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3288: in_addr_t addr = inet_addr(host_name); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3289- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3334- ec.failed__operation()=SIP__operation::SIP__OP__CREATE__SOCKET; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3335: ec.addr()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3336- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3353- ec.failed__operation()=SIP__operation::SIP__OP__SET__SOCKET__OPT; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3354: ec.addr()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3355- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3371- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__FCNTL; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3372: ec.addr()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3373- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3390- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__CONNECT; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3391: ec.addr()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3392- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3410- ec.failed__operation()=SIP__operation::SIP__OP__SOCKET__CONNECT; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3411: ec.addr()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3412- ec.SIP__message()=OMIT_VALUE; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3436- ec.failed__operation()=SIP__operation::SIP__OP__LONG__MESSAGE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3437: ec.addr()().remote__host()=conn_list[last_conn].addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3438: ec.addr()().remote__port()=conn_list[last_conn].port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3439: ec.addr()().protocol()=udportcp?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3440- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3441: ec.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3442: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3443: ec.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3444- ec.SIP__message()=CHARSTRING(msgsize,buff); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3475- ec.failed__operation()=SIP__operation::SIP__OP__CREATE__SOCKET; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3476: ec.addr()().remote__host()=conn_list[last_conn].addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3477: ec.addr()().remote__port()=conn_list[last_conn].port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3478: ec.addr()().protocol()=udportcp?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3479- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3480: ec.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3481: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3482: ec.addr()().local__port()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3483- ec.SIP__message()=CHARSTRING(msgsize,buff); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3511- ec.failed__operation()=SIP__operation::SIP__OP__SEND; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3512: ec.addr()().remote__host()=conn_list[last_conn].addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3513: ec.addr()().remote__port()=conn_list[last_conn].port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3514: ec.addr()().protocol()=udportcp?SIP__com__prot::TCP__E:SIP__com__prot::UDP__E; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3515- if(local_addr) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3516: ec.addr()().local__host()()=local_addr; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3517: else ec.addr()().local__host()=OMIT_VALUE; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc:3518: ec.addr()().local__port()=local_port; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/SIPmsg_PT.cc-3519- ec.SIP__message()=CHARSTRING(msgsize,buff); ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCIPsec.cc-624- TCCIPsec__Tunnel tunnel = ipSecRule.mode().tunnel(); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCIPsec.cc:625: len += set_saEndPoint( msg+len, tunnel.srcAddr(), tunnel.srcPort()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCIPsec.cc:626: len += set_saEndPoint( msg+len, tunnel.dstAddr(), tunnel.dstPort()); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCIPsec.cc-627- } ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-693-/////////////////////////////////////////////////////////////////////////////// eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc:694:CHARSTRING f__getIpAddr(const CHARSTRING& hostname, const TCCInterface__IPAddressType& addressType) eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-695-{ ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-709- if ((err = getaddrinfo(hostname, NULL, &myaddr, &res)) != 0) {//&myaddr eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc:710: TTCN_Logger::log ( TTCN_DEBUG, "f_getIpAddr(): getaddrinfo: %i, %s", err, gai_strerror(err) ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-711- return ""; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-727- if ((err = getaddrinfo(hostname, NULL, &myaddr, &res)) != 0) { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc:728: TTCN_Logger::log ( TTCN_DEBUG, "f_getIpAddr(): getaddrinfo: %i, %s", err, gai_strerror(err) ); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-729- return ""; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-739- default: { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc:740: TTCN_error("f_getIpAddr(): Not supported address type."); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-741- return ""; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-759- case TCCInterface__IPAddressType::IPv6: { //IPv6 eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc:760: TTCN_error("f_getIpAddr(): Getting IPv6 addresses is supported on Linux and Solaris only."); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-761- return ""; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-764- default: { eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc:765: TTCN_error("f_getIpAddr(): Not supported address type."); eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface.cc-766- return ""; ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface_Functions.ttcn-274-/////////////////////////////////////////////////////////////////////////////// eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface_Functions.ttcn:275:external function f_getIpAddr(in charstring hostname, in TCCInterface_IPAddressType addressType:=IPv4) return charstring; eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/src/TCCInterface_Functions.ttcn-276- ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh-152- d=`date +%s` eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh:153: echo "Compilation time: `expr $d - $s` s" >> ${LOG_FILE} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh-154- echo "$TTCN3_DIR finished" >> ${LOG_FILE} ############################################## eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh-163- echo "execution finished at `date +%y_%m_%d_%H-%M`" >> ${LOG_FILE} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh:164: echo "Execution time: `expr $e - $d` s" >> ${LOG_FILE} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh-165- echo "==============================================================" >> ${LOG_FILE} eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh-166- # filter out the useful info: eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh:167: CPS_RESULT=`grep "final max CPS result" ${XML_NAME} | sed -e 's!.*<tq0001:result name=.final max CPS result. unit=.-.>\([0-9]*\).*</tq0001:result>.*!\1!g'` eclipse-titan-7.1.1/performance_test/SIPApplibPerfTest/version_test_SIP.sh-168- echo "${version1} cps result:>>$CPS_RESULT<<" ############################################## eclipse-titan-7.1.1/regression_test/CRTR00015758/Makefile-37- eclipse-titan-7.1.1/regression_test/CRTR00015758/Makefile:38:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/CRTR00015758/Makefile-39-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/CRTR00015758/logfilecheck-34- warn "Let's try with $_ instead"; eclipse-titan-7.1.1/regression_test/CRTR00015758/logfilecheck:35: exec( $_, '-wT', $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/regression_test/CRTR00015758/logfilecheck-36- } ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug521125/Makefile-39- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug521125/Makefile:40:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug521125/Makefile-41-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug522656/Makefile-39- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug522656/Makefile:40:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug522656/Makefile-41-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug546231/Makefile-39- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug546231/Makefile:40:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug546231/Makefile-41-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug547385/Makefile-39- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug547385/Makefile:40:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Bug547385/Makefile-41-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Examples/SCCP_typedefs.ttcn-439-//type enumerated SCCP_param_ReturnCause eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Examples/SCCP_typedefs.ttcn:440:// { noTransl4AddrNature(0), noTransl4SpecifAddr(1), subsystemCongestion(2), eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/Examples/SCCP_typedefs.ttcn-441-// subsystemFailure(3), unequippedUser(4), mTPFailure(5), ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HN25015/Makefile-42- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HN25015/Makefile:43:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HN25015/Makefile-44-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HQ26535/Makefile-42- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HQ26535/Makefile:43:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HQ26535/Makefile-44-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HQ49956/Makefile-42- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HQ49956/Makefile:43:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HQ49956/Makefile-44-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HS16977/Makefile-42- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HS16977/Makefile:43:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/HS16977/Makefile-44-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/IntX/Makefile-40- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/IntX/Makefile:41:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/IntX/Makefile-42-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/ustr/Makefile-40- eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/ustr/Makefile:41:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/EncodeDecode/RAW/ustr/Makefile-42-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/HQ16404/Makefile-46- eclipse-titan-7.1.1/regression_test/HQ16404/Makefile:47:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/HQ16404/Makefile-48-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/LTTngUSTLogger/Makefile-18- eclipse-titan-7.1.1/regression_test/LTTngUSTLogger/Makefile:19:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/LTTngUSTLogger/Makefile-20-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel-dynamic ############################################## eclipse-titan-7.1.1/regression_test/XML/AbstractBlock/Makefile-45- eclipse-titan-7.1.1/regression_test/XML/AbstractBlock/Makefile:46:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/AbstractBlock/Makefile-47-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/AttributeFormDefault/Makefile-43- eclipse-titan-7.1.1/regression_test/XML/AttributeFormDefault/Makefile:44:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/AttributeFormDefault/Makefile-45-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/EXER-whitepaper/Makefile-58- eclipse-titan-7.1.1/regression_test/XML/EXER-whitepaper/Makefile:59:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/EXER-whitepaper/Makefile-60-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/HM60295/Makefile-20- eclipse-titan-7.1.1/regression_test/XML/HM60295/Makefile:21:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/HM60295/Makefile-22-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/HN15589/Makefile-47- eclipse-titan-7.1.1/regression_test/XML/HN15589/Makefile:48:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/HN15589/Makefile-49-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/HQ30408/Makefile-46- eclipse-titan-7.1.1/regression_test/XML/HQ30408/Makefile:47:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/HQ30408/Makefile-48-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/HR49727/Makefile-46- eclipse-titan-7.1.1/regression_test/XML/HR49727/Makefile:47:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/HR49727/Makefile-48-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/HU13380/Makefile-45- eclipse-titan-7.1.1/regression_test/XML/HU13380/Makefile:46:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/HU13380/Makefile-47-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/LegacyUntaggedUnion/Makefile-52- eclipse-titan-7.1.1/regression_test/XML/LegacyUntaggedUnion/Makefile:53:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/LegacyUntaggedUnion/Makefile-54-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/NegativeTest/Makefile-47- eclipse-titan-7.1.1/regression_test/XML/NegativeTest/Makefile:48:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/NegativeTest/Makefile-49-TTCN3_LIB := ttcn3-rt2$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/Printing/Makefile-43- eclipse-titan-7.1.1/regression_test/XML/Printing/Makefile:44:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/Printing/Makefile-45-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/RecordOmit/Makefile-61- eclipse-titan-7.1.1/regression_test/XML/RecordOmit/Makefile:62:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/RecordOmit/Makefile-63-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/TTCNandXML/Makefile-66- eclipse-titan-7.1.1/regression_test/XML/TTCNandXML/Makefile:67:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/TTCNandXML/Makefile-68-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/UseNilLong/Makefile-43- eclipse-titan-7.1.1/regression_test/XML/UseNilLong/Makefile:44:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/UseNilLong/Makefile-45-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/XER/Makefile-68- eclipse-titan-7.1.1/regression_test/XML/XER/Makefile:69:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/XER/Makefile-70-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/XER/checkit.pl-24- warn "Let's try with $_ instead"; eclipse-titan-7.1.1/regression_test/XML/XER/checkit.pl:25: exec( $_, $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/regression_test/XML/XER/checkit.pl-26- } ############################################## eclipse-titan-7.1.1/regression_test/XML/XMLqualif/Makefile-64- eclipse-titan-7.1.1/regression_test/XML/XMLqualif/Makefile:65:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/XMLqualif/Makefile-66-TTCN3_LIB := ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/XSDBaseType/Makefile-43- eclipse-titan-7.1.1/regression_test/XML/XSDBaseType/Makefile:44:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/XML/XSDBaseType/Makefile-45-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/PIPEasp_CNL113334/demo/ShellQuestionYesNo.sh-20- then eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/PIPEasp_CNL113334/demo/ShellQuestionYesNo.sh:21: ans=`cat /tmp/$$.output` eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/PIPEasp_CNL113334/demo/ShellQuestionYesNo.sh-22- case $ans in ############################################## eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin/prj2mk.pl-25- warn "Let's try with $_ instead"; eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin/prj2mk.pl:26: exec( $_, $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin/prj2mk.pl-27- } ############################################## eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin/prj2mk.pl-120- eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin/prj2mk.pl:121:system( "\$TTCN3_DIR/bin/ttcn3_makefilegen -gs $split $rt2 -e XmlTest -o Makefile.1 -J files.txt $xsdfiles2"); eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin/prj2mk.pl-122- ############################################## eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin2/prj2mk.pl-22- warn "Let's try with $_ instead"; eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin2/prj2mk.pl:23: exec( $_, $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin2/prj2mk.pl-24- } ############################################## eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin2/prj2mk.pl-100- eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin2/prj2mk.pl:101:system( "\$TTCN3_DIR/bin/ttcn3_makefilegen -gs $split $rt2 -e XmlTest -o Makefile.1 @files"); eclipse-titan-7.1.1/regression_test/XML/XmlWorkflow/bin2/prj2mk.pl-102- ############################################## eclipse-titan-7.1.1/regression_test/acceptance_test/Fibonacci/Makefile-52- eclipse-titan-7.1.1/regression_test/acceptance_test/Fibonacci/Makefile:53:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/acceptance_test/Fibonacci/Makefile-54-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/acceptance_test/chinese/Makefile-53- eclipse-titan-7.1.1/regression_test/acceptance_test/chinese/Makefile:54:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/acceptance_test/chinese/Makefile-55-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/acceptance_test/comptest/Makefile-30- eclipse-titan-7.1.1/regression_test/acceptance_test/comptest/Makefile:31:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/acceptance_test/comptest/Makefile-32-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/acceptance_test/testerlanc/Makefile-53- eclipse-titan-7.1.1/regression_test/acceptance_test/testerlanc/Makefile:54:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/acceptance_test/testerlanc/Makefile-55-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/all_from/Makefile-47- eclipse-titan-7.1.1/regression_test/all_from/Makefile:48:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/all_from/Makefile-49-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/anytype/Makefile-59- eclipse-titan-7.1.1/regression_test/anytype/Makefile:60:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/anytype/Makefile-61-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/cfg_list_concat/Makefile-47- eclipse-titan-7.1.1/regression_test/cfg_list_concat/Makefile:48:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/cfg_list_concat/Makefile-49-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/compileonly/isbound/Makefile-132- eclipse-titan-7.1.1/regression_test/compileonly/isbound/Makefile:133:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/compileonly/isbound/Makefile-134-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/disablePredefinedExternalFolder/Makefile-37-#endif eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/disablePredefinedExternalFolder/Makefile:38:# || [ `grep -c "# OPENSSL_DIR = \\$$(TTCN3_DIR)" ./bin/Makefile` -ne $(RES) ] \ eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/disablePredefinedExternalFolder/Makefile-39-CheckTpd: BuildTpd eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/disablePredefinedExternalFolder/Makefile-40- if [ ! -f "./bin/Makefile" ] \ eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/disablePredefinedExternalFolder/Makefile:41: || [ `grep -c "# XMLDIR = \\$$(TTCN3_DIR)" ./bin/Makefile` -ne 1 ]; \ eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/disablePredefinedExternalFolder/Makefile-42- then echo "Makefilegen disablePredefinedExternalFolder test: Overall verdict: fail" && exit 1; fi ############################################## eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/required_config_v2/source_files/Makefile-53- eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/required_config_v2/source_files/Makefile:54:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/required_config_v2/source_files/Makefile-55-TTCN3_LIB = ttcn3-parallel ############################################## eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/required_config_v2/source_files/Makefile-167- $(USER_HEADERS) $(USER_SOURCES) $(OTHER_FILES) \ eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/required_config_v2/source_files/Makefile:168: | gzip >$(ARCHIVE_DIR)/`basename $(TARGET) .exe`-`date '+%y%m%d-%H%M'`.tgz eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/required_config_v2/source_files/Makefile-169- ############################################## eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/runner.pl-72-foreach (@powerset) { eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/runner.pl:73: my $rc = system("echo \\'@$_\\'; make clean all MFGEN_FLAGS=-d@$_ >make_@$_.out 2>&1 || echo FAIL"); eclipse-titan-7.1.1/regression_test/compileonly/mfgen-tpd/runner.pl-74- # The -d option is there ------------------------------------^ to always have an option after the dash ############################################## eclipse-titan-7.1.1/regression_test/iconv/Makefile-35- eclipse-titan-7.1.1/regression_test/iconv/Makefile:36:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/iconv/Makefile-37-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/implicitOmit/Makefile-38- eclipse-titan-7.1.1/regression_test/implicitOmit/Makefile:39:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/implicitOmit/Makefile-40-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/ipv6/platformcheck-11-if [ -x `which uname` ] && [ -f /etc/hosts ]; then eclipse-titan-7.1.1/regression_test/ipv6/platformcheck:12:host_=`uname -a | grep ${host_pattern_}` eclipse-titan-7.1.1/regression_test/ipv6/platformcheck:13:hosts_=`cat /etc/hosts | grep ${host_pattern_}` eclipse-titan-7.1.1/regression_test/ipv6/platformcheck-14-if [ -n "${host_}" ] && [ -n "${hosts_}" ]; then eclipse-titan-7.1.1/regression_test/ipv6/platformcheck:15:inet6_local_=`/sbin/ifconfig | grep "${inet6_local_}"` eclipse-titan-7.1.1/regression_test/ipv6/platformcheck:16:inet6_=`/sbin/ifconfig | grep "${inet6_}"` eclipse-titan-7.1.1/regression_test/ipv6/platformcheck:17:inet_eth2_=`/sbin/ifconfig | grep "${inet_eth2_}"` eclipse-titan-7.1.1/regression_test/ipv6/platformcheck:18:inet_=`/sbin/ifconfig | grep "${inet_}"` eclipse-titan-7.1.1/regression_test/ipv6/platformcheck-19-if [ -n "${inet6_local_}" ] && [ -n "${inet6_}" ] && [ -n "${inet_eth2_}" ] && [ -n "${inet_}" ]; then ############################################## eclipse-titan-7.1.1/regression_test/junitlogger/Makefile-19- eclipse-titan-7.1.1/regression_test/junitlogger/Makefile:20:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/junitlogger/Makefile-21-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel-dynamic ############################################## eclipse-titan-7.1.1/regression_test/logFiles/diffLogs-57- changeFile "${file%%.???}.lo2" eclipse-titan-7.1.1/regression_test/logFiles/diffLogs:58: basename=`basename "$file"` eclipse-titan-7.1.1/regression_test/logFiles/diffLogs-59- ############################################## eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-136-create_ELCO_config() { eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh:137: elco_cfg=`basename $1 ".cfg"` eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-138- elco_cfg="${elco_cfg}_ELCO.cfg" ############################################## eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-211- rm ${LOGDIR}/${MYEXE}*.log eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh:212: orig_cfg_base=`basename $1 ".cfg"` eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-213- run_and_modify_logfile "$1" "$orig_cfg_base" ############################################## eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-221- eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh:222: elco_cfg_base=`basename "$elco_cfg" ".cfg"` eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-223- debug "ELCO cfg name: ${elco_cfg}" ############################################## eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-247- #running with orig cfg: eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh:248: orig_cfg_base=`basename $1 ".cfg"` eclipse-titan-7.1.1/regression_test/logger/emergency_logging/EmergencyLogTest.sh-249- run_and_modify_logfile "$1" "$orig_cfg_base" ############################################## eclipse-titan-7.1.1/regression_test/logger/emergency_logging/Makefile-58- eclipse-titan-7.1.1/regression_test/logger/emergency_logging/Makefile:59:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/logger/emergency_logging/Makefile-60-TTCN3_LIB = ttcn3-parallel ############################################## eclipse-titan-7.1.1/regression_test/logger/emergency_logging/Makefile-169- $(USER_HEADERS) $(USER_SOURCES) $(OTHER_FILES) \ eclipse-titan-7.1.1/regression_test/logger/emergency_logging/Makefile:170: | gzip >$(ARCHIVE_DIR)/`basename $(TARGET) .exe`-`date '+%y%m%d-%H%M'`.tgz eclipse-titan-7.1.1/regression_test/logger/emergency_logging/Makefile-171- ############################################## eclipse-titan-7.1.1/regression_test/logger/logcontrol/Makefile-45- eclipse-titan-7.1.1/regression_test/logger/logcontrol/Makefile:46:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/logger/logcontrol/Makefile-47-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/logger/logtest/Makefile-58- eclipse-titan-7.1.1/regression_test/logger/logtest/Makefile:59:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/logger/logtest/Makefile-60-TTCN3_LIB = ttcn3-parallel ############################################## eclipse-titan-7.1.1/regression_test/logger/logtest/Makefile-169- $(USER_HEADERS) $(USER_SOURCES) $(OTHER_FILES) \ eclipse-titan-7.1.1/regression_test/logger/logtest/Makefile:170: | gzip >$(ARCHIVE_DIR)/`basename $(TARGET) .exe`-`date '+%y%m%d-%H%M'`.tgz eclipse-titan-7.1.1/regression_test/logger/logtest/Makefile-171- ############################################## eclipse-titan-7.1.1/regression_test/logger_control/Makefile-47- eclipse-titan-7.1.1/regression_test/logger_control/Makefile:48:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/logger_control/Makefile-49-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/logger_control/logfilecheck-27- warn "Let's try with $_ instead"; eclipse-titan-7.1.1/regression_test/logger_control/logfilecheck:28: exec( $_, '-wT', $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/regression_test/logger_control/logfilecheck-29- } ############################################## eclipse-titan-7.1.1/regression_test/portTranslation/Makefile-44- eclipse-titan-7.1.1/regression_test/portTranslation/Makefile:45:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/portTranslation/Makefile-46-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/portTranslationCentralStorage/ProjA/bin/Makefile-45- eclipse-titan-7.1.1/regression_test/portTranslationCentralStorage/ProjA/bin/Makefile:46:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/portTranslationCentralStorage/ProjA/bin/Makefile-47-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/portTranslationCentralStorage/ProjB/bin/Makefile-45- eclipse-titan-7.1.1/regression_test/portTranslationCentralStorage/ProjB/bin/Makefile:46:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/portTranslationCentralStorage/ProjB/bin/Makefile-47-TTCN3_LIB = ttcn3$(RT2_SUFFIX)-parallel$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/predefFunction/Makefile-59- eclipse-titan-7.1.1/regression_test/predefFunction/Makefile:60:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/predefFunction/Makefile-61-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/prereq.pl-23- warn "Let's try with $_ instead"; eclipse-titan-7.1.1/regression_test/prereq.pl:24: exec( $_, '-wT', $0, @ARGV ) or die "That didn't work either: $!"; eclipse-titan-7.1.1/regression_test/prereq.pl-25- } ############################################## eclipse-titan-7.1.1/regression_test/slider/Makefile-48- eclipse-titan-7.1.1/regression_test/slider/Makefile:49:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/slider/Makefile-50-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/testcase_defparam/Makefile-48- eclipse-titan-7.1.1/regression_test/testcase_defparam/Makefile:49:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/testcase_defparam/Makefile-50-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/regression_test/testcase_defparam/Makefile-153- # Run each testcase from the command line (but not the control part) eclipse-titan-7.1.1/regression_test/testcase_defparam/Makefile:154: for t in `./${TARGET} -l | egrep '^[^ ]*\.[^ ]*' | grep -vw control` ; do ./$^ $$t; done ############################################## eclipse-titan-7.1.1/regression_test/transparent/Makefile-57- eclipse-titan-7.1.1/regression_test/transparent/Makefile:58:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/regression_test/transparent/Makefile-59-TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX) ############################################## eclipse-titan-7.1.1/titan_executor_api/TITAN_Executor_API_test/build_and_run_test.sh-74-# Check if HelloWorld demo binary is compiled in parallel mode: output of MyExample -v contains "(parallel mode)" eclipse-titan-7.1.1/titan_executor_api/TITAN_Executor_API_test/build_and_run_test.sh:75:[ `${TTCN3_DIR}/demo/MyExample -v 2>&1 | grep "(parallel mode)" | wc -l` != 0 ] && echo "${TTCN3_DIR}/demo/MyExample is compiled in parallel mode, OK" \ eclipse-titan-7.1.1/titan_executor_api/TITAN_Executor_API_test/build_and_run_test.sh-76-|| { echo "${TTCN3_DIR}/demo/MyExample is compiled in single mode, NOT in parallel mode, NOT OK, exiting"; exit 1; } ############################################## eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-5- eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc:6:All logger plug-ins must implement the `ILoggerPlugin` interface class in `ILoggerPlugin.hh` in `${TTCN3_DIR}/include`. Each plug-in should provide some essential information on itself and should implement some basic functions: eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-7- ############################################## eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-19- eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc:20:The generated, runtime specific (load-test or function-test) header file `TitanLoggerApi.hh` needs to be included by every logger plug-in depending on the runtime it is compiled for. These header files can be found in `${TTCN3_DIR}/include/{RT1/RT2}`. An example to handle these include files in a logger plug-in’s code: eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-21-[source] ############################################## eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-48- eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc:49:The generated, runtime specific (load-test or function-test) header file `TitanLoggerApi.hh` needs to be included by every logger plug-in depending on the runtime it is compiled for. These header files can be found in `${TTCN3_DIR}/include/{RT1/RT2}` and this directory must be present (for example as part of `CPPFLAGS` in the `Makefile`) while compiling the logger plug-ins. eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-50- ############################################## eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-81- eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc:82:`TitanLoggerApi::TitanLogEvent` is a generated type defined in TitanLoggerApi.xsd, which can be found in `${TTCN3_DIR}/include`. This file contains all the necessary type definitions a logger plug-in should be aware of. The corresponding header files generated from this XSD file can be found in `${TTCN3_DIR}/include/{RT1/RT2}`. The mapping between TTCN-3 types and {cpp} types is defined in link:5-mapping_ttcn3_data_types_to_c+\+_constructs.adoc[Mapping TTCN–3 Data Types to {cpp} Constructs]. eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-83-//The mapping between XSD and TTCN-3 types is defined in *Error! Reference source not found.* ############################################## eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc-86- eclipse-titan-7.1.1/usrguide/apiguide/4-logger_plug-ins.adoc:87:When a logger plug-in is compiled (the SO is ready) it should be configured in the configuration file. For details check link:https://github.com/eclipse/titan.core/tree/master/usrguide/referenceguide[Programmer's Technical Reference]. Additionally, `LD_LIBRARY_PATH` should contain the directory of the plug-in and `${TTCN3_DIR}/lib` as well. If the runtime linker (the loader) is unable to find any of the given logger plug-ins an error will be given. ############################################## eclipse-titan-7.1.1/usrguide/apiguide/6-mapping_ttcn3_data_types_to_c++_constructs.adoc-1556- eclipse-titan-7.1.1/usrguide/apiguide/6-mapping_ttcn3_data_types_to_c++_constructs.adoc:1557:The prototypes for these functions can be found in `*$TTCN3_DIR/include/Addfunc.hh*`, but for easier navigation we list them also in the present document. eclipse-titan-7.1.1/usrguide/apiguide/6-mapping_ttcn3_data_types_to_c++_constructs.adoc-1558- ############################################## eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-148-. When installation is finished, add the + eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:149:``$CYGWIN_INSTALL_DIRECTORY\bin`` and + eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:150:``$CYGWIN_INSTALL_DIRECTORY\usr\bin`` directories to the ``PATH`` + eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-151-environment variable of Windows, so Eclipse will access the shell commands. + ############################################## eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-183- eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:184:. Create an empty directory, for example, `/usr/local/TTCN3` or `/home/<UserId>/TTCN3`. This directory will be referred as `$TTCN3_DIR` in the further sections of this document. eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-185-. Copy the `.tgz` file into this directory. ############################################## eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-247- eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:248:* With system administrator privileges, set the `$TTCN3_DIR` environment variable in the common `/etc/profile` and add the `$TTCN3_DIR/bin` directory to the system paths. eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:249:* All tools of TITAN, including the Executable Test Suites, require a shared library of OpenSSL (`libcrypto.so`) for execution. To avoid incompatibilities, the suitable shared object file is provided in `$TTCN3_DIR/lib`, so add `$TTCN3_DIR/lib` to the `LD_LIBRARY_PATH` environment variable. eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-250-+ eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-251-WARNING: If this step is not performed, the compiler will not start! eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:252:* Add `$TTCN3_DIR/man` to the `$MANPATH` environment variable to reach the manual pages directly. eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-253-* If there is no valid license key, refer to link:5-licensing.md[Licensing]. If upgrading from an older version with a license key valid for this version, skip this step. eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:254:* To run TITAN, ensure that the `$TTCN3_DIR` environmental variable has been set, for example, assuming a tcsh as login shell: `setenv TTCN3_DIR /usr/local/TTCNv3` eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:255:* To use the TTCN–3 keyword help feature in the GUI with a web browser other than the default Netscape, it is necessary to set the `$TTCN3_BROWSER `environmental variable, for example, to specify Opera, type the following at the C-shell: `setenv $TTCN3_BROWSER opera` eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-256- ############################################## eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-335-* Set the `TTCN3_LICENSE_FILE` environment variable to point to the license file with full path name. Add this command to the login script to do this step automatically for each login. eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:336:* Check the validity of the license by issuing `$TTCN3_DIR/bin/compiler -v`. The compiler will print its version and the information contained in the license file. Also it checks the validity of the license key. Example printout: eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-337- ############################################## eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-372- eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc:373:If a host-limited key is needed, perform it in the same way but do it as system administrator. Copy it into a common directory, for example `$TTCN3_DIR/etc`, and set `TTCN3_LICENSE_FILE` in the common login script of all users, for example, in `/etc/profile`. eclipse-titan-7.1.1/usrguide/installationguide/installationguide.adoc-374- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/10-code_coverage_of_ttcn-3_modules.adoc-80-+ eclipse-titan-7.1.1/usrguide/referenceguide/10-code_coverage_of_ttcn-3_modules.adoc:81:Path to an XSD to validate all .tcd XML files found against. By default `$TTCN3_DIR/include/tcov.xsd` is used. This XSD file is part of the Titan distribution. If any of the .tcd files doesn’t conform to the XSD an error will be given. eclipse-titan-7.1.1/usrguide/referenceguide/10-code_coverage_of_ttcn-3_modules.adoc-82- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/11-the_ttcn-3_debugger.adoc-302- eclipse-titan-7.1.1/usrguide/referenceguide/11-the_ttcn-3_debugger.adoc:303:Command syntax: `dprintvar { (<variable name> | $) }` eclipse-titan-7.1.1/usrguide/referenceguide/11-the_ttcn-3_debugger.adoc-304- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/11-the_ttcn-3_debugger.adoc-312- eclipse-titan-7.1.1/usrguide/referenceguide/11-the_ttcn-3_debugger.adoc:313:The metacharacter `$' is automatically substituted with the result of the last executed `dlistvar' command (on the active component). eclipse-titan-7.1.1/usrguide/referenceguide/11-the_ttcn-3_debugger.adoc-314- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/4-ttcn3_language_extensions.adoc-8710- eclipse-titan-7.1.1/usrguide/referenceguide/4-ttcn3_language_extensions.adoc:8711:The `ttcn3_profmerge` utility, which can be found in `$TTCN3_DIR/bin`, merges all profiler database files specified in the command line arguments into one output database file. These database files are generated by the TTCN-3 Profiler during runtime, when profiling is activated in a test system. The utility can also generate statistics from the merged database, the same way as the TTCN-3 Profiler. eclipse-titan-7.1.1/usrguide/referenceguide/4-ttcn3_language_extensions.adoc-8712- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-15- eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc:16:The program compiler resides in the directory `$TTCN3_DIR/bin`. eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-17- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-330- eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc:331:You can generate the Makefile skeleton used for building the test suite using the program `ttcn3_makefilegen`, which resides in the directory `$TTCN3_DIR/bin`. See section 2.3.1 of the TITAN User Guide <<13-references.adoc#_13, [13]>> for details. The generated Makefile skeleton will use the parallel mode of the run-time environment by default. This can be overridden by using the option `-s` (see below). eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-332- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-407-+ eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc:408:Enable dynamic linking. All files of the project will be compiled with `–fPIC` and for each (static) object, a new shared object will be created. Then, these shared objects will be linked to the final executable instead of the (static) objects. It can be used to speed up the linking phase, in the price of somewhat lower performance and increased memory usage. It’s recommended to use this flag only in the development phase of the project. Please note, that both the project’s working directory (which holds the TITAN generated `.so` files) and the directory of TITAN libraries, most probably `${TTCN3_DIR}/lib`, should be appended to the `LD_LIBRARY_PATH` environment variable. Otherwise, the dynamic linker (or loader) won’t be able to locate the shared objects required by the executable. This option is not supported on Windows (platform string `WIN32`). eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-409- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-447-+ eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc:448:Generates a `Makefile` skeleton to be used with the single mode of the run-time environment. The only difference between the Makefiles for single and parallel modes is the setting of variable `$TTCN3_DIR` within them. eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-449- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-482- eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc:483:The makefile generator validates the TPD file with a schema file which is located at `${TTCN3_DIR}/etc/xsd/TPD.xsd`. If there are validation errors or the xsd file cannot be found some warnings will be displayed, this validation can be disabled with the "-V" option. Validation errors will not prevent the generation of makefiles and symlinks, however if there are such warnings it is strongly recommended to check the TPD files for errors because these errors may cause either other errors during the generation of the makefiles and symlinks or the creation of invalid makefiles and symlinks. eclipse-titan-7.1.1/usrguide/referenceguide/6-compiling_ttcn3_and_asn1_modules.adoc-484- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-267- eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc:268:Anyone can write a logger plugin to use with TITAN, but there are some widely used plugins that were made part of TITAN. These are available in the `$(TTCN3_DIR)/lib` sub-directory. Usually `LD_LIBRARY_PATH` contains this directory, if not then it should either be added to it or the path to the .so file has to be specified. eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-269- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-1189- eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc:1190:* `$macroname` eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc:1191:* `${macroname}` eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc:1192:* `${macroname,charstring}` eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-1193- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-1205- eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc:1206:* Simple reference: a dollar character followed immediately by the macro identifier. Example: `$macroName`. In this case the value of the definition will be inserted as a literal charstring value. eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc:1207:* Modified reference: a dollar character followed by a pair of curly brackets containing the macro identifier and a modifier separated by a comma. Example: `${macroName, modifier}`. Whitespaces are allowed within the pair of brackets, but the opening bracket must follow the dollar character immediately. In this case the type of the substituted token is specified by the modifier. Before substitution it is verified whether the value of the referred macro or environment variable fulfills the requirements for the given modifier. eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-1208- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-1766- eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc:1767:The interface is contained in `$(TTCN3_DIR)/include/TitanLoggerControl.ttcn`; this file needs to be added to the project. `TitanLoggerControl.ttcn` contains definitions of various external functions which can be called from TTCN-3 code. The implementation of these external functions is built into the Titan runtime library; it will be linked automatically. eclipse-titan-7.1.1/usrguide/referenceguide/7-the_run-time_configuration_file.adoc-1768- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/8-the_titan_project_descriptor_file.adoc-16- eclipse-titan-7.1.1/usrguide/referenceguide/8-the_titan_project_descriptor_file.adoc:17:The data is stored in XML format. The schema definition of the project descriptor is delivered with the Titan package and can be found in the `${TTCN3_DIR}/etc/xsd/TPD.xsd` file. If the type of an element is a subtype of string, for example a file name or a path, the xsd file doesn’t restrict it but uses only string or NormalizedString as type. Although the compliance of a TPD file for TPD.xsd is a necessary but not sufficient statement, it is very useful to verify the tpd file against TPD.xsd for example with this command: `xmllint –noout –schema XSD_FILE XML_FILE` eclipse-titan-7.1.1/usrguide/referenceguide/8-the_titan_project_descriptor_file.adoc-18- ############################################## eclipse-titan-7.1.1/usrguide/referenceguide/8-the_titan_project_descriptor_file.adoc-276- eclipse-titan-7.1.1/usrguide/referenceguide/8-the_titan_project_descriptor_file.adoc:277:The variables referenced with this syntax will be recognized by the Eclipse Designer plugin. If the tpd is used for makefile generation, the `ttcn3_makefilegen` will replace the reference with its command line equivalent in the generated makefile. (e.g. `[VariableName] => $(VariableName)` ). eclipse-titan-7.1.1/usrguide/referenceguide/8-the_titan_project_descriptor_file.adoc-278- ############################################## eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-370-* Clean-up after unsuccessful makefilegen execution, `symlinks` are now generated only if no errors were found during *.tpd file processing eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc:371:* _.tpd file validation with `ttcn3_makefilegen`: the _.tpd file is validated with a schema that now is part of TITAN (`file $(TTCN3_DIR)/etc/xsd/TPD.xsd` ); validation errors will prevent makefile generation. eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-372-* `Makefilegen`: override the working directory in _.tpd file: the working directory of top level project comes from top level _.tpd file by default; when using the –D switch the working directory will be the current directory. ############################################## eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-1026-* Clean-up after unsuccessful makefilegen execution, symlinks are now generated only if no errors were found during *.tpd file processing eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc:1027:* _.tpd file validation with `ttcn3_makefilegen`: the _.tpd file is validated with a schema that now is part of TITAN (file `$(TTCN3_DIR)/etc/xsd/TPD.xsd`); validation errors will prevent makefile generation. eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-1028-* `Makefilegen`: override the working directory in _.tpd file: the working directory of top level project comes from top level _.tpd file by default; when using the –D switch the working directory will be the current directory. ############################################## eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-2153- eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc:2154:* The GUI crashed at startup with segmentation fault if the environment variable TTCN3 DIR was not set or the configuration files and images were not found under `$TTCN3 DIR/etc/gui`. eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-2155- ############################################## eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-2594- eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc:2595:* The expect script `*ttcn3 start*` launches the Main Controller from `$TTCN3 DIR/bin` if the environment variable is set. eclipse-titan-7.1.1/usrguide/releasenotes/releasenotes.adoc-2596- ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-83- eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:84:`*$TTCN3_DIR/bin/ttcn3_makefilegen *.ttcn *.asn *.c**` eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-85- ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-181- eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:182:`*$TTCN3_DIR/bin/ttcn3_makefilegen -gs MyExample.ttcn PCOType.cc MyExample.cfg*` eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-183- ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-230-COMPILER_FLAGS = -L eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:231:# Execution mode: (either ttcn3 or ttcn3-parallel) eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-232-TTCN3_LIB = ttcn3 ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-370-- library creator info ( see command `*"ar –v"*`), + eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:371:- values of environment variables `$TTCN3_DIR`, ``$ OPENSSL_DIR`, `$XML_DIR`, `$PLATFORM`. eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-372- ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-473- eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:474:The switch `-c` tells the GNU {cpp} compiler to compile only and not to build an executable because, for example, the `main` function is missing from the generated code. The switch `-I` adds the `$TTCN3_DIR/include` directory to the compiler’s standard include path. The optional argument, `-Wall`, forces the compiler to report all warnings found in its input. This argument can be used in GCC only. eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-475- ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-487- eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:488:* The parallel `ttcn3-parallel` or the non-parallel `ttcn3` version of the TTCN3 Base Library depending on the chosen operating mode. They reside in `$TTCN3_DIR/lib`. eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-489- eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:490:* The shared library of OpenSSL, that is `$TTCN3_DIR/lib/libcrypto.so`. eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-491- ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-513- eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:514:When running the executable, add the directory `$TTCN3_DIR/lib` to the system library path (which is specified in `/etc/ld.so.conf` on most of UNIX systems) or simply add it to the environment variable `LD_LIBRARY_PATH`. eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-515- ############################################## eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-517-the project’s working directory (together with the central storage directories, eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc:518:if applicable) should be added to `LD_LIBRARY_PATH` in addition to `$TTCN3_DIR/lib`. eclipse-titan-7.1.1/usrguide/userguide/3-creating_executable_test_suites_from_the_command-l.adoc-519-Otherwise, the resulting executable may not run. ############################################## eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-129-+ eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc:130:The Main Controller is a stand-alone application delivered with the distribution (`$TTCN3_DIR/bin/mctr`). It is started manually by the user and runs in one instance during the entire test execution. MC provides the user with CLI to the test executor system. It arranges the creation and termination of Main Test Component on user request and the execution of module control part. It shows the user the verdicts of executed test cases. MC has many hidden tasks that can only be performed in a centralized way, for example component reference assignment, verdict collection, and so on. MC maintains a control connection with all other components. eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-131- ############################################## eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-150- eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc:151:The binary executable of Main Controller is `$TTCN3_DIR/bin/mctr_cli`. It takes the optional configuration file (<<The-Run-time-Configuration-File, The Run-time Configuration File>>) as its single argument. The variables in the section `[MAIN CONTROLLER]` of the configuration file determine important MC properties, for detailed information refer to the link:https://github.com/eclipse/titan.core/tree/master/usrguide/referenceguide[TITAN Programmer's Technical Reference for TITAN TTCN-3 Test Executor]. eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-152- ############################################## eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-210- eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc:211:The command line main controller displays an ASCII art file that is located in the `$TTCN3_DIR/etc/asciiart` directory. There can be any number of ASCII art text files in that directory, a random file will be chosen from those. The file name can contain special filtering instructions, if such instructions are detected in the file name then the file is grouped into the special files group, all other files are in the normal group. If there is at least one file in the special group that was not filtered out by the condition(s) given in the file name then the file to be displayed will be chosen randomly from the list of special files. If there are no such special files or all of these were filtered out by their filtering instructions then a normal file will be displayed. The filtering instructions in the file name are separated by dots, one instruction consists of a name and a value which are separated by a dash. If the value is of numerical type then it can be a single number or an interval, an interval consists of 2 numbers separated by an underscore. Currently the following filtering condition name and value pairs can be used: eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-212- ############################################## eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-258- eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc:259:The starting procedure of TTCN–3 tests in parallel mode can be a tiring task if it has to be repeated the tests several times. We have developed a small script that can do this work for you. It is based on the `expect` command, which is an extension of the TCL scripting language. The script is called `ttcn3_start` and is located in `$TTCN3_DIR/bin`. In order to use it a working `expect` interpreter must be in the `$PATH`. eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-260- ############################################## eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-266- eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc:267:The script works the following way: first it launches the MC. If the environment variable `TTCN3_DIR` is set the MC is started from directory `$TTCN3_DIR/bin` (to find the right one multiple versions are present), otherwise the command `mctr cli` is invoked using your search path. If the configuration file is present it is passed to MC as a command line argument. After that `ttcn3_start` launches the ETS, that is, the HC, locally with the appropriate arguments. That is, the script guesses the host name and extracts the TCP port number from the output of MC automatically. Then the script issues the `cmtc` and the appropriate `smtc` commands in the MC command prompt and waits until test execution is finished. Finally it terminates the programs by issuing `emtc` and `quit`. It also takes care of MC’s answers and issues the commands in the right state. eclipse-titan-7.1.1/usrguide/userguide/4-executing_test_suites.adoc-268- ############################################## eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-14- eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc:15:The `logmerge` utility, which can be found in `$TTCN3_DIR/bin`, merges all files given in the command argument into a single output file. The output of logmerge is sorted based on the timestamps found in the log files. eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-16- ############################################## eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-47- eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc:48:The `logfilter` utility, which can be found in `$TTCN3_DIR/bin`, filters the input log file given in the command line argument based on the event types in the file, and filter parameters given in the program argument. The output is then written to an output file if specified, or to the standard output. The program is useful only if the variable `LogEventTypes` is set to `yes` in section `[LOGGING]` of the configuration file. eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-49- ############################################## eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-83- eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc:84:The `logformat` utility, which can be found in `$TTCN3_DIR/bin`, reads the unformatted log file generated by test executor from its standard input. It can split up the log into several files based on the lines that are automatically logged at the beginning or end of each test case. Furthermore, `logformat` formats the sent and received messages in the log file. The structured values are indented and each field is put into a new line according to the braces and commas. eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-85- ############################################## eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-124- eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc:125:The HTML report generator called `repgen` can be found in `$TTCN3_DIR/bin`. The program requires one command line argument that contains the name of its configuration file. The behavior of `repgen` can be configured only through this file. If the switch `-h` is given instead of the name of the configuration file, `repgen` prints a sample configuration file to its standard output. eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-126- ############################################## eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc-201- eclipse-titan-7.1.1/usrguide/userguide/5-log_processing.adoc:202:WARNING: During its run `repgen` will start the other log formatter program `logformat`. That is why `repgen` works correctly only if the directory `$TTCN3_DIR/bin` is included to the path.