Quoting Kurt Roeckx ([EMAIL PROTECTED]): > I happen to have a reason to activate the error messages today, so I'm > uploading this myself.
OK, I'll hold off my NMU intent as you guys are obviously reactive (frankly, I already knew that so I was mostly playing "heads up"). Please note that my tentative to build the package and a look at lintian output leads me to propose the attached patch which includes a few Lintian fixes: openssl (0.9.8g-8.1) unstable; urgency=low * Non-maintainer upload to fix pending l10n issues. * Debconf translations: - German. Closes: #473477 - Italian. Closes: #461597 - Slovak. Closes: #461880 - Japanese. Closes: #462011 - Spanish. Closes: #465517 - Portuguese. Closes: #475439 * [Lintian] Drop obsolete ${Source-Version} substvar for libssl-dev and libssl0.9.8-dbg Use ${binary:Version} instead. * [Lintian] No longer ignore errors from "make clean" * [Lintian] Upgrade debhelper compatibility to 4 * [Lintian] Use debian/compat to set debhelper compatibility level
diff -Nru openssl-0.9.8g.old/Makefile openssl-0.9.8g/Makefile --- openssl-0.9.8g.old/Makefile 2008-05-05 22:45:55.997960581 +0200 +++ openssl-0.9.8g/Makefile 2008-05-07 09:09:58.848260328 +0200 @@ -12,9 +12,9 @@ SHLIB_MAJOR=0 SHLIB_MINOR=9.8 SHLIB_EXT=.so.$(SHLIB_MAJOR).$(SHLIB_MINOR) -PLATFORM=debian-amd64 +PLATFORM=debian-i386 OPTIONS=--prefix=/usr --openssldir=/usr/lib/ssl enable-zlib enable-tlsext no-camellia no-gmp no-idea no-krb5 no-mdc2 no-rc5 no-rfc3779 no-seed no-shared no-zlib-dynamic -CONFIGURE_ARGS=--prefix=/usr --openssldir=/usr/lib/ssl no-idea no-mdc2 no-rc5 zlib enable-tlsext debian-amd64 +CONFIGURE_ARGS=--prefix=/usr --openssldir=/usr/lib/ssl no-idea no-mdc2 no-rc5 zlib enable-tlsext debian-i386 SHLIB_TARGET=linux-shared # HERE indicates where this Makefile lives. This can be used to indicate @@ -60,7 +60,7 @@ # PKCS1_CHECK - pkcs1 tests. CC= gcc -CFLAG= -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -DTERMIO -O3 -Wa,--noexecstack -g -Wall -DMD32_REG_T=int -DMD5_ASM +CFLAG= -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -DTERMIO -O3 -Wa,--noexecstack -g -Wall DEPFLAG= -DOPENSSL_NO_CAMELLIA -DOPENSSL_NO_GMP -DOPENSSL_NO_IDEA -DOPENSSL_NO_MDC2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_SEED PEX_LIBS= EX_LIBS= -ldl -lz @@ -86,15 +86,15 @@ PROCESSOR= # CPUID module collects small commonly used assembler snippets -CPUID_OBJ= x86_64cpuid.o -BN_ASM= x86_64-gcc.o +CPUID_OBJ= +BN_ASM= bn_asm.o DES_ENC= des_enc.o fcrypt_b.o AES_ASM_OBJ= aes_core.o aes_cbc.o BF_ENC= bf_enc.o CAST_ENC= c_enc.o RC4_ENC= rc4_enc.o RC5_ENC= rc5_enc.o -MD5_ASM_OBJ= md5-x86_64.o +MD5_ASM_OBJ= SHA1_ASM_OBJ= RMD160_ASM_OBJ= @@ -143,7 +143,7 @@ SHARED_SSL=libssl$(SHLIB_EXT) SHARED_LIBS= SHARED_LIBS_LINK_EXTS=.so -SHARED_LDFLAGS=-m64 -Wl,--version-script=openssl.ld +SHARED_LDFLAGS= -Wl,--version-script=openssl.ld GENERAL= Makefile BASENAME= openssl diff -Nru openssl-0.9.8g.old/crypto/opensslconf.h openssl-0.9.8g/crypto/opensslconf.h --- openssl-0.9.8g.old/crypto/opensslconf.h 2008-05-05 22:45:30.829960819 +0200 +++ openssl-0.9.8g/crypto/opensslconf.h 2008-05-07 09:09:59.776210092 +0200 @@ -68,8 +68,6 @@ # endif #endif -#define OPENSSL_CPUID_OBJ - /* crypto/opensslconf.h.in */ /* Generate 80386 code? */ @@ -109,14 +107,14 @@ * - Intel P6 because partial register stalls are very expensive; * - elder Alpha because it lacks byte load/store instructions; */ -#define RC4_INT unsigned char +#define RC4_INT unsigned int #endif #if !defined(RC4_CHUNK) /* * This enables code handling data aligned at natural CPU word * boundary. See crypto/rc4/rc4_enc.c for further details. */ -#define RC4_CHUNK unsigned long +#undef RC4_CHUNK #endif #endif @@ -124,13 +122,13 @@ /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a * %20 speed up (longs are 8 bytes, int's are 4). */ #ifndef DES_LONG -#define DES_LONG unsigned int +#define DES_LONG unsigned long #endif #endif #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) #define CONFIG_HEADER_BN_H -#undef BN_LLONG +#define BN_LLONG /* Should we define BN_DIV2W here? */ @@ -138,9 +136,9 @@ /* The prime number generation stuff may not work when * EIGHT_BIT but I don't care since I've only used this mode * for debuging the bignum libraries */ -#define SIXTY_FOUR_BIT_LONG +#undef SIXTY_FOUR_BIT_LONG #undef SIXTY_FOUR_BIT -#undef THIRTY_TWO_BIT +#define THIRTY_TWO_BIT #undef SIXTEEN_BIT #undef EIGHT_BIT #endif @@ -149,12 +147,12 @@ #define CONFIG_HEADER_RC4_LOCL_H /* if this is defined data[i] is used instead of *data, this is a %20 * speedup on x86 */ -#undef RC4_INDEX +#define RC4_INDEX #endif #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) #define CONFIG_HEADER_BF_LOCL_H -#define BF_PTR2 +#undef BF_PTR #endif /* HEADER_BF_LOCL_H */ #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) @@ -163,14 +161,14 @@ /* the following is tweaked from a config script, that is why it is a * protected undef/define */ #ifndef DES_PTR -#undef DES_PTR +#define DES_PTR #endif /* This helps C compiler generate the correct code for multiple functional * units. It reduces register dependancies at the expense of 2 more * registers */ #ifndef DES_RISC1 -#undef DES_RISC1 +#define DES_RISC1 #endif #ifndef DES_RISC2 diff -Nru openssl-0.9.8g.old/debian/changelog openssl-0.9.8g/debian/changelog --- openssl-0.9.8g.old/debian/changelog 2008-05-05 22:45:55.997960581 +0200 +++ openssl-0.9.8g/debian/changelog 2008-05-07 07:40:42.228296702 +0200 @@ -1,3 +1,22 @@ +openssl (0.9.8g-8.1) unstable; urgency=low + + * Non-maintainer upload to fix pending l10n issues. + * Debconf translations: + - German. Closes: #473477 + - Italian. Closes: #461597 + - Slovak. Closes: #461880 + - Japanese. Closes: #462011 + - Spanish. Closes: #465517 + - Portuguese. Closes: #475439 + * [Lintian] Drop obsolete ${Source-Version} substvar for libssl-dev + and libssl0.9.8-dbg + Use ${binary:Version} instead. + * [Lintian] No longer ignore errors from "make clean" + * [Lintian] Upgrade debhelper compatibility to 4 + * [Lintian] Use debian/compat to set debhelper compatibility level + + -- Christian Perrier <[EMAIL PROTECTED]> Tue, 06 May 2008 19:57:37 +0200 + openssl (0.9.8g-8) unstable; urgency=high * Don't add extentions to ssl v3 connections. It breaks with some diff -Nru openssl-0.9.8g.old/debian/compat openssl-0.9.8g/debian/compat --- openssl-0.9.8g.old/debian/compat 1970-01-01 01:00:00.000000000 +0100 +++ openssl-0.9.8g/debian/compat 2008-05-07 07:39:10.568798556 +0200 @@ -0,0 +1 @@ +4 diff -Nru openssl-0.9.8g.old/debian/control openssl-0.9.8g/debian/control --- openssl-0.9.8g.old/debian/control 2008-05-05 22:45:55.997960581 +0200 +++ openssl-0.9.8g/debian/control 2008-05-07 07:40:21.538611994 +0200 @@ -52,7 +52,7 @@ Section: libdevel Priority: optional Architecture: any -Depends: libssl0.9.8 (= ${Source-Version}), zlib1g-dev +Depends: libssl0.9.8 (= ${binary:Version}), zlib1g-dev Conflicts: ssleay (<< 0.9.2b), libssl08-dev, libssl09-dev, libssl095a-dev, libssl096-dev Description: SSL development libraries, header files and documentation libssl and libcrypto development libraries, header files and manpages. @@ -63,6 +63,6 @@ Section: libdevel Priority: extra Architecture: any -Depends: libssl0.9.8 (= ${Source-Version}) +Depends: libssl0.9.8 (= ${binary:Version}) Description: Symbol tables for libssl and libcrypto This package is part of the OpenSSL implementation of SSL. diff -Nru openssl-0.9.8g.old/debian/po/de.po openssl-0.9.8g/debian/po/de.po --- openssl-0.9.8g.old/debian/po/de.po 2008-05-05 22:45:54.817974954 +0200 +++ openssl-0.9.8g/debian/po/de.po 2008-05-06 20:23:01.573554578 +0200 @@ -1,18 +1,17 @@ # German translation of openssl's debconf templates -# Copyright (C) 2006 Johannes Starosta +# Copyright (C) 2006-2008 Johannes Starosta <[EMAIL PROTECTED]> # This file is distributed under the same license as the openssl package. -# Johannes Starosta <[EMAIL PROTECTED]>, 2006. # msgid "" msgstr "" "Project-Id-Version: openssl 0.9.8e-4\n" "Report-Msgid-Bugs-To: [EMAIL PROTECTED]" "POT-Creation-Date: 2008-01-16 21:40+0100\n" -"PO-Revision-Date: 2007-04-11 20:42+0200\n" +"PO-Revision-Date: 2008-03-24 22:48+0100\n" "Last-Translator: Johannes Starosta <[EMAIL PROTECTED]>\n" "Language-Team: German <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string @@ -31,9 +30,10 @@ "these fixes until they are restarted. Please note that restarting the SSH " "server (sshd) should not affect any existing connections." msgstr "" -"In dieser Version wurden Sicherheitsprobleme behoben. Dienste können diese " -"Aktualisierungen nicht nutzen, bis man sie neu startet. Hinweis: sshd neu zu " -"starten dürfte keine bestehenden Verbindungen beeinträchtigen." +"In dieser Version von OpenSSL wurden Sicherheitsprobleme behoben. Dienste " +"werden diese Aktualisierungen nicht nutzen, bis sie neugestartet werden. " +"Hinweis: Den SSH-Server (sshd) neu zu starten, dürfte keine bestehenden " +"Verbindungen beeinträchtigen." #. Type: string #. Description @@ -45,10 +45,10 @@ "services will be restarted if the list is empty." msgstr "" "Es folgt nun eine Liste der erkannten Dienste, die neu gestartet werden " -"sollten. Bitte berichtigen Sie die Liste, wenn Sie glauben, dass sie Fehler " -"enthält. Die Namen der Dienste müssen den Namen der Skripte in /etc/init.d " -"entsprechen und werden durch Leerzeichen getrennt. Falls Sie diese Liste " -"löschen, wird kein Dienst neugestartet." +"sollten. Bitte berichtigen Sie die Liste, falls Sie glauben, dass sie Fehler " +"enthält. Die Namen der Dienste müssen den Namen der Skripte in /etc/init.d " +"entsprechen und werden durch Leerzeichen getrennt. Es wird kein Dienst neu " +"gestartet, falls die Liste leer bleibt." #. Type: string #. Description @@ -58,16 +58,15 @@ "restarted. It is recommended to reboot this host to avoid any SSL-related " "trouble." msgstr "" -"Falls andere Dienste nach diesem Upgrade ein merkwürdiges Fehlverhalten " -"zeigen, könnte es nötig werden, sie ebenfalls neu zu starten. Es wird " -"dringend empfohlen, den Rechner neu zu starten, um Probleme mit SSL zu " -"vermeiden." +"Falls andere Dienste nach diesem Upgrade ein merkwürdiges Fehlverhalten " +"zeigen, könnte es nötig werden, sie ebenfalls neu zu starten. Es wird " +"empfohlen, den Rechner neu zu starten, um Probleme mit SSL zu vermeiden." #. Type: error #. Description #: ../libssl0.9.8.templates:2001 msgid "Failure restarting some services for OpenSSL upgrade" -msgstr "" +msgstr "Neustarten einiger Dienste beim OpenSSL-Upgrade fehlgeschlagen" #. Type: error #. Description @@ -78,6 +77,8 @@ "The following services could not be restarted for the OpenSSL library " "upgrade:" msgstr "" +"Die folgenden Dienste konnten beim Upgrade der OpenSSL-Bibliothek nicht neu " +"gestartet werden:" #. Type: error #. Description @@ -86,3 +87,5 @@ "You will need to start these manually by running '/etc/init.d/<service> " "start'." msgstr "" +"Sie werden sie manuell durch Aufruf von »/etc/init.d/<dienst> start« starten " +"müssen." diff -Nru openssl-0.9.8g.old/debian/po/es.po openssl-0.9.8g/debian/po/es.po --- openssl-0.9.8g.old/debian/po/es.po 2008-05-05 22:45:54.393960682 +0200 +++ openssl-0.9.8g/debian/po/es.po 2008-05-06 19:26:00.505505000 +0200 @@ -8,6 +8,8 @@ # # - Last revision # Manuel Porras Peralta «Venturi», 2007 +# Maximiliano MarÃn, 2007 +# # # Traductores, si no conoce el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este @@ -17,7 +19,7 @@ # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: -# +# # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/coordinacion # especialmente las notas de traducción en @@ -54,7 +56,7 @@ "these fixes until they are restarted. Please note that restarting the SSH " "server (sshd) should not affect any existing connections." msgstr "" -"Esta versión de OpenSSL arregla algunos problemas de seguridad. Los " +"Esta versión de OpenSSL corrige algunos problemas de seguridad. Los " "servicios no usarán los arreglos hasta que se reinicien. Tenga en cuenta que " "reiniciar el servicio SSH (sshd) no deberÃa afectar a ninguna de las " "conexiones existentes." @@ -69,9 +71,9 @@ "services will be restarted if the list is empty." msgstr "" "Por favor, compruebe la lista de los servicios detectados que necesitan " -"reiniciarse y corrÃjala si fuera necesario. Los nombres de los servicios " -"deben ser idénticos a los nombres de los programas de inicio en «/etc/init." -"d» y deben estar separados por espacios. No se reiniciará ningún servicio si " +"reiniciarse y corrÃjala si fuese necesario. Los nombres de los servicios " +"deben ser idénticos a los nombres de los programas de inicio en «/etc/init.d» " +"y deben estar separados por espacios. No se reiniciará ningún servicio si " "deja la lista en blanco." #. Type: string @@ -82,15 +84,15 @@ "restarted. It is recommended to reboot this host to avoid any SSL-related " "trouble." msgstr "" -"Tras esta actualización, deberÃa reiniciar cualquier servicio que falle " -"inesperadamente más tarde. Se recomienda reiniciar el sistema para evitar " +"Tras esta actualización, deberÃa reiniciar más tarde cualquier servicio que " +"falle inesperadamente. Se recomienda reiniciar el sistema para evitar " "cualquier problema relacionado con SSL." #. Type: error #. Description #: ../libssl0.9.8.templates:2001 msgid "Failure restarting some services for OpenSSL upgrade" -msgstr "" +msgstr "Fallo al reiniciar algunos servicios por la actualización de OpenSSL" #. Type: error #. Description @@ -101,6 +103,8 @@ "The following services could not be restarted for the OpenSSL library " "upgrade:" msgstr "" +"No fue posible reiniciar los servicios indicados a continuación por la " +"actualización de OpenSSL: " #. Type: error #. Description @@ -109,3 +113,7 @@ "You will need to start these manually by running '/etc/init.d/<service> " "start'." msgstr "" +"Tendrá que iniciarlos manualmente ejecutando « /etc/init.d/<servicio> start » " + +#~ msgid "${services}" +#~ msgstr "${services}" diff -Nru openssl-0.9.8g.old/debian/po/it.po openssl-0.9.8g/debian/po/it.po --- openssl-0.9.8g.old/debian/po/it.po 2008-05-05 22:45:54.609967960 +0200 +++ openssl-0.9.8g/debian/po/it.po 2008-05-06 20:25:27.021760000 +0200 @@ -1,15 +1,15 @@ # openssl po-debconf translation to Italian (it) # Copyright (C) 2006 Software in the Public Interest # This file is distributed under the same license as the openssl package. -# Luca Monducci <[EMAIL PROTECTED]>, 2006, 2007. +# Luca Monducci <[EMAIL PROTECTED]>, 2006-2008. # Giuseppe Sacco <[EMAIL PROTECTED]>, 2007 # msgid "" msgstr "" -"Project-Id-Version: openssl 0.9.8e italian debconf templates\n" +"Project-Id-Version: openssl 0.9.8g italian debconf templates\n" "Report-Msgid-Bugs-To: [EMAIL PROTECTED]" "POT-Creation-Date: 2008-01-16 21:40+0100\n" -"PO-Revision-Date: 2007-04-22 11:47+0200\n" +"PO-Revision-Date: 2008-01-19 21:17+0100\n" "Last-Translator: Luca Monducci <[EMAIL PROTECTED]>\n" "Language-Team: Italian <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ #. Description #: ../libssl0.9.8.templates:2001 msgid "Failure restarting some services for OpenSSL upgrade" -msgstr "" +msgstr "Errore nel riavvio di alcuni servizi per l'aggiornamento di OpenSSL" #. Type: error #. Description @@ -76,6 +76,8 @@ "The following services could not be restarted for the OpenSSL library " "upgrade:" msgstr "" +"Non è stato possibile riavviare i seguenti servizi per l'aggiornamento di " +"OpenSSL:" #. Type: error #. Description @@ -84,3 +86,4 @@ "You will need to start these manually by running '/etc/init.d/<service> " "start'." msgstr "" +"È necessario avviarli manualmente con \"/etc/init.d/<servizio> start\"." diff -Nru openssl-0.9.8g.old/debian/po/ja.po openssl-0.9.8g/debian/po/ja.po --- openssl-0.9.8g.old/debian/po/ja.po 2008-05-05 22:45:54.817974954 +0200 +++ openssl-0.9.8g/debian/po/ja.po 2008-05-06 19:25:50.392135000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: openssl 0.9.8e-4\n" "Report-Msgid-Bugs-To: [EMAIL PROTECTED]" "POT-Creation-Date: 2008-01-16 21:40+0100\n" -"PO-Revision-Date: 2007-05-04 23:37+0900\n" +"PO-Revision-Date: 2008-01-22 07:37+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) <[EMAIL PROTECTED]>\n" "Language-Team: Japanese <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" @@ -57,7 +57,7 @@ #. Description #: ../libssl0.9.8.templates:2001 msgid "Failure restarting some services for OpenSSL upgrade" -msgstr "" +msgstr "OpenSSL ã®ã‚¢ãƒƒãƒ—グレードã«ã‚ˆã£ã¦å†èµ·å‹•ã«å¤±æ•—ã—ãŸã‚µãƒ¼ãƒ“ス" #. Type: error #. Description @@ -68,6 +68,8 @@ "The following services could not be restarted for the OpenSSL library " "upgrade:" msgstr "" +"以下ã®ã‚µãƒ¼ãƒ“ス㯠OpenSSL ライブラリã®ã‚¢ãƒƒãƒ—グレードã«ä¼´ã£ãŸå†èµ·å‹•を行ã†ã“ã¨ãŒ" +"ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" #. Type: error #. Description @@ -76,3 +78,4 @@ "You will need to start these manually by running '/etc/init.d/<service> " "start'." msgstr "" +"é–‹å§‹ã™ã‚‹ã«ã¯ '/etc/init.d/<service> start' を手動ã§å®Ÿè¡Œã™ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚" diff -Nru openssl-0.9.8g.old/debian/po/pt.po openssl-0.9.8g/debian/po/pt.po --- openssl-0.9.8g.old/debian/po/pt.po 2008-05-05 22:45:54.609967960 +0200 +++ openssl-0.9.8g/debian/po/pt.po 2008-05-06 19:26:08.280532000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: openssl\n" "Report-Msgid-Bugs-To: [EMAIL PROTECTED]" "POT-Creation-Date: 2008-01-16 21:40+0100\n" -"PO-Revision-Date: 2007-04-25 23:55+0100\n" +"PO-Revision-Date: 2008-04-10 20:36+0100\n" "Last-Translator: Carlos Lisboa <[EMAIL PROTECTED]>\n" "Language-Team: Portuguese <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ "restarted. It is recommended to reboot this host to avoid any SSL-related " "trouble." msgstr "" -"Qualquer serviço que mais tarde falha de forma inesperada após esta " +"Qualquer serviço que mais tarde falhe de forma inesperada após esta " "actualização deverá ser reiniciado. É recomendado que reinicie este " "computador para evitar qualquer problema relacionado como SSL." @@ -64,7 +64,7 @@ #. Description #: ../libssl0.9.8.templates:2001 msgid "Failure restarting some services for OpenSSL upgrade" -msgstr "" +msgstr "Falha ao reiniciar alguns serviços para a actualização do OpenSSL" #. Type: error #. Description @@ -75,6 +75,8 @@ "The following services could not be restarted for the OpenSSL library " "upgrade:" msgstr "" +"Os seguintes serviços não poderam ser reiniciados para a actualização da " +"biblioteca OpenSSL:" #. Type: error #. Description @@ -83,3 +85,4 @@ "You will need to start these manually by running '/etc/init.d/<service> " "start'." msgstr "" +"Terá que iniciá-los manualmente correndo '/etc/init.d/<serviço> start'." diff -Nru openssl-0.9.8g.old/debian/po/sk.po openssl-0.9.8g/debian/po/sk.po --- openssl-0.9.8g.old/debian/po/sk.po 2008-05-05 22:45:54.609967960 +0200 +++ openssl-0.9.8g/debian/po/sk.po 2008-05-06 19:25:37.773375000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: openssl 0.9.8e-5\n" "Report-Msgid-Bugs-To: [EMAIL PROTECTED]" "POT-Creation-Date: 2008-01-16 21:40+0100\n" -"PO-Revision-Date: 2007-09-03 23:29+0100\n" +"PO-Revision-Date: 2008-01-21 11:41+0100\n" "Last-Translator: Ivan Masár <[EMAIL PROTECTED]>\n" "Language-Team: Slovak <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" @@ -60,6 +60,8 @@ #: ../libssl0.9.8.templates:2001 msgid "Failure restarting some services for OpenSSL upgrade" msgstr "" +"PoÄas aktualizácie knižnice OpenSSL sa nepodarilo sa reÅ¡tartovaÅ¥ niektoré " +"služby." #. Type: error #. Description @@ -70,6 +72,8 @@ "The following services could not be restarted for the OpenSSL library " "upgrade:" msgstr "" +"Nasledovné služby nebolo možné reÅ¡tartovaÅ¥ poÄas aktualizácie knižnice " +"OpenSSL:" #. Type: error #. Description @@ -78,3 +82,4 @@ "You will need to start these manually by running '/etc/init.d/<service> " "start'." msgstr "" +"Budete ich musieÅ¥ reÅ¡tartovaÅ¥ ruÄne spustenÃm „/etc/init.d/<service> start“." diff -Nru openssl-0.9.8g.old/debian/rules openssl-0.9.8g/debian/rules --- openssl-0.9.8g.old/debian/rules 2008-05-05 22:45:55.993974545 +0200 +++ openssl-0.9.8g/debian/rules 2008-05-07 07:39:21.439836917 +0200 @@ -9,7 +9,6 @@ # # Modified to be a prototype for debmake by Christoph Lameter <[EMAIL PROTECTED]> SHELL=/bin/bash -export DH_COMPAT=3 package=openssl @@ -66,7 +65,7 @@ -rm -f build -perl util/perlpath.pl /usr/bin -./Configure $(CONFARGS) debian-$(DEB_HOST_ARCH) - -make -f Makefile clean clean-shared + [ ! -f Makefile ] || make -f Makefile clean clean-shared #-make -f Makefile dclean -perl util/perlpath.pl /usr/local/bin/perl # perl util/ssldir.pl /usr/local/ssl diff -Nru openssl-0.9.8g.old/include/openssl/opensslconf.h openssl-0.9.8g/include/openssl/opensslconf.h --- openssl-0.9.8g.old/include/openssl/opensslconf.h 2008-05-05 22:45:30.829960819 +0200 +++ openssl-0.9.8g/include/openssl/opensslconf.h 2008-05-07 09:09:59.776210092 +0200 @@ -68,8 +68,6 @@ # endif #endif -#define OPENSSL_CPUID_OBJ - /* crypto/opensslconf.h.in */ /* Generate 80386 code? */ @@ -109,14 +107,14 @@ * - Intel P6 because partial register stalls are very expensive; * - elder Alpha because it lacks byte load/store instructions; */ -#define RC4_INT unsigned char +#define RC4_INT unsigned int #endif #if !defined(RC4_CHUNK) /* * This enables code handling data aligned at natural CPU word * boundary. See crypto/rc4/rc4_enc.c for further details. */ -#define RC4_CHUNK unsigned long +#undef RC4_CHUNK #endif #endif @@ -124,13 +122,13 @@ /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a * %20 speed up (longs are 8 bytes, int's are 4). */ #ifndef DES_LONG -#define DES_LONG unsigned int +#define DES_LONG unsigned long #endif #endif #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) #define CONFIG_HEADER_BN_H -#undef BN_LLONG +#define BN_LLONG /* Should we define BN_DIV2W here? */ @@ -138,9 +136,9 @@ /* The prime number generation stuff may not work when * EIGHT_BIT but I don't care since I've only used this mode * for debuging the bignum libraries */ -#define SIXTY_FOUR_BIT_LONG +#undef SIXTY_FOUR_BIT_LONG #undef SIXTY_FOUR_BIT -#undef THIRTY_TWO_BIT +#define THIRTY_TWO_BIT #undef SIXTEEN_BIT #undef EIGHT_BIT #endif @@ -149,12 +147,12 @@ #define CONFIG_HEADER_RC4_LOCL_H /* if this is defined data[i] is used instead of *data, this is a %20 * speedup on x86 */ -#undef RC4_INDEX +#define RC4_INDEX #endif #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) #define CONFIG_HEADER_BF_LOCL_H -#define BF_PTR2 +#undef BF_PTR #endif /* HEADER_BF_LOCL_H */ #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) @@ -163,14 +161,14 @@ /* the following is tweaked from a config script, that is why it is a * protected undef/define */ #ifndef DES_PTR -#undef DES_PTR +#define DES_PTR #endif /* This helps C compiler generate the correct code for multiple functional * units. It reduces register dependancies at the expense of 2 more * registers */ #ifndef DES_RISC1 -#undef DES_RISC1 +#define DES_RISC1 #endif #ifndef DES_RISC2
signature.asc
Description: Digital signature