Account Blocked

2014-08-24 Thread Support

   Dear costumer,
  You have received this email because our system has noticed some
   suspicious activities with AÏÏle ID.Â
All what you need to keep enjoying all the benefits of your id is to
confirm your identity , follow the link below to start this process .
  [1]Confirm Now 
  Wondering why you got this email?
   Some massive failed login attempts were been made from unknown location
  that didnt match with your usual one , as a result we decided to
  suspend your account temporarily in order to protect it .
  This is an automated message. Please do not reply to this email.
   Thanks,
 Customer.Â

   TM and copyright © 2014  Inc. 1 Infinite Loop, MS 96-DM, Cupertino,
  CA 95014.

 All Rights Reserved / Keep Informed / Privacy Policy / My ID

References

   1. http://goo.gl/IsbNDo
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


Re: chromium 37 up for testing (and polishing)

2014-08-24 Thread Carlos Jacobo Puga Medina
On Sun, 24 Aug 2014 11:56:56 +0200
Carlos Jacobo Puga Medina c...@fbsd.es wrote:

 Hi René,
 
 I fixed patch-third_party__khronos__GLES2__gl2.h which missed include 
 cstddef
 
 Cheers,

All patches were reviewed and are attached to this mail.

-- 
Carlos Jacobo Puga Medina c...@fbsd.es
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


Re: chromium 37 up for testing (and polishing)

2014-08-24 Thread Carlos Jacobo Puga Medina
On Sun, 24 Aug 2014 13:17:00 +0200
Carlos Jacobo Puga Medina c...@fbsd.es wrote:

 On Sun, 24 Aug 2014 11:56:56 +0200
 Carlos Jacobo Puga Medina c...@fbsd.es wrote:
 
  Hi René,
  
  I fixed patch-third_party__khronos__GLES2__gl2.h which missed include 
  cstddef
  
  Cheers,
 
 All patches were reviewed and are attached to this mail.

--- ./gpu/command_buffer/common/gles2_cmd_format.h.orig 2014-08-20 
21:02:37.0 +0200
+++ ./gpu/command_buffer/common/gles2_cmd_format.h  2014-08-24 
00:50:27.0 +0200
@@ -39,8 +39,8 @@
 typedef double GLdouble;
 typedef double GLclampd;
 typedef void GLvoid;
-typedef khronos_intptr_t GLintptr;
-typedef khronos_ssize_t  GLsizeiptr;
+typedef ptrdiff_t GLintptr;
+typedef ptrdiff_t GLsizeiptr;
 
 namespace gpu {
 namespace gles2 {

--- ./third_party/mesa/src/include/GLES2/gl2.h.orig 2014-08-20 
21:03:54.0 +0200
+++ ./third_party/mesa/src/include/GLES2/gl2.h  2014-08-24 01:13:41.0 
+0200
@@ -4,6 +4,7 @@
 /* $Revision: 10602 $ on $Date:: 2010-03-04 22:35:34 -0800 #$ */
 
 #include GLES2/gl2platform.h
+#include cstddef
 
 #ifdef __cplusplus
 extern C {
@@ -35,8 +36,8 @@
 typedef khronos_int32_t  GLfixed;
 
 /* GL types for handling large vertex buffer objects */
-typedef khronos_intptr_t GLintptr;
-typedef khronos_ssize_t  GLsizeiptr;
+typedef ptrdiff_t GLintptr;
+typedef ptrdiff_t GLsizeiptr;
 
 /* OpenGL ES core versions */
 #define GL_ES_VERSION_2_0 1

--- ./third_party/khronos/GLES2/gl2.h.orig  2014-08-20 21:03:05.0 
+0200
+++ ./third_party/khronos/GLES2/gl2.h   2014-08-24 11:39:22.0 +0200
@@ -38,6 +38,7 @@
 
 #include GLES2/gl2chromium.h
 #include GLES2/gl2platform.h
+#include cstddef
 
 /* Generated on date 20131202 */
 
@@ -67,8 +68,8 @@
 typedef unsigned int GLuint;
 typedef char GLchar;
 typedef khronos_float_t GLfloat;
-typedef khronos_ssize_t GLsizeiptr;
-typedef khronos_intptr_t GLintptr;
+typedef ptrdiff_t GLsizeiptr;
+typedef ptrdiff_t GLintptr;
 typedef unsigned int GLbitfield;
 typedef int GLint;
 typedef unsigned char GLboolean;

--- ./gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc.orig 2014-08-24 
12:26:40.0 +0200
+++ ./gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc  2014-08-24 
12:33:01.0 +0200
@@ -31,8 +31,8 @@
   functions-fBindVertexArray = glBindVertexArrayOES;
   functions-fBlendColor = glBlendColor;
   functions-fBlendFunc = glBlendFunc;
-  functions-fBufferData = glBufferData;
-  functions-fBufferSubData = glBufferSubData;
+  functions-fBufferData = (GrGLBufferDataProc)glBufferData;
+  functions-fBufferSubData = (GrGLBufferSubDataProc)glBufferSubData;
   functions-fClear = glClear;
   functions-fClearColor = glClearColor;
   functions-fClearStencil = glClearStencil;
@@ -74,7 +74,7 @@
   functions-fInsertEventMarker = glInsertEventMarkerEXT;
   functions-fLineWidth = glLineWidth;
   functions-fLinkProgram = glLinkProgram;
-  functions-fMapBufferSubData = glMapBufferSubDataCHROMIUM;
+  functions-fMapBufferSubData = 
(GrGLMapBufferSubDataProc)glMapBufferSubDataCHROMIUM;
   functions-fMapTexSubImage2D = glMapTexSubImage2DCHROMIUM;
   functions-fPixelStorei = glPixelStorei;
   functions-fPopGroupMarker = glPopGroupMarkerEXT;

-- 
Carlos Jacobo Puga Medina c...@fbsd.es
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #15 from Carlos Jacobo Puga Medina c...@fbsd.es ---
You need to regenerate patches to apply it cleanly.

Use 'diff -urN file.orig file' to do it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #16 from oleg.nau...@gmail.com ---
Created attachment 146217
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=146217action=edit
Patch for chromium 36.0.1985.143

Patch file regenerated for www/chromium 36.0.1985.143

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #17 from Carlos Jacobo Puga Medina c...@fbsd.es ---
(In reply to oleg.nauman from comment #16)
 Created attachment 146217 [details]
 Patch for chromium 36.0.1985.143
 
 Patch file regenerated for www/chromium 36.0.1985.143

Note that these patches fix chromium build with Clang.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #18 from oleg.nau...@gmail.com ---
Yes it was clear
Build in progress, but unfortunately my desktop is old so it may take a while.

Thank you

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #20 from oleg.nau...@gmail.com ---
Unfortunately compilation fails on 9488th target even with updated patch:


CXX obj/ppapi/shared_impl/ppapi_shared.ppb_opengles2_shared.o
FAILED: c++ -MMD -MF
obj/ppapi/shared_impl/ppapi_shared.ppb_opengles2_shared.o.d
-DV8_DEPRECATION_WARNINGS -DBLINK_SCALE_FILTERS_AT_RECORD_TIME
-D_FILE_OFFSET_BITS=64 -DNO_TCMALLOC -DDISABLE_NACL -DCHROMIUM_BUILD
-DCR_CLANG_REVISION=206824 -DTOOLKIT_VIEWS=1 -DUSE_AURA=1 -DUSE_CAIRO=1
-DUSE_GLIB=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_LIBJPEG_TURBO=1 -DUSE_X11=1
-DUSE_CLIPBOARD_AURAX11=1 -DENABLE_ONE_CLICK_SIGNIN -DUSE_XI2_MT=2
-DENABLE_REMOTING=1 -DENABLE_WEBRTC=1 -DUSE_PROPRIETARY_CODECS
-DENABLE_CONFIGURATION_POLICY -DENABLE_NOTIFICATIONS -DENABLE_EGLIMAGE=1
-DENABLE_TASK_MANAGER=1 -DENABLE_EXTENSIONS=1 -DENABLE_PLUGINS=1
-DENABLE_SESSION_SERVICE=1 -DENABLE_THEMES=1 -DENABLE_AUTOFILL_DIALOG=1
-DENABLE_BACKGROUND=1 -DENABLE_GOOGLE_NOW=1 -DCLD_VERSION=2
-DENABLE_FULL_PRINTING=1 -DENABLE_PRINTING=1 -DENABLE_SPELLCHECK=1
-DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1
-DENABLE_MANAGED_USERS=1
'-DDATA_REDUCTION_FALLBACK_HOST=http://compress.googlezip.net:80/;'
'-DDATA_REDUCTION_DEV_HOST=http://proxy-dev.googlezip.net:80/;'
'-DSPDY_PROXY_AUTH_ORIGIN=https://proxy.googlezip.net:443/;'
'-DDATA_REDUCTION_PROXY_PROBE_URL=http://check.googlezip.net/connect;'
-DGL_GLEXT_PROTOTYPES -DSK_ENABLE_INST_COUNT=0 -DSK_SUPPORT_GPU=1
'-DGR_GL_CUSTOM_SETUP_HEADER=GrGLConfig_chrome.h'
-DSK_ENABLE_LEGACY_API_ALIASING=1 -DSK_ATTR_DEPRECATED=SK_NOTHING_ARG1
-DGR_GL_IGNORE_ES3_MSAA=0 -DSK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT
-DSK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS=1 -DSK_SUPPORT_LEGACY_GETTOPDEVICE
-DSK_SUPPORT_LEGACY_N32_NAME -DSK_SUPPORT_LEGACY_BLURMASKFILTER_STYLE
-DSK_SUPPORT_LEGACY_GETTOTALCLIP -DSK_USE_POSIX_THREADS
-DSK_DEFERRED_CANVAS_USES_FACTORIES=1 -DU_USING_ICU_NAMESPACE=0 -DENABLE_WEBP
-DUSE_SYSTEM_LIBJPEG -DUSE_NSS=1 -D__STDC_CONSTANT_MACROS
-D__STDC_FORMAT_MACROS -DPPAPI_SHARED_IMPLEMENTATION
-DPPAPI_THUNK_IMPLEMENTATION -DNDEBUG -DNVALGRIND
-DDYNAMIC_ANNOTATIONS_ENABLED=0 -D_FORTIFY_SOURCE=2
-Igen/shim_headers/libpng/target -Igen/shim_headers/zlib/target
-Igen/shim_headers/icuuc/target -Igen/shim_headers/icui18n/target
-Igen/shim_headers/libevent/target -I../../third_party/khronos -I../../gpu
-I/usr/local/include -I../.. -I../../skia/config
-I../../third_party/WebKit/Source -I../../third_party/skia/src/core
-I../../third_party/skia/include/core -I../../third_party/skia/include/effects
-I../../third_party/skia/include/pdf -I../../third_party/skia/include/gpu
-I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops
-I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports
-I../../third_party/skia/include/utils -I../../skia/ext
-I../../third_party/WebKit -I../../third_party/npapi
-I../../third_party/npapi/bindings -I../../v8/include
-I../../third_party/ots/include -I../../third_party/qcms/src
-I../../third_party/iccjpeg -fstack-protector --param=ssp-buffer-size=4 
-pthread -fno-exceptions -fno-strict-aliasing -Wall -Wno-unused-parameter
-Wno-missing-field-initializers -fvisibility=hidden -pipe -fPIC
-Wheader-hygiene -Wno-char-subscripts -Wno-unneeded-internal-declaration
-Wno-covered-switch-default -Wstring-conversion -Wno-c++11-narrowing
-Wno-reserved-user-defined-literal -Wno-deprecated-register -Wno-absolute-value
-momit-leaf-frame-pointer -fcolor-diagnostics -fPIC -fvisibility=hidden
-pthread -I/usr/local/include/glib-2.0 -I/usr/local/include
-I/usr/local/include -I/usr/local/include/libpng15 -I/usr/local/include
-I/usr/local/include/freetype2 -msse2 -mmmx -m32 -O2 -fdata-sections
-ffunction-sections -funwind-tables -O2 -pipe -march=core2 -fno-stack-protector
-Wno-unknown-warning-option -fno-strict-aliasing -fno-rtti
-fno-threadsafe-statics -fvisibility-inlines-hidden -Wsign-compare -std=gnu++11
 -c ../../ppapi/shared_impl/ppb_opengles2_shared.cc -o
obj/ppapi/shared_impl/ppapi_shared.ppb_opengles2_shared.o
In file included from ../../ppapi/shared_impl/ppb_opengles2_shared.cc:14:
In file included from ../../gpu/command_buffer/client/gles2_implementation.h:8:
../../third_party/khronos/GLES2/gl2.h:70:21: error: typedef redefinition with
different types ('__ptrdiff_t' (aka 'int') vs 'long')
typedef __ptrdiff_t GLsizeiptr;
^
../../ppapi/c/ppb_opengles2.h:38:18: note: previous definition is here
typedef long int GLsizeiptr;
 ^
In file included from ../../ppapi/shared_impl/ppb_opengles2_shared.cc:14:
In file included from ../../gpu/command_buffer/client/gles2_implementation.h:8:
../../third_party/khronos/GLES2/gl2.h:71:21: error: typedef redefinition with
different types ('__ptrdiff_t' (aka 'int') vs 'long')
typedef __ptrdiff_t GLintptr;
^
../../ppapi/c/ppb_opengles2.h:37:18: note: previous definition is here
typedef long int GLintptr;
 ^
In 

[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #22 from oleg.nau...@gmail.com ---
clang was complaining about unknown type of ptrdiff_t and suggested to use
__ptrdiff_t instead
Tomorrow I will provide you with exact error message.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #23 from Carlos Jacobo Puga Medina c...@fbsd.es ---
Created attachment 146224
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=146224action=edit
patches reworked

Ok, I fixed these also. Attached patches, please regenerates it again for
chromioum 36.0.1985.143.

Simply replace it (affected patches below)

- files/patch-gpu__command_buffer__common__gles2_cmd_format.h
- files/patch-third_party__khronos__GLES2__gl2.h

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


[Bug 192685] www/chromium 36.0.1985.143 fails to build on 10-stable

2014-08-24 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192685

--- Comment #24 from Robert Cina transit...@gmail.com ---
Since I initially reported this, I just want to confirm that chromium now
builds and installs properly on my 10-stable system as of right now.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org


missing icon, screen black on resize

2014-08-24 Thread Charles Cowart
Hello,

First off, I’d like to say thanks so much for maintaining Chromium. I tried 
compiling the latest source from ports, using the early August snapshot of 
10-stable. I’ve found that the icon associated with Chromium appears to be 
missing from KDE and the other window-managers. I apologize for not being any 
more specific than that - I’m not too up on how the icons are stored in these 
binaries.

Also, I noticed there seems to be a blip with the whole ‘using system titlebar 
and borders’: When I first start Chromium, if I maximize it, the system title 
bar appears. When I click the maximize button again, it shrinks down, the 
system bar disappears, and the screen goes black.

Anyway, sorry it’s not more technical. Hope it helps.

Charles
___
freebsd-chromium@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to freebsd-chromium-unsubscr...@freebsd.org