forked from PsychoticNinja/irssi
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@918 dbcabf3a-b0e7-0310-adc4-f8d773084564
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING
|
|
file accompanying popt source distributions, available from
|
|
ftp://ftp.redhat.com/pub/code/popt */
|
|
|
|
#include "common.h"
|
|
|
|
#ifdef __NeXT
|
|
/* access macros are not declared in non posix mode in unistd.h -
|
|
don't try to use posix on NeXTstep 3.3 ! */
|
|
#include <libc.h>
|
|
#endif
|
|
|
|
#include "findme.h"
|
|
|
|
char * findProgramPath(char * argv0) {
|
|
char * path = getenv("PATH");
|
|
char * pathbuf;
|
|
char * start, * chptr;
|
|
char * buf;
|
|
|
|
/* If there is a / in the argv[0], it has to be an absolute
|
|
path */
|
|
if (strchr(argv0, '/'))
|
|
return g_strdup(argv0);
|
|
|
|
if (!path) return NULL;
|
|
|
|
start = pathbuf = g_strdup(path);
|
|
buf = g_malloc(strlen(path) + strlen(argv0) + 2);
|
|
|
|
chptr = NULL;
|
|
do {
|
|
if ((chptr = strchr(start, ':')))
|
|
*chptr = '\0';
|
|
sprintf(buf, "%s/%s", start, argv0);
|
|
|
|
#ifndef WIN32
|
|
if (!access(buf, X_OK)) {
|
|
g_free(pathbuf);
|
|
return buf;
|
|
}
|
|
#endif
|
|
|
|
if (chptr)
|
|
start = chptr + 1;
|
|
else
|
|
start = NULL;
|
|
} while (start && *start);
|
|
|
|
g_free(pathbuf);
|
|
free(buf);
|
|
|
|
return NULL;
|
|
}
|