1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00
freebsd-ports/databases/clip/files/patch-clip_configure
Dmitry Marakasov 098238bae5 - Update to 1.2.0-0
- Pass maintainership to submitter
- While here, remove dead mirrors and use SF macro

PR:		134715
Submitted by:	"Dmitry N. Kolesnikov" <dk.diklab@gmail.com>
2009-05-21 04:02:25 +00:00

30 lines
951 B
Plaintext

--- clip/configure.orig Thu Aug 25 10:36:33 2005
+++ clip/configure Sun Apr 16 11:12:21 2006
@@ -181,7 +181,7 @@
# initial CFLAGS
#
#C_FLAGS="-Wall -I. $DEBUGFLAGS $OPTFLAGS $MDBG"
-C_FLAGS="-Wall -I. -I./include $DEBUGFLAGS $OPTFLAGS -O0"
+C_FLAGS="-Wall -I. -I./include -I/usr/local/include -L/usr/local/lib $DEBUGFLAGS $OPTFLAGS -O0"
ADD_CFLAGS="-fPIC"
uname=`uname -s`
@@ -509,7 +509,7 @@
#include <iconv.h>
int main(int argc, char **argv) { iconv_t it; it = iconv_open("utf-8", "utf-8"); return 0;}
' > /tmp/$$.c
-$CC -o /tmp/$$ /tmp/$$.c -liconv 2>/dev/null 1>&2
+$CC -o /tmp/$$ /tmp/$$.c -I/usr/local/include -L/usr/local/lib -liconv 2>/dev/null 1>&2
if [ $? = 0 ]
then
echo 'ICONV_LIB=-liconv' >&3
@@ -651,7 +651,7 @@
else
if [ -f /usr/local/bin/wget ]
then
- echo '#define WGET_PRG "/usr/local/bin"' >&3
+ echo '#define WGET_PRG "/usr/local/bin/wget"' >&3
else
echo 'Warning: system does not have program WGET'
fi