clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
|
Last change
on this file since def3913 was 1c379e4, checked in by Jim Gifford <clfs@…>, 20 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:
1.0 KB
|
| Line | |
|---|
| 1 | #!/bin/bash
|
|---|
| 2 |
|
|---|
| 3 | ### postgresql ###
|
|---|
| 4 |
|
|---|
| 5 | cd ${SRC}
|
|---|
| 6 | LOG=postgresql-blfs.log
|
|---|
| 7 |
|
|---|
| 8 | SELF=`basename ${0}`
|
|---|
| 9 | set_buildenv
|
|---|
| 10 | set_libdirname
|
|---|
| 11 | setup_multiarch
|
|---|
| 12 | if [ ! "${libdirname}" = "lib" ]; then
|
|---|
| 13 | extra_conf="--libdir=/usr/${libdirname}"
|
|---|
| 14 | fi
|
|---|
| 15 |
|
|---|
| 16 | unpack_tarball postgresql-${PGSQL_VER}
|
|---|
| 17 | cd ${PKGDIR}
|
|---|
| 18 |
|
|---|
| 19 | echo ${ARCH_LDFLAGS}
|
|---|
| 20 |
|
|---|
| 21 | max_log_init postgresql ${PGSQL_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
|---|
| 22 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
|---|
| 23 | CXX="${CXX-g++} ${ARCH_CFLAGS}" \
|
|---|
| 24 | LD="${LD-ld} ${ARCH_LDFLAGS}" \
|
|---|
| 25 | CFLAGS="${TGT_CFLAGS}" \
|
|---|
| 26 | CXXLAGS="${TGT_CFLAGS}" \
|
|---|
| 27 | ./configure --prefix=/usr ${extra_conf} \
|
|---|
| 28 | --enable-thread-safety \
|
|---|
| 29 | --with-krb5 --with-openssl \
|
|---|
| 30 | --with-perl --with-python --with-tcl \
|
|---|
| 31 | >> ${LOGFILE} 2>&1 &&
|
|---|
| 32 | echo " o Configure OK" &&
|
|---|
| 33 |
|
|---|
| 34 | min_log_init ${BUILDLOGS} &&
|
|---|
| 35 | make ${PMFLAGS} \
|
|---|
| 36 | >> ${LOGFILE} 2>&1 &&
|
|---|
| 37 | echo " o Build OK" &&
|
|---|
| 38 |
|
|---|
| 39 | min_log_init ${INSTLOGS} &&
|
|---|
| 40 | make install \
|
|---|
| 41 | >> ${LOGFILE} 2>&1 &&
|
|---|
| 42 | echo " o ALL OK" || barf
|
|---|
| 43 |
|
|---|
| 44 | if [ "${MULTIARCH}" = "Y" ]; then
|
|---|
| 45 | use_wrapper /usr/bin/pg_config
|
|---|
| 46 | create_stub_hdrs /usr/include/{pg_config.h,postgresql/server/pg_config.h}
|
|---|
| 47 | fi
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.