From 07b009273656f57c7691c3a62863a63ff1aac44e Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Thu, 23 Nov 2006 02:36:26 +0000 Subject: -std=c99 seems to undefine PATH_MAX in this case. I don't care enough to fix it at the moment, so this workaround works. --- src/util/Makefile.am | 5 +---- src/util/vercmp.c | 3 +++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/Makefile.am b/src/util/Makefile.am index e8917599..553c3c09 100644 --- a/src/util/Makefile.am +++ b/src/util/Makefile.am @@ -1,9 +1,6 @@ bin_PROGRAMS = vercmp -AM_CFLAGS = \ - -I$(top_srcdir)/lib/libalpm \ - -I$(top_srcdir)/src/pacman \ - $(CFLAGS) +AM_CFLAGS = -I$(top_srcdir)/lib/libalpm vercmp_SOURCES = vercmp.c diff --git a/src/util/vercmp.c b/src/util/vercmp.c index ff100fd8..e7e21695 100644 --- a/src/util/vercmp.c +++ b/src/util/vercmp.c @@ -24,6 +24,9 @@ #include #include #include +#ifndef PATH_MAX +#define PATH_MAX 1024 +#endif #include "versioncmp.h" int main(int argc, char *argv[]) -- cgit v1.2.3-24-g4f1b