Remove yazmalloc references
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 5 Jan 2004 09:45:49 +0000 (09:45 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 5 Jan 2004 09:45:49 +0000 (09:45 +0000)
debian/rules
yaz-config.in

index ab6c451..c1c24d5 100755 (executable)
@@ -117,7 +117,6 @@ binary-arch: build install
 
        echo "libyaz 2 libyaz (>= 2.0.2)" > debian/libyaz/DEBIAN/shlibs
        echo "libyazthread 2 libyaz (>= 2.0.2)" >> debian/libyaz/DEBIAN/shlibs
-       echo "libyazmalloc 2 libyaz (>= 2.0.2)" >> debian/libyaz/DEBIAN/shlibs
        echo "libyazssl 2 libyaz (>= 2.0.2)" >> debian/libyaz/DEBIAN/shlibs
        chmod 644 debian/libyaz/DEBIAN/shlibs
        dh_shlibdeps -p libyaz $(LOCAL_LINK) 
index a3a5776..ee94710 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: yaz-config.in,v 1.18 2003-10-27 12:21:21 adam Exp $
+# $Id: yaz-config.in,v 1.19 2004-01-05 09:45:49 adam Exp $
 yazprefix=@prefix@
 yaz_echo_cflags=no
 yaz_echo_libs=no
@@ -89,10 +89,6 @@ if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then
     lyaz="-lyazthread $lyaz"
 fi 
 
-if test "$lib_malloc" = "yes"; then
-    lyaz="-lyazmalloc $lyaz"
-fi
-
 if test "$lib_ssl" = "yes" -a -n "@SSL_LIBS@"; then
     yazextralibs="@SSL_LIBS@ $yazextralibs"
     lyaz="-lyazssl $lyaz"
@@ -108,9 +104,6 @@ if test "$yaz_echo_source" = "yes"; then
     if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then
         YAZLALIB="${yaz_build_root}/src/libyazthread.la $YAZLALIB"
     fi
-    if test "$lib_malloc" = "yes"; then
-        YAZLALIB="${yaz_build_root}/src/libyazmalloc.la $YAZLALIB"
-    fi
     YAZINC="-I${yaz_src_root}/include"
     YAZCOMP=${yaz_src_root}/util/yaz-comp
 else