changeset 13683:cf6fa37148dd

2698 libctf should use libz.so.1, not libz.so Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com> Approved by: Richard Lowe <richlowe@richlowe.net>
author Keith M Wesolowski <wesolows@foobazco.org>
date Tue, 08 May 2012 17:35:46 -0400
parents e7836650181b
children 9ccc3f459d46
files usr/src/lib/libctf/common/ctf_lib.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/usr/src/lib/libctf/common/ctf_lib.c	Sun May 06 18:49:02 2012 -0700
+++ b/usr/src/lib/libctf/common/ctf_lib.c	Tue May 08 17:35:46 2012 -0400
@@ -24,8 +24,6 @@
  * Use is subject to license terms.
  */
 
-#pragma ident	"%Z%%M%	%I%	%E% SMI"
-
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/mman.h>
@@ -37,9 +35,9 @@
 #include <gelf.h>
 
 #ifdef _LP64
-static const char *_libctf_zlib = "/usr/lib/64/libz.so";
+static const char *_libctf_zlib = "/usr/lib/64/libz.so.1";
 #else
-static const char *_libctf_zlib = "/usr/lib/libz.so";
+static const char *_libctf_zlib = "/usr/lib/libz.so.1";
 #endif
 
 static struct {