Mailinglist Archive: opensuse-commit (2125 mails)
| < Previous | Next > |
commit libxcrypt
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Wed, 09 Apr 2008 00:20:34 +0200
- Message-id: <20080408222035.55698678182@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package libxcrypt
checked in at Wed Apr 9 00:20:34 CEST 2008.
--------
--- libxcrypt/libxcrypt.changes 2008-04-03 12:03:36.000000000 +0200
+++ libxcrypt/libxcrypt.changes 2008-04-07 16:07:33.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Apr 7 16:03:31 CEST 2008 - schwab@xxxxxxx
+
+- Remove use of undefined macro.
+- Work around unclean sources.
+
+-------------------------------------------------------------------
New:
----
libxcrypt-3.0.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libxcrypt.spec ++++++
--- /var/tmp/diff_new_pack.ts8192/_old 2008-04-09 00:19:50.000000000 +0200
+++ /var/tmp/diff_new_pack.ts8192/_new 2008-04-09 00:19:50.000000000 +0200
@@ -16,10 +16,11 @@
Group: System/Libraries
AutoReqProv: on
Version: 3.0
-Release: 1
+Release: 3
Summary: Crypt Library for DES, MD5, Blowfish and others
Source: libxcrypt-%{version}.tar.bz2
Source1: libxcrypt-2.4.tar.bz2
+Patch: libxcrypt-%{version}.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -48,13 +49,15 @@
%prep
%setup -q -b 1
+%patch
%build
-CFLAGS=$RPM_OPT_FLAGS ./configure --prefix=%{_prefix} \
+./configure CFLAGS="$RPM_OPT_FLAGS -Wno-cast-align" \
+ --prefix=%{_prefix} \
--libdir=/%{_lib} --disable-static
make
cd ../libxcrypt-2.4
-CFLAGS=$RPM_OPT_FLAGS ./configure --prefix=%{_prefix} --libdir=%{_libdir}
+./configure CFLAGS="$RPM_OPT_FLAGS" --prefix=%{_prefix} --libdir=%{_libdir}
make
%check
@@ -91,6 +94,9 @@
%{_libdir}/libxcrypt.so
%changelog
+* Mon Apr 07 2008 schwab@xxxxxxx
+- Remove use of undefined macro.
+- Work around unclean sources.
* Thu Apr 03 2008 kukuk@xxxxxxx
- Add libxcrypt-3.0:
* Add sha256 and sha512 hashes
++++++ libxcrypt-3.0.diff ++++++
--- plugins/md5/md5.c
+++ plugins/md5/md5.c
@@ -238,7 +238,7 @@ md5_process_bytes (buffer, len, ctx)
/* Process available complete blocks. */
if (len >= 64)
{
-#if !_STRING_ARCH_unaligned
+#if 1
/* To check alignment gcc has an appropriate operator. Other
compilers don't. */
# if __GNUC__ >= 2
--- plugins/sha256/sha256.c
+++ plugins/sha256/sha256.c
@@ -264,7 +264,7 @@ __sha256_process_bytes (buffer, len, ctx
/* Process available complete blocks. */
if (len >= 64)
{
-#if !_STRING_ARCH_unaligned
+#if 1
/* To check alignment gcc has an appropriate operator. Other
compilers don't. */
# if __GNUC__ >= 2
--- plugins/sha512/sha512.c
+++ plugins/sha512/sha512.c
@@ -295,7 +295,7 @@ __sha512_process_bytes (buffer, len, ctx
/* Process available complete blocks. */
if (len >= 128)
{
-#if !_STRING_ARCH_unaligned
+#if 1
/* To check alignment gcc has an appropriate operator. Other
compilers don't. */
# if __GNUC__ >= 2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |