-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wayne Davison
committed
Jul 27, 2002
1 parent
ca23c51
commit cc248aa
Showing
12 changed files
with
1,837 additions
and
649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
Unlike zlib, this is a perfectly ordinary copy of libpopt. It's only | ||
used on platforms that don't have a sufficiently up-to-date copy of | ||
their own. If you build rsync on a platform which has popt, this | ||
directory should not be used. (You can control that using | ||
--with-included-popt.) | ||
This is a perfectly ordinary copy of libpopt. It is only used on platforms | ||
that do not have a sufficiently up-to-date copy of their own. If you build | ||
rsync on a platform which has popt, this directory should not be used. (You | ||
can control that using the --with-included-popt configure flag.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
/* (C) 1998 Red Hat Software, Inc. -- Licensing details are in the COPYING | ||
/** \ingroup popt | ||
* \file popt/findme.h | ||
*/ | ||
|
||
/* (C) 1998-2000 Red Hat, Inc. -- Licensing details are in the COPYING | ||
file accompanying popt source distributions, available from | ||
ftp://ftp.redhat.com/pub/code/popt */ | ||
ftp://ftp.rpm.org/pub/rpm/dist. */ | ||
|
||
#ifndef H_FINDME | ||
#define H_FINDME | ||
|
||
const char * findProgramPath(const char * argv0); | ||
/** | ||
* Return absolute path to executable by searching PATH. | ||
* @param argv0 name of executable | ||
* @return (malloc'd) absolute path to executable (or NULL) | ||
*/ | ||
/*@null@*/ const char * findProgramPath(/*@null@*/ const char * argv0) | ||
/*@*/; | ||
|
||
#endif |
Oops, something went wrong.