Skip to content

Commit

Permalink
add --with-ldap to distributed config flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
adunstan committed Mar 13, 2006
1 parent 9e27504 commit 1493695
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build-farm.conf
Expand Up @@ -81,7 +81,8 @@ my $branch;
# don't use --prefix or --with-pgport here
# they are set up by the script
# per-branch config can be done here or
# more simply by using the example below.
# more simply by using the examples below.
# (default ldap flag is below because it's not supported in all branches)
config_opts =>
[qw(
--enable-cassert
Expand Down Expand Up @@ -117,11 +118,18 @@ my $branch;

##################################
#
# example of per branch processing
# examples of per branch processing
# tailor as required for your site.
#
##################################

# ldap support is new as of 8.2
if ($branch eq 'HEAD' || $branch ge 'REL8_2')
{
push(@{$conf{config_opts}},"--with-ldap");
}


if ($branch eq 'HEAD')
{
# push(@{$conf{config_opts}},"--enable-depend");
Expand Down

0 comments on commit 1493695

Please sign in to comment.