summaryrefslogtreecommitdiff
path: root/comms/efax-gtk/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2005-07-22 21:35:27 +0000
committeradam <adam@pkgsrc.org>2005-07-22 21:35:27 +0000
commit07526d749c325ad28de10a8264006b63a749fef0 (patch)
tree34f847903efb234e8144b24f40f2dbb51d7190e7 /comms/efax-gtk/patches
parentf3e37ebce6b598c825529b0137e91be4ad7fe2bd (diff)
downloadpkgsrc-07526d749c325ad28de10a8264006b63a749fef0.tar.gz
Changes 3.0.3:
Provide a settings option to omit the destination fax number from the fax page top header line Use a mutex to ensure that writes to the Notifier pipe are atomic between threads Some fixes for 64 bit systems: Fixes for (harmless) warnings issued by gcc-4.0
Diffstat (limited to 'comms/efax-gtk/patches')
-rw-r--r--comms/efax-gtk/patches/patch-aa8
-rw-r--r--comms/efax-gtk/patches/patch-ab12
-rw-r--r--comms/efax-gtk/patches/patch-ac12
-rw-r--r--comms/efax-gtk/patches/patch-ad6
4 files changed, 19 insertions, 19 deletions
diff --git a/comms/efax-gtk/patches/patch-aa b/comms/efax-gtk/patches/patch-aa
index b95276d618b..9fe2b82479b 100644
--- a/comms/efax-gtk/patches/patch-aa
+++ b/comms/efax-gtk/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.4 2005/03/30 13:49:28 adam Exp $
+$NetBSD: patch-aa,v 1.5 2005/07/22 21:35:27 adam Exp $
---- Makefile.in.orig 2005-02-26 14:41:26.000000000 +0000
+--- Makefile.in.orig 2005-07-16 11:46:32.000000000 +0000
+++ Makefile.in
-@@ -141,7 +141,7 @@ sharedstatedir = @sharedstatedir@
+@@ -142,7 +142,7 @@ sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
@@ -11,7 +11,7 @@ $NetBSD: patch-aa,v 1.4 2005/03/30 13:49:28 adam Exp $
desktopdir = $(datadir)/applications
-@@ -265,12 +265,12 @@ uninstall-desktopDATA:
+@@ -266,12 +266,12 @@ uninstall-desktopDATA:
sysconfDATA_INSTALL = $(INSTALL_DATA)
install-sysconfDATA: $(sysconf_DATA)
@$(NORMAL_INSTALL)
diff --git a/comms/efax-gtk/patches/patch-ab b/comms/efax-gtk/patches/patch-ab
index 0bb6597da0e..00699eae02b 100644
--- a/comms/efax-gtk/patches/patch-ab
+++ b/comms/efax-gtk/patches/patch-ab
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.3 2005/03/30 13:49:28 adam Exp $
+$NetBSD: patch-ab,v 1.4 2005/07/22 21:35:27 adam Exp $
---- src/efax_controller.cpp.orig 2005-03-30 15:38:46.000000000 +0000
+--- src/efax_controller.cpp.orig 2005-06-14 20:37:33.000000000 +0000
+++ src/efax_controller.cpp
-@@ -234,8 +234,8 @@ std::pair<const char*, char* const*> Efa
+@@ -229,8 +229,8 @@ std::pair<const char*, char* const*> Efa
*temp_pp = 0;
@@ -13,7 +13,7 @@ $NetBSD: patch-ab,v 1.3 2005/03/30 13:49:28 adam Exp $
return std::pair<const char*, char* const*>(prog_name, exec_parms);
}
-@@ -290,7 +290,7 @@ void EfaxController::sendfax_slot(void)
+@@ -284,7 +284,7 @@ void EfaxController::sendfax_slot(void)
// if we reached this point, then the execvp() call must have failed
// report error and exit - uses _exit() and not exit()
@@ -22,7 +22,7 @@ $NetBSD: patch-ab,v 1.3 2005/03/30 13:49:28 adam Exp $
"and the PATH environmental variable\n");
_exit(EXEC_ERROR);
} // end of child process
-@@ -634,8 +634,8 @@ std::pair<const char*, char* const*> Efa
+@@ -627,8 +627,8 @@ std::pair<const char*, char* const*> Efa
*temp_pp = 0;
@@ -33,7 +33,7 @@ $NetBSD: patch-ab,v 1.3 2005/03/30 13:49:28 adam Exp $
return std::pair<const char*, char* const*>(prog_name, exec_parms);
}
-@@ -742,7 +742,7 @@ void EfaxController::receive(State mode)
+@@ -734,7 +734,7 @@ void EfaxController::receive(State mode)
// if we reached this point, then the execvp() call must have failed
// report the error and end this process - use _exit() and not exit()
diff --git a/comms/efax-gtk/patches/patch-ac b/comms/efax-gtk/patches/patch-ac
index 7c57dcbce9f..5213fd7a53f 100644
--- a/comms/efax-gtk/patches/patch-ac
+++ b/comms/efax-gtk/patches/patch-ac
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.3 2005/03/30 13:49:28 adam Exp $
+$NetBSD: patch-ac,v 1.4 2005/07/22 21:35:27 adam Exp $
---- src/fax_list.cpp.orig 2005-03-30 15:43:12.000000000 +0000
+--- src/fax_list.cpp.orig 2005-06-03 19:07:41.000000000 +0000
+++ src/fax_list.cpp
-@@ -533,7 +533,7 @@ std::pair<const char*, char* const*> Fax
+@@ -571,7 +571,7 @@ std::pair<const char*, char* const*> Fax
std::vector<std::string> efix_parms;
std::string temp;
@@ -11,7 +11,7 @@ $NetBSD: patch-ac,v 1.3 2005/03/30 13:49:28 adam Exp $
// shut up efix (comment out next line and uncomment following one if errors to be reported)
efix_parms.push_back("-v");
//efix_parms.push_back("-ve");
-@@ -679,8 +679,8 @@ std::pair<const char*, char* const*> Fax
+@@ -717,8 +717,8 @@ std::pair<const char*, char* const*> Fax
*temp_pp = 0;
@@ -22,7 +22,7 @@ $NetBSD: patch-ac,v 1.3 2005/03/30 13:49:28 adam Exp $
return std::pair<const char*, char* const*>(prog_name, exec_parms);
}
-@@ -886,7 +886,7 @@ void FaxListDialog::print_fax_thread(voi
+@@ -917,7 +917,7 @@ void FaxListDialog::print_fax_thread(voi
// if we reached this point, then the execvp() call must have failed
// report error and then end process - use _exit(), not exit()
@@ -31,7 +31,7 @@ $NetBSD: patch-ac,v 1.3 2005/03/30 13:49:28 adam Exp $
"and the PATH environmental variable\n");
_exit(0);
}
-@@ -1004,7 +1004,7 @@ void FaxListDialog::view_fax_thread(void
+@@ -1028,7 +1028,7 @@ void FaxListDialog::view_fax_thread(void
// if we reached this point, then the execvp() call must have failed
// report error and then end process - use _exit(), not exit()
diff --git a/comms/efax-gtk/patches/patch-ad b/comms/efax-gtk/patches/patch-ad
index 4f09fd33a04..1baddb1a8a2 100644
--- a/comms/efax-gtk/patches/patch-ad
+++ b/comms/efax-gtk/patches/patch-ad
@@ -1,8 +1,8 @@
-$NetBSD: patch-ad,v 1.2 2005/03/30 13:49:28 adam Exp $
+$NetBSD: patch-ad,v 1.3 2005/07/22 21:35:27 adam Exp $
---- src/main.cpp.orig 2005-03-30 15:44:28.000000000 +0000
+--- src/main.cpp.orig 2005-06-14 20:08:17.000000000 +0000
+++ src/main.cpp
-@@ -429,7 +429,7 @@ Glib::ustring configure_prog(bool reread
+@@ -462,7 +462,7 @@ std::string configure_prog(bool reread)
// we have finished reading the configuration file
// now enter parameters common to send and receive of faxes