summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2005-10-06 09:28:30 +0200
committerAurelien Foret <aurelien@archlinux.org>2005-10-06 09:28:30 +0200
commit4ee51bdf46144d4586843e490b3bb1fd23ffd585 (patch)
treea1223ace4e73f0d1d41db6f3ef638d4863a74cba /src
parenteffbe50ffd811f4c289e5cb264c7b01303f57d19 (diff)
downloadpacman-4ee51bdf46144d4586843e490b3bb1fd23ffd585.tar.gz
pacman-4ee51bdf46144d4586843e490b3bb1fd23ffd585.tar.xz
Added a CYGWIN define to include header files required to build in a Cygwin environment
Diffstat (limited to 'src')
-rw-r--r--src/pacman/pacman.c9
-rw-r--r--src/pacman/sync.c3
-rw-r--r--src/pacman/util.c3
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"