From 91d1d5325b6cf10a4cac8be6894d2dd548395ca4 Mon Sep 17 00:00:00 2001 From: Akira Kakuto Date: Mon, 10 Dec 2012 12:32:40 +0000 Subject: remove look_for_cmd() from win32lib.c. git-svn-id: svn://tug.org/texlive/trunk@28489 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/kpathsea/win32lib.c | 95 ----------------------------------- 1 file changed, 95 deletions(-) (limited to 'Build/source/texk/kpathsea/win32lib.c') diff --git a/Build/source/texk/kpathsea/win32lib.c b/Build/source/texk/kpathsea/win32lib.c index 9573346bc74..5741c953e81 100644 --- a/Build/source/texk/kpathsea/win32lib.c +++ b/Build/source/texk/kpathsea/win32lib.c @@ -571,101 +571,6 @@ kpathsea_init_user_info (kpathsea kpse) strcpy (kpse->the_passwd.pw_shell, getenv ("SHELL")); } -/* lookcmd */ - -BOOL -look_for_cmd(const char *cmd, char **app, char **new) -{ - char *env_path; - char *p, *q; - char pname[MAXPATHLEN], *fp; - char *suffixes[] = { ".bat", ".cmd", ".com", ".exe", NULL }; - char **s; - char *app_name, *new_cmd; - - BOOL go_on; - - *new = *app = NULL; - new_cmd = app_name = NULL; - - /* We should look for the application name along the PATH, - and decide to prepend "%COMSPEC% /c " or not to the command line. - Do nothing for the moment. */ - - /* Another way to do that would be to try CreateProcess first without - invoking cmd, and look at the error code. If it fails because of - command not found, try to prepend "cmd /c" to the cmd line. - */ - - /* Look for the application name */ - for (p = (char *)cmd; *p && isspace(*p); p++); - if (*p == '"') { - q = ++p; - while(*p && *p != '"') p++; - if (*p == '\0') { - fprintf(stderr, "Look_for_cmd: malformed command (\" not terminated)\n"); - return FALSE; - } - } - else - for (q = p; *p && !isspace(*p); p++); - /* q points to the beginning of appname, p to the last + 1 char */ - if ((app_name = malloc(p - q + 1)) == NULL) { - fprintf(stderr, "Look_for_cmd: malloc(app_name) failed.\n"); - return FALSE; - } - strncpy(app_name, q, p - q ); - app_name[p - q] = '\0'; - pname[0] = '\0'; -#ifdef TRACE - fprintf(stderr, "popen: app_name = %s\n", app_name); -#endif - - { - char *tmp = getenv("PATH"); - env_path = xmalloc(strlen(tmp) + 3); - strcpy(env_path, tmp); - strcat(env_path, ";."); - } - - /* Looking for appname on the path */ - for (s = suffixes, go_on = TRUE; go_on; s++) { - if (SearchPath(env_path, /* Address of search path */ - app_name, /* Address of filename */ - *s, /* Address of extension */ - MAXPATHLEN, /* Size of destination buffer */ - pname, /* Address of destination buffer */ - &fp) /* File part of app_name */ - != 0 && *s) { /* added *s in order not to allow no suffix. - --ak 2009/07/08 */ -#ifdef TRACE - fprintf(stderr, "%s found with suffix %s\nin %s\n", app_name, *s, pname); -#endif - new_cmd = xstrdup(cmd); - free(app_name); - app_name = xstrdup(pname); - break; - } - go_on = (*s != NULL); - } - if (go_on == FALSE) { - /* the app_name was not found */ -#ifdef TRACE - fprintf(stderr, "%s not found, concatenating comspec\n", app_name); -#endif - new_cmd = concatn("cmd.exe", " /c ", cmd, NULL); - free(app_name); - app_name = NULL; - } - if (env_path) free(env_path); - - *new = new_cmd; - *app = app_name; - - return TRUE; - -} - /* Command parser. Borrowed from DJGPP. */ -- cgit v1.2.3