~ubuntu-branches/ubuntu/saucy/empathy/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/certificates/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2013-03-18 11:02:13 UTC
  • mfrom: (1.1.110)
  • Revision ID: package-import@ubuntu.com-20130318110213-mstcnsnw76lfd4hp
Tags: 3.6.4-0ubuntu1
* New upstream release
  + Fixed "Favorite rooms are not saved"
  + re-enable empathy-tls-test

Show diffs side-by-side

added added

removed removed

Lines of Context:
286
286
top_builddir = @top_builddir@
287
287
top_srcdir = @top_srcdir@
288
288
EXTRA_DIST = \
289
 
        collabora-ca.cer \
290
 
        dhansak-collabora.cer
 
289
        certificate-authority.cer \
 
290
        server-cert.cer
291
291
 
292
292
all: all-am
293
293
 
481
481
        mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
482
482
 
483
483
 
 
484
# Not part of the build, but so we can easily repeat the process
 
485
# of generating the testing certificates
 
486
rebuild-certs:
 
487
        openssl req -new -x509 -out certificate-authority.pem \
 
488
                -newkey rsa -keyout certificate-authority.key -nodes \
 
489
                -subj /CN=test-ca.empathy.gnome.org -days 2000 \
 
490
                -config cert-openssl.conf -set_serial 1 -extensions test_ca
 
491
        openssl x509 -in certificate-authority.pem -outform DER \
 
492
                -out certificate-authority.cer
 
493
        openssl req -new -outform PEM -out server-cert.req \
 
494
                -newkey rsa -keyout /dev/null -nodes \
 
495
                -subj /CN=test-server.empathy.gnome.org \
 
496
                -config cert-openssl.conf -extensions test_server
 
497
        openssl x509 -req -in server-cert.req -days 2000 \
 
498
                -CA certificate-authority.pem -CAkey certificate-authority.key \
 
499
                -set_serial 888 -out server-cert.cer -outform DER
 
500
        rm certificate-authority.key
 
501
        rm certificate-authority.pem
 
502
        rm server-cert.req
 
503
 
484
504
# Tell versions [3.59,3.63) of GNU make to not export all variables.
485
505
# Otherwise a system limit (for SysV at least) may be exceeded.
486
506
.NOEXPORT: