diff options
Diffstat (limited to 'net/psi/files/patch-configure')
-rw-r--r-- | net/psi/files/patch-configure | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/net/psi/files/patch-configure b/net/psi/files/patch-configure deleted file mode 100644 index 4a00387f8cab..000000000000 --- a/net/psi/files/patch-configure +++ /dev/null @@ -1,41 +0,0 @@ ---- configure.orig Sat Nov 20 16:05:03 2004 -+++ configure Mon Mar 28 02:12:08 2005 -@@ -94,6 +94,8 @@ - shift - ;; - --help) show_usage; exit ;; -+ --with-*) -+ shift ;; - *) show_usage; exit ;; - esac - done -@@ -882,9 +884,14 @@ - "}\n"; - - QString extra; -+ QString pthread_cflags = getenv("PTHREAD_CFLAGS"); -+ QString pthread_ldflags = getenv("PTHREAD_LDFLAGS"); -+ - if(!path.isEmpty()) - extra += QString("-L") + path + ' '; - extra += QString("-l") + name; -+ extra += ' ' + pthread_cflags + ' ' + pthread_ldflags + ' '; -+ - if(!doCompileAndLink(str, extra)) - return false; - return true; -@@ -1110,14 +1117,6 @@ - echo - exit 1; - fi --cat >Makefile.tmp <<EOT --export QTDIR = $QTDIR --export PATH = $QTDIR/bin:$PATH --EOT --cat Makefile >> Makefile.tmp --rm -f Makefile --cp -f Makefile.tmp Makefile --rm -f Makefile.tmp - - echo - echo Good, your configure finished. Now run \'make\'. |