Home
last modified time | relevance | path

Searched refs:env_cc (Results 1 – 15 of 15) sorted by relevance

/dports/graphics/gimp-app/gimp-2.10.30/tools/
H A Dgimptool.c49 static const gchar *env_cc; variable
279 env_cc = p; in find_out_env_flags()
281 env_cc = "cl -MD"; in find_out_env_flags()
283 env_cc = CC; in find_out_env_flags()
285 if (g_ascii_strncasecmp (env_cc, "cl", 2) == 0 && in find_out_env_flags()
286 g_ascii_strncasecmp (env_cc, "clang", 5) != 0) in find_out_env_flags()
520 if (strcmp (env_cc, "g++") == 0 || in do_build_2()
522 strcmp (env_cc, "clang++") == 0 || in do_build_2()
525 else if (strcmp (env_cc, "gcc") == 0 || in do_build_2()
532 else if (strcmp (env_cc, "clang") == 0 || in do_build_2()
[all …]
/dports/science/tfel-edf/tfel-3.2.1/mfront/src/
H A DMakefileGenerator.cxx183 const auto env_cc = ::getenv("CC");
191 const auto cc = (env_cc == nullptr) ? "$(CC)" : env_cc;
218 if (env_cc != nullptr) {
219 m << "CC := " << env_cc << "\n";
224 if ((env_cc != nullptr) || (env_cxx != nullptr)) {
/dports/science/tfel/tfel-3.4.0/mfront/src/
H A DMakefileGenerator.cxx186 const auto env_cc = ::getenv("CC");
194 const auto cc = (env_cc == nullptr) ? "$(CC)" : env_cc;
221 if (env_cc != nullptr) {
222 m << "CC := " << env_cc << "\n";
227 if ((env_cc != nullptr) || (env_cxx != nullptr)) {
/dports/science/quantum-espresso/q-e-qe-6.7.0/install/m4/
H A Dx_ac_qe_cc.m433 if test "$env_cc" = "" ; then cc="$try_cc" ; else cc="$env_cc"; fi
H A Dx_ac_qe_default_env.m416 env_cc=$CC # C compiler (must be in the execution path)
/dports/editors/neovim/neovim-0.6.1/test/unit/
H A Dpreprocess.lua12 local env_cc = os.getenv("CC")
13 if env_cc then
14 table.insert(ccs, {path = {"/usr/bin/env", env_cc}, type = "gcc"})
/dports/mail/libetpan/libetpan-1.9.4/src/low-level/imap/
H A Dmailimap_types.c896 struct mailimap_env_cc* env_cc, in mailimap_envelope_new() argument
912 env->env_cc = env_cc; in mailimap_envelope_new()
936 if (env->env_cc) in mailimap_envelope_free()
937 mailimap_env_cc_free(env->env_cc); in mailimap_envelope_free()
982 struct mailimap_env_cc * env_cc; in mailimap_env_cc_new() local
984 env_cc = malloc(sizeof(* env_cc)); in mailimap_env_cc_new()
985 if (env_cc == NULL) in mailimap_env_cc_new()
987 env_cc->cc_list = cc_list; in mailimap_env_cc_new()
989 return env_cc; in mailimap_env_cc_new()
995 mailimap_address_list_free(env_cc->cc_list); in mailimap_env_cc_free()
[all …]
H A Dmailimap_types.h1247 struct mailimap_env_cc * env_cc; /* can be NULL */ member
1260 struct mailimap_env_cc* env_cc,
1300 void mailimap_env_cc_free(struct mailimap_env_cc * env_cc);
H A Dmailimap_print.c532 mailimap_envelope_address_list_print(env->env_cc->cc_list); in mailimap_envelope_print()
H A Dmailimap_parser.c5163 struct mailimap_env_cc * env_cc; in mailimap_env_cc_parse() local
5177 env_cc = mailimap_env_cc_new(list); in mailimap_env_cc_parse()
5178 if (env_cc == NULL) { in mailimap_env_cc_parse()
5184 * result = env_cc; in mailimap_env_cc_parse()
/dports/mail/mailutils/mailutils-3.13/libproto/imap/
H A Dfetch.c777 env_cc, enumerator
909 case env_cc: in _fill_response()
/dports/mail/libvmime/vmime-0.9.2/src/vmime/net/imap/
H A DIMAPMessage.cpp466 IMAPUtils::convertAddressList(*(env->env_cc()), cc); in processFetchResponse()
H A DIMAPParser.hpp3037 COMPONENT_ALIAS(address_list, env_cc);
3151 VIMAP_PARSER_GET(IMAPParser::env_cc, m_env_cc);
3177 IMAPParser::env_cc* m_env_cc;
3190 const IMAPParser::env_cc* env_cc() const { return (m_env_cc); }
/dports/mail/libetpan/libetpan-1.9.4/src/driver/implementation/imap/
H A Dimapdriver_tools.c2199 if (env->env_cc != NULL) { in imap_env_to_fields()
2200 if (env->env_cc->cc_list != NULL) { in imap_env_to_fields()
2204 r = imap_mailbox_list_to_address_list(env->env_cc->cc_list, &addr_list); in imap_env_to_fields()
/dports/science/quantum-espresso/q-e-qe-6.7.0/install/
H A Dconfigure3406 if test "$env_cc" = "" ; then cc="$try_cc" ; else cc="$env_cc"; fi