forked from Lainports/freebsd-ports
74 lines
1.8 KiB
Text
74 lines
1.8 KiB
Text
Index: src/configure
|
|
diff -u src/configure.orig src/configure
|
|
--- src/configure.orig 2008-10-04 07:44:08.000000000 +0900
|
|
+++ src/configure 2008-10-04 23:01:57.000000000 +0900
|
|
@@ -19,6 +19,10 @@
|
|
then
|
|
without_libsensors=yes
|
|
fi
|
|
+ if [ "$i" = "--without-ntlm" ]
|
|
+ then
|
|
+ without_ntlm=yes
|
|
+ fi
|
|
done
|
|
|
|
PKG_INCLUDE=`pkg-config gtk+-2.0 --cflags`
|
|
@@ -56,8 +60,8 @@
|
|
}
|
|
EOF
|
|
|
|
-$CC ${CFLAGS} ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
|
|
-$CC test.o -o test ${LINK_FLAGS} ${PKG_LIBS} -lssl -lcrypto 2>& 5
|
|
+$CC ${PKG_INCLUDE} -I${OPENSSLINC} -c test.c -o test.o 2>& 5
|
|
+$CC test.o -o test ${LINK_FLAGS} ${PKG_LIBS} -L${OPENSSLLIB} -lssl -lcrypto 2>& 5
|
|
|
|
if [ -x ./test ] && ./test
|
|
then
|
|
@@ -102,8 +106,8 @@
|
|
}
|
|
EOF
|
|
|
|
-$CC ${CFLAGS} ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
|
|
-$CC test.o -o test ${LINK_FLAGS} ${PKG_LIBS} -lgnutls-openssl 2>& 5
|
|
+$CC ${PKG_INCLUDE} -I${GNUTLSINC} -c test.c -o test.o 2>& 5
|
|
+$CC test.o -o test ${LINK_FLAGS} ${PKG_LIBS} -L${GNUTLSLIB} -lgnutls-openssl 2>& 5
|
|
|
|
if [ -x ./test ] && ./test
|
|
then
|
|
@@ -121,6 +125,8 @@
|
|
|
|
rm -f test test.exe test.o test.c
|
|
|
|
+if [ "$without_ntlm" != "yes" ]
|
|
+then
|
|
# echo "Checking for libntlm... " 1>& 2
|
|
echo "Checking for libntlm... " 1>& 5
|
|
|
|
@@ -136,7 +142,7 @@
|
|
}
|
|
EOF
|
|
|
|
-$CC ${CFLAGS} ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
|
|
+$CC ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
|
|
$CC test.o -o test ${LINK_FLAGS} ${PKG_LIBS} -lntlm 2>& 5
|
|
|
|
if [ -x ./test ] && ./test
|
|
@@ -148,7 +154,8 @@
|
|
# echo "Not found, mail check will not have ntlm support..." 1>& 2
|
|
echo "Not found, mail check will not have ntlm support..." 1>& 5
|
|
fi
|
|
-
|
|
+fi
|
|
+# end of ntlm check
|
|
|
|
|
|
rm -f test test.exe test.o test.c
|
|
@@ -181,7 +188,7 @@
|
|
}
|
|
EOF
|
|
|
|
-$CC ${CFLAGS} ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
|
|
+$CC ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
|
|
$CC test.o -o test ${LINK_FLAGS} ${PKG_LIBS} -lsensors 2>& 5
|
|
|
|
if [ -x ./test ] && ./test
|