[openssl-commits] Errored: openssl/openssl#6646 (master - 875e3f9)

2016-10-26 Thread Travis CI
Build Update for openssl/openssl
-

Build: #6646
Status: Errored

Duration: 45 minutes and 55 seconds
Commit: 875e3f9 (master)
Author: Matt Caswell
Message: Provide a cross-platform format specifier (OSSLzu) for printing size_t

Reviewed-by: Richard Levitte 

View the changeset: 
https://github.com/openssl/openssl/compare/99d63d4662e1...875e3f934e85

View the full build log and details: 
https://travis-ci.org/openssl/openssl/builds/170894131

--

You can configure recipients for build notifications in your .travis.yml file. 
See https://docs.travis-ci.com/user/notifications

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Errored: FdaSilvaYY/openssl#2242 (style_n_nit's - fd4799c)

2016-10-26 Thread Travis CI
Build Update for FdaSilvaYY/openssl
-

Build: #2242
Status: Errored

Duration: 52 minutes and 44 seconds
Commit: fd4799c (style_n_nit's)
Author: FdaSilvaYY
Message: Fix some style and indent issue

View the changeset: 
https://github.com/FdaSilvaYY/openssl/compare/157b976c0eb6...fd4799cbcf90

View the full build log and details: 
https://travis-ci.org/FdaSilvaYY/openssl/builds/170905174

--

You can configure recipients for build notifications in your .travis.yml file. 
See https://docs.travis-ci.com/user/notifications

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Passed: openssl/openssl#6641 (OpenSSL_1_1_0-stable - 207a9cb)

2016-10-26 Thread Travis CI
Build Update for openssl/openssl
-

Build: #6641
Status: Passed

Duration: 1 hour, 23 minutes, and 16 seconds
Commit: 207a9cb (OpenSSL_1_1_0-stable)
Author: Richard Levitte
Message: VMS: tell the C compiler to use the ISO C94 standard

The current version of the VMS compiler provides C99 features,
strictly language wise.  Unfortunately, even the most recent standard
library isn't fully updated for that standard, so we need to use an
earlier standard that the compiler supports.

Most importantly, this affects the __STDC_VERSION__ value, which the
compiler unfortunately currently defaults to 199901L.  With this
change we won't have to give VMS special treatment when looking for
features based on that macro.

Reviewed-by: Rich Salz 
(Merged from https://github.com/openssl/openssl/pull/1785)
(cherry picked from commit 4f3015bb30b7d95bb97408776b70e6a35fb91e8a)

View the changeset: 
https://github.com/openssl/openssl/compare/b2d0859ce114...207a9cb35228

View the full build log and details: 
https://travis-ci.org/openssl/openssl/builds/170828400

--

You can configure recipients for build notifications in your .travis.yml file. 
See https://docs.travis-ci.com/user/notifications

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Errored: openssl/openssl#6640 (master - 4f3015b)

2016-10-26 Thread Travis CI
Build Update for openssl/openssl
-

Build: #6640
Status: Errored

Duration: 1 hour, 16 minutes, and 48 seconds
Commit: 4f3015b (master)
Author: Richard Levitte
Message: VMS: tell the C compiler to use the ISO C94 standard

The current version of the VMS compiler provides C99 features,
strictly language wise.  Unfortunately, even the most recent standard
library isn't fully updated for that standard, so we need to use an
earlier standard that the compiler supports.

Most importantly, this affects the __STDC_VERSION__ value, which the
compiler unfortunately currently defaults to 199901L.  With this
change we won't have to give VMS special treatment when looking for
features based on that macro.

Reviewed-by: Rich Salz 
(Merged from https://github.com/openssl/openssl/pull/1785)

View the changeset: 
https://github.com/openssl/openssl/compare/12a7715e3dae...4f3015bb30b7

View the full build log and details: 
https://travis-ci.org/openssl/openssl/builds/170827558

--

You can configure recipients for build notifications in your .travis.yml file. 
See https://docs.travis-ci.com/user/notifications

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Build completed: openssl master.5984

2016-10-26 Thread AppVeyor


Build openssl master.5984 completed



Commit 99d63d4662 by Rich Salz on 10/26/2016 5:59 PM:

Move manpages to man[1357] structure.


Configure your notification preferences

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Build failed: openssl master.5983

2016-10-26 Thread AppVeyor



Build openssl master.5983 failed


Commit 5b16cbb6a2 by Rich Salz on 10/26/2016 4:28 PM:

Forward-port bugfix


Configure your notification preferences

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] master update

2016-10-26 Thread Matt Caswell
The branch master has been updated
   via  875e3f934e8586039e79efb6ed1262c80803aa42 (commit)
  from  99d63d4662e16afbeff49f29b48f1c87d5558ed0 (commit)


- Log -
commit 875e3f934e8586039e79efb6ed1262c80803aa42
Author: Matt Caswell 
Date:   Tue Oct 25 15:28:30 2016 +0100

Provide a cross-platform format specifier (OSSLzu) for printing size_t

Reviewed-by: Richard Levitte 

---

Summary of changes:
 include/openssl/e_os2.h | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/include/openssl/e_os2.h b/include/openssl/e_os2.h
index 99ea347..5bec684 100644
--- a/include/openssl/e_os2.h
+++ b/include/openssl/e_os2.h
@@ -276,6 +276,17 @@ typedef unsigned __int64 uint64_t;
 #  endif
 # endif
 
+/* Format specifier for printing size_t */
+# if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
+#  define OSSLzu  "zu"
+# else
+#  ifdef THIRTY_TWO_BIT
+#   define OSSLzu "u"
+#  else
+#   define OSSLzu PRIu64
+#  endif
+# endif
+
 /* ossl_inline: portable inline definition usable in public headers */
 # if !defined(inline) && !defined(__cplusplus)
 #  if defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [web] master update

2016-10-26 Thread Richard Levitte
The branch master has been updated
   via  24c3c743806fecc30e1c807cd04ce021d8d19f5b (commit)
  from  8d347b8772f9ef0d5d874cd585b948dd43b9995b (commit)


- Log -
commit 24c3c743806fecc30e1c807cd04ce021d8d19f5b
Author: Richard Levitte 
Date:   Wed Oct 26 21:05:54 2016 +0200

Keep ignoring old style html manual layout

We still have them for version up to and including 1.1.0{x}

---

Summary of changes:
 .gitignore | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/.gitignore b/.gitignore
index 102ddc7..c6d1a33 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,12 @@
 *.swp
 blog
 sitemap.txt
+docs/*/apps/*
+!docs/*/apps/index.html
+docs/*/crypto/*
+!docs/*/crypto/index.html
+docs/*/ssl/*
+!docs/*/ssl/index.html
 docs/*/man1/*
 !docs/*/man1/index.html
 docs/*/man3/*
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [web] master update

2016-10-26 Thread Richard Levitte
The branch master has been updated
   via  8d347b8772f9ef0d5d874cd585b948dd43b9995b (commit)
  from  6c2a7dd890749c4488597250ce4fcc4a0d3233d6 (commit)


- Log -
commit 8d347b8772f9ef0d5d874cd585b948dd43b9995b
Author: Richard Levitte 
Date:   Wed Oct 26 21:04:32 2016 +0200

Adjust files to ignore

The manpages are layed out according to Unix standards

source/snapshot isn't versioned

---

Summary of changes:
 .gitignore | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/.gitignore b/.gitignore
index 9fa841b..102ddc7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,12 +2,14 @@
 *.swp
 blog
 sitemap.txt
-docs/*/apps/*
-!docs/*/apps/index.html
-docs/*/crypto/*
-!docs/*/crypto/index.html
-docs/*/ssl/*
-!docs/*/ssl/index.html
+docs/*/man1/*
+!docs/*/man1/index.html
+docs/*/man3/*
+!docs/*/man3/index.html
+docs/*/man5/*
+!docs/*/man5/index.html
+docs/*/man7/*
+!docs/*/man7/index.html
 docs/faq.inc
 docs/fips.inc
 mk-manpages.pl
@@ -28,3 +30,4 @@ source/old/*/*.patch
 source/old/*/*.tar.gz*
 source/old/*/*.txt.asc
 source/old/*/index.inc
+source/snapshot
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [web] master update

2016-10-26 Thread Rich Salz
The branch master has been updated
   via  6c2a7dd890749c4488597250ce4fcc4a0d3233d6 (commit)
  from  605799f220210d4aaf0182cb0e89451bf7734508 (commit)


- Log -
commit 6c2a7dd890749c4488597250ce4fcc4a0d3233d6
Author: Rich Salz 
Date:   Wed Oct 26 14:16:50 2016 -0400

Fix typo

---

Summary of changes:
 docs/manmaster/index.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/manmaster/index.html b/docs/manmaster/index.html
index dfd87a4..1cc870f 100644
--- a/docs/manmaster/index.html
+++ b/docs/manmaster/index.html
@@ -12,8 +12,8 @@

 The manual pages for the master branch are
 available here.
-The OpenSSL documentation is divided into three
-parts:
+The OpenSSL documentation is divided into the following
+sections:

 
   Commands
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [web] master update

2016-10-26 Thread Rich Salz
The branch master has been updated
   via  605799f220210d4aaf0182cb0e89451bf7734508 (commit)
  from  9a140b7154f1597973114b31dea7ec4a963bae0a (commit)


- Log -
commit 605799f220210d4aaf0182cb0e89451bf7734508
Author: Rich Salz 
Date:   Wed Oct 26 14:13:11 2016 -0400

fix sidebar

---

Summary of changes:
 bin/mk-manmaster | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/bin/mk-manmaster b/bin/mk-manmaster
index 696453c..6ae1317 100755
--- a/bin/mk-manmaster
+++ b/bin/mk-manmaster
@@ -255,9 +255,10 @@ sub htmlSidebar {
   
 $release manpages
 
-  The openssl command
-  The ssl library
-  The crypto library$lirel
+  Commands
+  Libraries
+  File Formats
+  Overviews
 
   
 
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [web] master update

2016-10-26 Thread Rich Salz
The branch master has been updated
   via  9a140b7154f1597973114b31dea7ec4a963bae0a (commit)
  from  9f69c105329768824b1cbf243662036dca25956f (commit)


- Log -
commit 9a140b7154f1597973114b31dea7ec4a963bae0a
Author: Rich Salz 
Date:   Wed Oct 26 14:07:14 2016 -0400

Add hack workaround for manmaster

---

Summary of changes:
 Makefile  | 2 +-
 bin/{mk-manpages => mk-manmaster} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
 copy bin/{mk-manpages => mk-manmaster} (98%)

diff --git a/Makefile b/Makefile
index 43da116..9c80ba2 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ manpages: manmaster
$(call makemanpages,$(CHECKOUTS)/openssl-1.0.1-stable,1.0.1)
 
 manmaster:
-   ./bin/mk-manpages $(CHECKOUTS)/openssl master docs
+   ./bin/mk-manmaster $(CHECKOUTS)/openssl master docs
./bin/mk-filelist -a docs/manmaster/man1 '' '*.html' 
>docs/manmaster/man1/index.inc
./bin/mk-filelist -a docs/manmaster/man3 '' '*.html' 
>docs/manmaster/man3/index.inc
./bin/mk-filelist -a docs/manmaster/man5 '' '*.html' 
>docs/manmaster/man5/index.inc
diff --git a/bin/mk-manpages b/bin/mk-manmaster
similarity index 98%
copy from bin/mk-manpages
copy to bin/mk-manmaster
index 3884a6a..696453c 100755
--- a/bin/mk-manpages
+++ b/bin/mk-manmaster
@@ -27,8 +27,8 @@ use Pod::Usage qw(pod2usage);
 
 __PACKAGE__->run(@ARGV);
 
-sub Releases { return (qw(master 1.1.0 1.0.2 1.0.1)); }
-sub Sections { return (qw(apps crypto ssl)); }
+sub Releases { return (qw(master)); }
+sub Sections { return (qw(man1 man3 man5 man7)); }
 
 sub getRelease {
 my ( $class, $ver ) = @_;
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] master update

2016-10-26 Thread Rich Salz
The branch master has been updated
   via  99d63d4662e16afbeff49f29b48f1c87d5558ed0 (commit)
  from  4f3015bb30b7d95bb97408776b70e6a35fb91e8a (commit)


- Log -
commit 99d63d4662e16afbeff49f29b48f1c87d5558ed0
Author: Rich Salz 
Date:   Wed Oct 26 13:56:48 2016 -0400

Move manpages to man[1357] structure.

Move manpages to manX directories
Add Windows/VMS install fix from Richard Levitte
Update README
Fix typo's
Remove some duplicates

Reviewed-by: Richard Levitte 

---

Summary of changes:
 Configurations/unix-Makefile.tmpl   | 18 ++
 doc/README  | 16 +++-
 doc/{apps => man1}/CA.pl.pod|  0
 doc/{apps => man1}/asn1parse.pod|  0
 doc/{apps => man1}/ca.pod   |  0
 doc/{apps => man1}/ciphers.pod  |  0
 doc/{apps => man1}/cms.pod  |  0
 doc/{apps => man1}/crl.pod  |  0
 doc/{apps => man1}/crl2pkcs7.pod|  0
 doc/{apps => man1}/dgst.pod |  0
 doc/{apps => man1}/dhparam.pod  |  0
 doc/{apps => man1}/dsa.pod  |  0
 doc/{apps => man1}/dsaparam.pod |  0
 doc/{apps => man1}/ec.pod   |  0
 doc/{apps => man1}/ecparam.pod  |  0
 doc/{apps => man1}/enc.pod  |  0
 doc/{apps => man1}/engine.pod   |  0
 doc/{apps => man1}/errstr.pod   |  0
 doc/{apps => man1}/gendsa.pod   |  0
 doc/{apps => man1}/genpkey.pod  |  0
 doc/{apps => man1}/genrsa.pod   |  0
 doc/{apps => man1}/list.pod |  0
 doc/{apps => man1}/nseq.pod |  0
 doc/{apps => man1}/ocsp.pod |  0
 doc/{apps => man1}/openssl.pod  |  0
 doc/{apps => man1}/passwd.pod   |  0
 doc/{apps => man1}/pkcs12.pod   |  0
 doc/{apps => man1}/pkcs7.pod|  0
 doc/{apps => man1}/pkcs8.pod|  0
 doc/{apps => man1}/pkey.pod |  0
 doc/{apps => man1}/pkeyparam.pod|  0
 doc/{apps => man1}/pkeyutl.pod  |  0
 doc/{apps => man1}/rand.pod |  0
 doc/{apps => man1}/rehash.pod   |  0
 doc/{apps => man1}/req.pod  |  0
 doc/{apps => man1}/rsa.pod  |  0
 doc/{apps => man1}/rsautl.pod   |  0
 doc/{apps => man1}/s_client.pod |  0
 doc/{apps => man1}/s_server.pod |  0
 doc/{apps => man1}/s_time.pod   |  0
 doc/{apps => man1}/sess_id.pod  |  0
 doc/{apps => man1}/smime.pod|  0
 doc/{apps => man1}/speed.pod|  0
 doc/{apps => man1}/spkac.pod|  0
 doc/{apps => man1}/ts.pod   |  0
 doc/{apps => man1}/tsget.pod|  0
 doc/{apps => man1}/verify.pod   |  0
 doc/{apps => man1}/version.pod  |  0
 doc/{apps => man1}/x509.pod |  0
 doc/{crypto => man3}/ASN1_INTEGER_get_int64.pod |  0
 doc/{crypto => man3}/ASN1_ITEM_lookup.pod   |  0
 doc/{crypto => man3}/ASN1_OBJECT_new.pod|  0
 doc/{crypto => man3}/ASN1_STRING_length.pod |  0
 doc/{crypto => man3}/ASN1_STRING_new.pod|  0
 doc/{crypto => man3}/ASN1_STRING_print_ex.pod   |  0
 doc/{crypto => man3}/ASN1_TIME_set.pod  |  0
 doc/{crypto => man3}/ASN1_TYPE_get.pod  |  0
 doc/{crypto => man3}/ASN1_generate_nconf.pod|  0
 doc/{crypto => man3}/ASYNC_WAIT_CTX_new.pod |  0
 doc/{crypto => man3}/ASYNC_start_job.pod|  0
 doc/{crypto => man3}/BF_encrypt.pod |  0
 doc/{crypto => man3}/BIO_ADDR.pod   |  0
 doc/{crypto => man3}/BIO_ADDRINFO.pod   |  0
 doc/{crypto => man3}/BIO_connect.pod|  0
 doc/{crypto => man3}/BIO_ctrl.pod   |  0
 doc/{crypto => man3}/BIO_f_base64.pod   |  0
 doc/{crypto => man3}/BIO_f_buffer.pod   |  0
 doc/{crypto => man3}/BIO_f_cipher.pod   |  0
 doc/{crypto => man3}/BIO_f_md.pod   |  0
 doc/{crypto => man3}/BIO_f_null.pod |  0
 doc/{crypto => man3}/BIO_f_ssl.pod  |  0
 doc/{crypto => man3}/BIO_find_type.pod  |  0
 doc/{crypto => man3}/BIO_get_data.pod   |  0
 doc/{crypto => 

[openssl-commits] [web] master update

2016-10-26 Thread Rich Salz
The branch master has been updated
   via  9f69c105329768824b1cbf243662036dca25956f (commit)
  from  3e72a62c4a0bd69e5f2b4380dd070e5587e2c201 (commit)


- Log -
commit 9f69c105329768824b1cbf243662036dca25956f
Author: Rich Salz 
Date:   Wed Oct 26 13:55:52 2016 -0400

Handle new manpage structure for master

---

Summary of changes:
 Makefile   | 6 +-
 docs/manmaster/index.html  | 7 ---
 docs/manmaster/{apps => man1}/index.html   | 2 +-
 docs/manmaster/{crypto => man3}/index.html | 5 ++---
 docs/manmaster/{ssl => man5}/index.html| 7 +++
 docs/manmaster/{crypto => man7}/index.html | 6 +++---
 6 files changed, 18 insertions(+), 15 deletions(-)
 rename docs/manmaster/{apps => man1}/index.html (95%)
 copy docs/manmaster/{crypto => man3}/index.html (85%)
 rename docs/manmaster/{ssl => man5}/index.html (83%)
 rename docs/manmaster/{crypto => man7}/index.html (85%)

diff --git a/Makefile b/Makefile
index 2ff7768..43da116 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,11 @@ manpages: manmaster
$(call makemanpages,$(CHECKOUTS)/openssl-1.0.1-stable,1.0.1)
 
 manmaster:
-   $(call makemanpages,$(CHECKOUTS)/openssl,master)
+   ./bin/mk-manpages $(CHECKOUTS)/openssl master docs
+   ./bin/mk-filelist -a docs/manmaster/man1 '' '*.html' 
>docs/manmaster/man1/index.inc
+   ./bin/mk-filelist -a docs/manmaster/man3 '' '*.html' 
>docs/manmaster/man3/index.inc
+   ./bin/mk-filelist -a docs/manmaster/man5 '' '*.html' 
>docs/manmaster/man5/index.inc
+   ./bin/mk-filelist -a docs/manmaster/man7 '' '*.html' 
>docs/manmaster/man7/index.inc
 
 # Legacy targets
 hack-source_htaccess: all
diff --git a/docs/manmaster/index.html b/docs/manmaster/index.html
index beac148..dfd87a4 100644
--- a/docs/manmaster/index.html
+++ b/docs/manmaster/index.html
@@ -16,9 +16,10 @@
 parts:

 
-  The commands
-  The ssl library
-  The crypto library
+  Commands
+  Libraries
+  File Formats
+  Overviews
 
  
  
diff --git a/docs/manmaster/apps/index.html b/docs/manmaster/man1/index.html
similarity index 95%
rename from docs/manmaster/apps/index.html
rename to docs/manmaster/man1/index.html
index 0fe45d3..90f1fa2 100644
--- a/docs/manmaster/apps/index.html
+++ b/docs/manmaster/man1/index.html
@@ -31,7 +31,7 @@
: Documentation
: Manpages
: master
-   : commands
+   : commands
Sitemap
  

diff --git a/docs/manmaster/crypto/index.html b/docs/manmaster/man3/index.html
similarity index 85%
copy from docs/manmaster/crypto/index.html
copy to docs/manmaster/man3/index.html
index 6b87a86..6f46995 100644
--- a/docs/manmaster/crypto/index.html
+++ b/docs/manmaster/man3/index.html
@@ -10,8 +10,7 @@
  crypto library
  

-   The crypto manpage provides a
-   general overview of the crypto library.
+   This is the OpenSSL API for the SSL and Crypto libraries.
The detailed list is here:

 
@@ -31,7 +30,7 @@
: Documentation
: Manpages
: master
-   : crypto
+   : libraries
Sitemap
  

diff --git a/docs/manmaster/ssl/index.html b/docs/manmaster/man5/index.html
similarity index 83%
rename from docs/manmaster/ssl/index.html
rename to docs/manmaster/man5/index.html
index 5d3213a..64f26a8 100644
--- a/docs/manmaster/ssl/index.html
+++ b/docs/manmaster/man5/index.html
@@ -7,11 +7,10 @@
 
   

- ssl library
+ crypto library
  

-   The ssl manpage provides a
-   general overview of the ssl library.
+OpenSSL file formats.
The detailed list is here:

 
@@ -31,7 +30,7 @@
: Documentation
: Manpages
: master
-   : ssl
+   : file formats
Sitemap
  

diff --git a/docs/manmaster/crypto/index.html b/docs/manmaster/man7/index.html
similarity index 85%
rename from docs/manmaster/crypto/index.html
rename to docs/manmaster/man7/index.html
index 6b87a86..b1dc49d 100644
--- a/docs/manmaster/crypto/index.html
+++ b/docs/manmaster/man7/index.html
@@ -10,8 +10,7 @@
  crypto library
  

-   The crypto manpage provides a
-   general overview of the crypto library.
+OpenSSL overviews.
The detailed list is here:

 
@@ -31,7 +30,7 @@
: Documentation
: Manpages
: master
-   : crypto
+   : overviews
Sitemap
  

@@ -42,3 +41,4 @@
 
 
 

[openssl-commits] Passed: openssl/openssl#6637 (OpenSSL_1_1_0-stable - b2d0859)

2016-10-26 Thread Travis CI
Build Update for openssl/openssl
-

Build: #6637
Status: Passed

Duration: 19 minutes and 8 seconds
Commit: b2d0859 (OpenSSL_1_1_0-stable)
Author: Rich Salz
Message: Fix typo (reported by Matthias St. Pierre)

Reviewed-by: Tim Hudson 
(cherry picked from commit 12a7715e3daed439e46cbed461d2a3d9dfd37c0f)

View the changeset: 
https://github.com/openssl/openssl/compare/2aec6095d309...b2d0859ce114

View the full build log and details: 
https://travis-ci.org/openssl/openssl/builds/170817289

--

You can configure recipients for build notifications in your .travis.yml file. 
See https://docs.travis-ci.com/user/notifications

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Passed: openssl/openssl#6636 (master - 12a7715)

2016-10-26 Thread Travis CI
Build Update for openssl/openssl
-

Build: #6636
Status: Passed

Duration: 52 minutes and 9 seconds
Commit: 12a7715 (master)
Author: Rich Salz
Message: Fix typo (reported by Matthias St. Pierre)

Reviewed-by: Tim Hudson 

View the changeset: 
https://github.com/openssl/openssl/compare/78ce90cb1adb...12a7715e3dae

View the full build log and details: 
https://travis-ci.org/openssl/openssl/builds/170817233

--

You can configure recipients for build notifications in your .travis.yml file. 
See https://docs.travis-ci.com/user/notifications

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

2016-10-26 Thread Richard Levitte
The branch OpenSSL_1_1_0-stable has been updated
   via  207a9cb3522882d1e9dc764c921425ba47a6def6 (commit)
  from  b2d0859ce114bafc59b689c1f2df87b8adf520b9 (commit)


- Log -
commit 207a9cb3522882d1e9dc764c921425ba47a6def6
Author: Richard Levitte 
Date:   Wed Oct 26 18:04:40 2016 +0200

VMS: tell the C compiler to use the ISO C94 standard

The current version of the VMS compiler provides C99 features,
strictly language wise.  Unfortunately, even the most recent standard
library isn't fully updated for that standard, so we need to use an
earlier standard that the compiler supports.

Most importantly, this affects the __STDC_VERSION__ value, which the
compiler unfortunately currently defaults to 199901L.  With this
change we won't have to give VMS special treatment when looking for
features based on that macro.

Reviewed-by: Rich Salz 
(Merged from https://github.com/openssl/openssl/pull/1785)
(cherry picked from commit 4f3015bb30b7d95bb97408776b70e6a35fb91e8a)

---

Summary of changes:
 Configurations/10-main.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index d7f3b07..287f554 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -1742,7 +1742,7 @@ sub vms_info {
 inherit_from => [ "BASE_VMS" ],
 template => 1,
 cc   => "CC/DECC",
-cflags   => picker(default => 
"/STANDARD=RELAXED/NOLIST/PREFIX=ALL",
+cflags   => picker(default => 
"/STANDARD=(ISOC94,RELAXED)/NOLIST/PREFIX=ALL",
debug   => "/NOOPTIMIZE/DEBUG",
release => "/OPTIMIZE/NODEBUG"),
 lflags   => picker(default => "/MAP",
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] master update

2016-10-26 Thread Richard Levitte
The branch master has been updated
   via  4f3015bb30b7d95bb97408776b70e6a35fb91e8a (commit)
  from  12a7715e3daed439e46cbed461d2a3d9dfd37c0f (commit)


- Log -
commit 4f3015bb30b7d95bb97408776b70e6a35fb91e8a
Author: Richard Levitte 
Date:   Wed Oct 26 18:04:40 2016 +0200

VMS: tell the C compiler to use the ISO C94 standard

The current version of the VMS compiler provides C99 features,
strictly language wise.  Unfortunately, even the most recent standard
library isn't fully updated for that standard, so we need to use an
earlier standard that the compiler supports.

Most importantly, this affects the __STDC_VERSION__ value, which the
compiler unfortunately currently defaults to 199901L.  With this
change we won't have to give VMS special treatment when looking for
features based on that macro.

Reviewed-by: Rich Salz 
(Merged from https://github.com/openssl/openssl/pull/1785)

---

Summary of changes:
 Configurations/10-main.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index 6735dfe..7c9b190 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -1761,7 +1761,7 @@ sub vms_info {
 inherit_from => [ "BASE_VMS" ],
 template => 1,
 cc   => "CC/DECC",
-cflags   => picker(default => 
"/STANDARD=RELAXED/NOLIST/PREFIX=ALL",
+cflags   => picker(default => 
"/STANDARD=(ISOC94,RELAXED)/NOLIST/PREFIX=ALL",
debug   => "/NOOPTIMIZE/DEBUG",
release => "/OPTIMIZE/NODEBUG"),
 lflags   => picker(default => "/MAP",
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

2016-10-26 Thread Rich Salz
The branch OpenSSL_1_0_2-stable has been updated
   via  31bf65c89a43b4a1b3dd942c3e71d4573a0d4d66 (commit)
  from  0e4690165b4beb6777b747b0aeb1646a301f41d9 (commit)


- Log -
commit 31bf65c89a43b4a1b3dd942c3e71d4573a0d4d66
Author: Rich Salz 
Date:   Wed Oct 26 11:48:43 2016 -0400

Fix typo (reported by Matthias St. Pierre)

Reviewed-by: Tim Hudson 
(cherry picked from commit 12a7715e3daed439e46cbed461d2a3d9dfd37c0f)

---

Summary of changes:
 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README
index 93f27fd..75abf2d 100644
--- a/README
+++ b/README
@@ -95,7 +95,7 @@
  LEGALITIES
  --
 
- A number of nations, restrict the use or export of cryptography. If you
+ A number of nations restrict the use or export of cryptography. If you
  are potentially subject to such restrictions you should seek competent
  professional legal advice before attempting to develop or distribute
  cryptographic code.
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

2016-10-26 Thread Rich Salz
The branch OpenSSL_1_1_0-stable has been updated
   via  b2d0859ce114bafc59b689c1f2df87b8adf520b9 (commit)
  from  2aec6095d309b101457645c9309a155af5b22d44 (commit)


- Log -
commit b2d0859ce114bafc59b689c1f2df87b8adf520b9
Author: Rich Salz 
Date:   Wed Oct 26 11:48:43 2016 -0400

Fix typo (reported by Matthias St. Pierre)

Reviewed-by: Tim Hudson 
(cherry picked from commit 12a7715e3daed439e46cbed461d2a3d9dfd37c0f)

---

Summary of changes:
 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README
index e38b12a..441be61 100644
--- a/README
+++ b/README
@@ -88,7 +88,7 @@
  LEGALITIES
  --
 
- A number of nations, restrict the use or export of cryptography. If you
+ A number of nations restrict the use or export of cryptography. If you
  are potentially subject to such restrictions you should seek competent
  professional legal advice before attempting to develop or distribute
  cryptographic code.
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] master update

2016-10-26 Thread Rich Salz
The branch master has been updated
   via  12a7715e3daed439e46cbed461d2a3d9dfd37c0f (commit)
  from  78ce90cb1adb95eae094481e01f7a7d408ec78b7 (commit)


- Log -
commit 12a7715e3daed439e46cbed461d2a3d9dfd37c0f
Author: Rich Salz 
Date:   Wed Oct 26 11:48:43 2016 -0400

Fix typo (reported by Matthias St. Pierre)

Reviewed-by: Tim Hudson 

---

Summary of changes:
 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README b/README
index bf7b4b1..ae5e24b 100644
--- a/README
+++ b/README
@@ -88,7 +88,7 @@
  LEGALITIES
  --
 
- A number of nations, restrict the use or export of cryptography. If you
+ A number of nations restrict the use or export of cryptography. If you
  are potentially subject to such restrictions you should seek competent
  professional legal advice before attempting to develop or distribute
  cryptographic code.
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits