aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-08-14 13:03:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-08-23 13:53:50 +0200
commitbcd246076540a8353fa55fc0a5e19343c1a2dbc9 (patch)
tree9fe2c24ca33b3d670267a5cbc8c8c756589f359b /build.sh
parent24903813d11813f8ff9ac906d23b21e6c33b981d (diff)
Implement package search service mockup
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/build.sh b/build.sh
index 3d06a80..ae71e72 100755
--- a/build.sh
+++ b/build.sh
@@ -25,16 +25,19 @@ g++ -shared $DEBUG -std=c++11 -I.. -I../../libbpkg \
echo "cli brep-apache options"
cli --include-with-brackets --include-prefix brep --hxx-suffix "" \
- --guard-prefix BREP --generate-file-scanner --suppress-usage ./options.cli
+ --guard-prefix BREP --generate-file-scanner --suppress-usage \
+ --option-prefix "" ./options.cli
echo "g++ libbrep-apache.so"
-s="search.cxx view.cxx module.cxx diagnostics.cxx services.cxx options.cxx \
-shared-database.cxx ../web/apache/request.cxx ../web/apache/service.cxx"
+s="package-search.cxx package-version-search.cxx module.cxx diagnostics.cxx \
+services.cxx options.cxx shared-database.cxx \
+../web/apache/request.cxx ../web/apache/service.cxx \
+../web/mime-url-encoding.cxx"
g++ -shared $DEBUG -std=c++11 -I. -I/usr/include/apr-1 -I/usr/include/httpd \
-I.. -I../../libbpkg -I../../libbutl -L. -L../../libbpkg/bpkg \
- -fPIC -o libbrep-apache.so $s -lbrep -lbpkg -lodb-pgsql -lodb
+ -fPIC -o libbrep-apache.so $s -lbrep -lbpkg -lodb-pgsql -lodb -lstudxml
cd ../loader