mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
76fc4757ac
Mon Nov 4 17:08:47 UTC 2013 Slackware 14.1 x86_64 stable is released! It's been another interesting release cycle here at Slackware bringing new features like support for UEFI machines, updated compilers and development tools, the switch from MySQL to MariaDB, and many more improvements throughout the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Have fun! :-)
28 lines
768 B
Diff
28 lines
768 B
Diff
--- ./unix/configure.orig 2009-04-16 14:25:12.000000000 -0500
|
|
+++ ./unix/configure 2013-09-12 13:32:24.274604436 -0500
|
|
@@ -640,7 +640,24 @@
|
|
D_USE_BZ2="-DUSE_BZIP2"
|
|
L_BZ2="${BZLF} -lbz2"
|
|
else
|
|
- echo "-- bzip2 sources not found - no bzip2 support"
|
|
+ echo " Check if OS already has bzip2 library installed"
|
|
+ cat > conftest.c << _EOF_
|
|
+#include "bzlib.h"
|
|
+int main()
|
|
+{
|
|
+ bz_stream strm;
|
|
+ BZ2_bzCompressEnd(&strm);
|
|
+ return 0;
|
|
+}
|
|
+_EOF_
|
|
+ $CC $CFLAGS -o conftest conftest.c -lbz2 > /dev/null 2>/dev/null
|
|
+ if test $? -eq 0; then
|
|
+ echo "-- OS supports bzip2 - linking in bzip2"
|
|
+ D_USE_BZ2="-DUSE_BZIP2"
|
|
+ L_BZ2="${BZLF} -lbz2"
|
|
+ else
|
|
+ echo "-- Either bzlib.h or libbz2.a not found - no bzip2"
|
|
+ fi
|
|
fi
|
|
fi
|
|
|