mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
Put the right runpath to libpq into the Perl module shared object on more
platforms and without relinking. Also support VPATH builds and DESTDIR installs. One hopes.
This commit is contained in:
27
config/perl.m4
Normal file
27
config/perl.m4
Normal file
@ -0,0 +1,27 @@
|
||||
# $Header: /cvsroot/pgsql/config/perl.m4,v 1.1 2001/08/26 22:28:04 petere Exp $
|
||||
|
||||
|
||||
# PGAC_PATH_PERL
|
||||
# --------------
|
||||
AC_DEFUN([PGAC_PATH_PERL],
|
||||
[AC_PATH_PROG(PERL, perl)])
|
||||
|
||||
|
||||
# PGAC_CHECK_PERL_DIRS
|
||||
# ---------------------
|
||||
AC_DEFUN([PGAC_CHECK_PERL_DIRS],
|
||||
[
|
||||
AC_REQUIRE([PGAC_PATH_PERL])
|
||||
AC_MSG_CHECKING([Perl installation directories])
|
||||
|
||||
# These are the ones we currently need. Others can be added easily.
|
||||
perl_installsitearch=`$PERL -MConfig -e 'print $Config{installsitearch}'`
|
||||
perl_installsitelib=`$PERL -MConfig -e 'print $Config{installsitelib}'`
|
||||
perl_installman3dir=`$PERL -MConfig -e 'print $Config{installman3dir}'`
|
||||
|
||||
AC_SUBST(perl_installsitearch)[]dnl
|
||||
AC_SUBST(perl_installsitelib)[]dnl
|
||||
AC_SUBST(perl_installman3dir)[]dnl
|
||||
|
||||
AC_MSG_RESULT(done)
|
||||
])
|
Reference in New Issue
Block a user