pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Fix ifdef case



Module Name:	pkgsrc-wip
Committed By:	Ryo ONODERA <ryoon%NetBSD.org@localhost>
Pushed By:	ryoon
Date:		Tue Aug 16 04:33:16 2016 +0900
Changeset:	1e2f035a562a0526cf02725d83728fbd91294f76

Modified Files:
	chromium-new/distinfo
	chromium-new/patches/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h

Log Message:
Fix ifdef case

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=1e2f035a562a0526cf02725d83728fbd91294f76

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 chromium-new/distinfo                                                   | 2 +-
 ...arty_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diffs:
diff --git a/chromium-new/distinfo b/chromium-new/distinfo
index 06a3587..4e21236 100644
--- a/chromium-new/distinfo
+++ b/chromium-new/distinfo
@@ -355,7 +355,7 @@ SHA1 (patch-third__party_libXNVCtrl_libXNVCtrl.gyp) = 8ee955cb03b5be8d6ebf64d5f5
 SHA1 (patch-third__party_libjingle_libjingle.gyp) = b1fe592197c12145a975037433d273ada7f42e10
 SHA1 (patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_memory_singleton.h) = e1622f4206fe5a76fbc82e5fa75bf36f60001ec2
 SHA1 (patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_synchronization_lock.h) = 98fb2dae47efa5512bd77615ed8fb6e7ba76a8d1
-SHA1 (patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h) = 75d7d42a2b7d42a3656276ef3dff2c9f782c1a5a
+SHA1 (patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h) = cd4c139979b6cb953dfd459777f4bd88e83d2a8c
 SHA1 (patch-third__party_libphonenumber_libphonenumber.gyp) = f1635609f27a322aa2834b4e70a58324dd02bb92
 SHA1 (patch-third__party_libpng_libpng.gyp) = 2790ee87c4b275e327971f9bad59ff25b6bbacdc
 SHA1 (patch-third__party_libyuv_include_libyuv_row.h) = 46cafafca01293312b42f74d806aa00a40763292
diff --git a/chromium-new/patches/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h b/chromium-new/patches/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h
index 62d9651..4cb50ff 100644
--- a/chromium-new/patches/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h
+++ b/chromium-new/patches/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h
@@ -15,7 +15,7 @@ $NetBSD$
  
  #if !defined(NDEBUG) && !defined(I18N_PHONENUMBERS_USE_BOOST) && \
 -    (defined(__linux__) || defined(__apple__))
-+    (defined(__linux__) || defined(__apple__)) || defined(__FreeBSD__) || defined(__OpenBSD__) && !defined(__NetBSD__)
++    ((defined(__linux__) || defined(__apple__)) || defined(__FreeBSD__) || defined(__OpenBSD__)) && !defined(__NetBSD__)
  
  #include <pthread.h>
  


Home | Main Index | Thread Index | Old Index