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