source: scripts/untested/blfs-scripts/blfs-mdns.sh@ f118837

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since f118837 was 1c379e4, checked in by Jim Gifford <clfs@…>, 19 years ago

r589@server (orig r587): ryan | 2005-08-05 22:57:16 -0700
Add a pile of new scripts, and add -32 and -64 symlinks



  • 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.