diff options
Diffstat (limited to 'mail/sigit/files')
-rw-r--r-- | mail/sigit/files/patch-configure | 34 | ||||
-rw-r--r-- | mail/sigit/files/patch-data-Makefile | 11 |
2 files changed, 0 insertions, 45 deletions
diff --git a/mail/sigit/files/patch-configure b/mail/sigit/files/patch-configure deleted file mode 100644 index c2dcc1bc1a93..000000000000 --- a/mail/sigit/files/patch-configure +++ /dev/null @@ -1,34 +0,0 @@ ---- configure.orig 2003-07-28 19:47:51.000000000 +0200 -+++ configure 2010-07-20 15:00:43.000000000 +0200 -@@ -1084,16 +1084,25 @@ - echo $echo_front "Checking for POSIX threads... $echo_end" 1>&5 - fi - cat <<EOF >__conftest.c --#include <unistd.h> - #include <pthread.h> --int count=0; --void *handle() { count++;} --int main() { -+#include <stdio.h> -+#define NUM_THREADS 5 -+ -+int count = 0; -+ -+void *test_thread() -+{ -+ count++; -+ pthread_exit(NULL); -+} -+ -+int main (int argc, char *argv[]) -+{ - pthread_t thread; -- pthread_attr_t attr; -- pthread_create(&thread, &attr, handle, NULL); -+ pthread_create(&thread, NULL, test_thread, 0); - return 0; - } -+ - EOF - - if [ x"$PRELINK" = x ]; then diff --git a/mail/sigit/files/patch-data-Makefile b/mail/sigit/files/patch-data-Makefile deleted file mode 100644 index b7fe4bc840f2..000000000000 --- a/mail/sigit/files/patch-data-Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- data/Makefile.orig 2010-07-18 20:52:04.000000000 +0200 -+++ data/Makefile 2010-07-18 20:52:39.000000000 +0200 -@@ -18,7 +18,7 @@ - $(INSTALL) -d $(INSTALLROOT)$(ETCDIR) - $(INSTALL) -m $(MANMODE) sigit.data $(INSTALLROOT)$(PREFIX) - $(INSTALL) -m $(MANMODE) sigit.sig $(INSTALLROOT)$(PREFIX) -- $(INSTALL) -m $(MANMODE) sigit.rc $(INSTALLROOT)$(ETCDIR) -+ $(INSTALL) -m $(MANMODE) sigit.rc.dist $(INSTALLROOT)$(ETCDIR) - - # and a way to remove it again. - uninstall: |