clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 1c9c5c3 was 1c9c5c3, checked in by Jim Gifford <clfs@…>, 19 years ago |
r624@server (orig r622): jim | 2005-10-31 12:40:28 -0800
Rearranging Archive
|
-
Property mode
set to
100755
|
File size:
868 bytes
|
Rev | Line | |
---|
[1c379e4] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | ### mDNS ###
|
---|
| 4 |
|
---|
| 5 | cd ${SRC}
|
---|
| 6 | LOG=mDNS-blfs.log
|
---|
| 7 |
|
---|
| 8 | SELF=`basename ${0}`
|
---|
| 9 | set_buildenv
|
---|
| 10 | set_libdirname
|
---|
| 11 | setup_multiarch
|
---|
| 12 |
|
---|
| 13 | unpack_tarball mDNSResponder-${MDNS_VER}
|
---|
| 14 | cd ${PKGDIR}/mDNSPosix
|
---|
| 15 |
|
---|
| 16 | if [ ! "${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
|
---|
| 21 | fi
|
---|
| 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 |
|
---|
| 26 | max_log_init mDNS ${MDNS_VER} "blfs (shared)" ${BUILDLOGS} ${LOG}
|
---|
| 27 | CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
|
---|
| 28 | make os=linux \
|
---|
| 29 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
| 30 | LD="${LD-ld} ${ARCH_LDFLAGS} -shared" \
|
---|
| 31 | >> ${LOGFILE} 2>&1 &&
|
---|
| 32 | echo " o Build OK" &&
|
---|
| 33 |
|
---|
| 34 | min_log_init ${INSTLOGS} &&
|
---|
| 35 | make os=linux install \
|
---|
| 36 | >> ${LOGFILE} 2>&1 &&
|
---|
| 37 | echo " o ALL OK" || barf
|
---|
| 38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.