Skip to content
Snippets Groups Projects
Commit d17b5eb2 authored by sknigh's avatar sknigh Committed by Adam J. Stewart
Browse files

Added expat dependency to apr-util (#3871)

parent 4e955252
No related branches found
No related tags found
No related merge requests found
...@@ -33,12 +33,14 @@ class AprUtil(Package): ...@@ -33,12 +33,14 @@ class AprUtil(Package):
version('1.5.4', '866825c04da827c6e5f53daff5569f42') version('1.5.4', '866825c04da827c6e5f53daff5569f42')
depends_on('apr') depends_on('apr')
depends_on('expat')
def install(self, spec, prefix): def install(self, spec, prefix):
# configure, build, install: # configure, build, install:
options = ['--prefix=%s' % prefix] options = ['--prefix=%s' % prefix]
options.append('--with-apr=%s' % spec['apr'].prefix) options.append('--with-apr=%s' % spec['apr'].prefix)
options.append('--with-expat=%s' % spec['expat'].prefix)
configure(*options) configure(*options)
make() make()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment