diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/pacman.c | 9 | ||||
-rw-r--r-- | src/pacman/sync.c | 3 | ||||
-rw-r--r-- | src/pacman/util.c | 3 |
3 files changed, 15 insertions, 0 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 39de1f0e..89033813 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -19,13 +19,18 @@ * USA. */ +#include "config.h" #include <stdlib.h> #include <stdio.h> #include <limits.h> #include <getopt.h> #include <string.h> #include <signal.h> +#ifndef CYGWIN #include <mcheck.h> /* debug */ +#else +#include <libgen.h> /* basename */ +#endif #include <alpm.h> /* pacman */ @@ -92,8 +97,10 @@ int main(int argc, char *argv[]) int ret = 0; char *cenv = NULL; +#ifndef CYGWIN /* debug */ mtrace(); +#endif cenv = getenv("COLUMNS"); if(cenv != NULL) { @@ -226,8 +233,10 @@ void cleanup(int signum) FREELIST(pm_targets); +#ifndef CYGWIN /* debug */ muntrace(); +#endif fflush(stdout); diff --git a/src/pacman/sync.c b/src/pacman/sync.c index fb00c78d..17b9b3a2 100644 --- a/src/pacman/sync.c +++ b/src/pacman/sync.c @@ -26,6 +26,9 @@ #include <sys/stat.h> #include <unistd.h> #include <dirent.h> +#ifdef CYGWIN +#include <limits.h> /* PATH_MAX */ +#endif #include <alpm.h> /* pacman */ diff --git a/src/pacman/util.c b/src/pacman/util.c index cbfaa3e5..1d3844a3 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -29,6 +29,9 @@ #include <ctype.h> #include <dirent.h> #include <unistd.h> +#ifdef CYGWIN +#include <limits.h> /* PATH_MAX */ +#endif /* pacman */ #include "util.h" |