summaryrefslogtreecommitdiff
path: root/src/configure
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:43 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:43 +0200
commitd3982ec72b255876db00825605d1d5aae0bc313e (patch)
treea653552b7d229f7f27262980da7550d39961a102 /src/configure
parent796609174e5ecb35fab992969e7690186840048a (diff)
tagging ychat-0.7.7.1ychat-0.7.7.1
Diffstat (limited to 'src/configure')
-rwxr-xr-xsrc/configure9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/configure b/src/configure
index c53d0de..7bb48df 100755
--- a/src/configure
+++ b/src/configure
@@ -29,7 +29,8 @@ perl -e '
"mysql/mysql.h", #//<< Not needed for yhttpd
"netinet/in.h",
"time.h",
- "ncurses.h"
+ "ncurses.h",
+ "ext/hash_map"
);
my @libs = (
@@ -75,6 +76,7 @@ perl -e '
"/include",
"/usr/include",
"/usr/local/include",
+ "/usr/lib/",
"/usr/pkg/include",
"/opt/include",
"/opt/local/include"
@@ -143,14 +145,19 @@ perl -e '
print "Or set the environment variables YCHATHEADERPATHS and YCHATLIBPATHS.\n";
print " Example: setenv YCHATHEADERPATHS \"/your/header/includes:/a/includes\"\n";
print "(The environment variables have to be seperated by an :)\n";
+ print "PS: You may use the locate and/or find command to search for files.\n";
exit(1);
}
+ `touch ../err`;
return "";
}
+ print "Headers:\n";
+
map { $incadd{&check($deepness, $_, @headerpaths)}++ }
@headers;
+ print "Libraries:\n";
map { $libadd{&check($deepness, $_, @libpaths)}++ }
@libs;