diff options
author | Roger Hardiman <roger@FreeBSD.org> | 2003-08-28 06:56:10 +0000 |
---|---|---|
committer | Roger Hardiman <roger@FreeBSD.org> | 2003-08-28 06:56:10 +0000 |
commit | 38e9c2e97d3d99ba674f04204d7f662c7fe20a8b (patch) | |
tree | 9f66d6c3b3b540a0b620b3dcebba0f10c61bfe6c /net/openh323-112/files/patch-configurein | |
parent | afbbd896cb5cdfc701077fbf8282146649aa522d (diff) |
Notes
Diffstat (limited to 'net/openh323-112/files/patch-configurein')
-rw-r--r-- | net/openh323-112/files/patch-configurein | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net/openh323-112/files/patch-configurein b/net/openh323-112/files/patch-configurein new file mode 100644 index 000000000000..3d6ff53673a9 --- /dev/null +++ b/net/openh323-112/files/patch-configurein @@ -0,0 +1,31 @@ +*** configure.in.orig Thu May 22 13:25:00 2003 +--- configure.in Sat Aug 23 07:52:44 2003 +*************** fi +*** 73,85 **** + + dnl ######################################################################## + dnl get pwlib directory +! if test "${PWLIBDIR:-unset}" == "unset" ; then + PWLIBDIR=`ptlib-config --prefix` + fi +! if test "x$PWLIBDIR" == "x/usr" -o "x$PWLIBDIR" == "x/usr/"; then + PWLIBDIR="/usr/share/pwlib/" + fi +! if test "xPWLIBDIR" == "x/usr/local" -o "x$PWLIBDIR" == "x/usr/"; then + PWLIBDIR="/usr/local/share/pwlib/" + fi + echo "PWLib prefix set to.... $PWLIBDIR" +--- 73,85 ---- + + dnl ######################################################################## + dnl get pwlib directory +! if test "${PWLIBDIR:-unset}" = "unset" ; then + PWLIBDIR=`ptlib-config --prefix` + fi +! if test "x$PWLIBDIR" = "x/usr" -o "x$PWLIBDIR" = "x/usr/"; then + PWLIBDIR="/usr/share/pwlib/" + fi +! if test "xPWLIBDIR" = "x/usr/local" -o "x$PWLIBDIR" = "x/usr/"; then + PWLIBDIR="/usr/local/share/pwlib/" + fi + echo "PWLib prefix set to.... $PWLIBDIR" |