1

Where do I find information about how a specific package in centos is build. Ie. what flags has been used on ./configure etc.

At the moment I'm trying to figure out how slapd (openldap-servers) are build. Did they use "--enable-modules" when the package was configured. I guess not, but it would be interesting to get it verified.

Arlukin
  • 1,203
  • 6
  • 18
  • 27

1 Answers1

2

Try

yumdownloader --source openldap-servers
rpm -Uvh openldap-servers*
less rpmbuild/SPECS/openldap.spec

According to that --enable-modules was specified, by the way. :-)

Janne Pikkarainen
  • 31,852
  • 4
  • 58
  • 81