forked from postgres/postgres
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
7 changed files
with
555 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) | ||
]) |
Oops, something went wrong.