source: scripts/scripts/untested/blfs-scripts/blfs-mdns.sh @ 7f65c0e

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 7f65c0e was 7f65c0e, checked in by Jim Gifford <clfs@…>, 18 years ago

r625@server (orig r623): jim | 2005-10-31 12:43:24 -0800
Final Move

  • Property mode set to 100755
File size: 868 bytes
Line 
1#!/bin/bash
2
3### mDNS ###
4
5cd ${SRC}
6LOG=mDNS-blfs.log
7
8SELF=`basename ${0}`
9set_buildenv
10set_libdirname
11setup_multiarch
12
13unpack_tarball mDNSResponder-${MDNS_VER}
14cd ${PKGDIR}/mDNSPosix
15
16if [ ! "${libdirname}" = "lib" ]; then
17   sed -i -e "/^NSSINSTPATH :=/s@/lib@/${libdirname}@g" \
18          -e "s@/lib/@/${libdirname}/@g" \
19          -e 's@^CFLAGS =@CFLAGS +=@g' \
20       Makefile
21fi
22
23# Ignoring the java build... this has to be done after install of libdns_sd
24# If doing the libjdns_sd build, set JDK to JAVA_HOME...
25
26max_log_init mDNS ${MDNS_VER} "blfs (shared)" ${BUILDLOGS} ${LOG}
27CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
28make os=linux \
29   CC="${CC-gcc} ${ARCH_CFLAGS}" \
30   LD="${LD-ld} ${ARCH_LDFLAGS} -shared" \
31   >> ${LOGFILE} 2>&1 &&
32echo " o Build OK" &&
33
34min_log_init ${INSTLOGS} &&
35make os=linux install \
36   >> ${LOGFILE} 2>&1 &&
37echo " o ALL OK" || barf
38
Note: See TracBrowser for help on using the repository browser.