diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-30 10:53:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-30 10:53:04 +0200 |
commit | 4bf32fa136d021876827a56d92e0695774107ef7 (patch) | |
tree | b594358219691847dc963607a5db9a7241557f50 | |
parent | 665057a9c4bb0d2ea5ca35d81cb1c22244fa7002 (diff) |
Remove backwards-compatibility kludges
-rw-r--r-- | build/root.build | 9 | ||||
-rw-r--r-- | etc/buildfile | 4 | ||||
-rw-r--r-- | mod/buildfile | 22 |
3 files changed, 5 insertions, 30 deletions
diff --git a/build/root.build b/build/root.build index 5a452d9..1245c9f 100644 --- a/build/root.build +++ b/build/root.build @@ -32,12 +32,5 @@ cxx{*options}: dist = true # All exe{} in tests/ are, well, tests. # -tests/: test.exe = true # @@ BC - -#tests/exe{*}: test = true # @@ BC -tests/: -{ - exe{*}: test = true -} - +tests/exe{*}: test = true tests/: install = false diff --git a/etc/buildfile b/etc/buildfile index 4e5478c..847e044 100644 --- a/etc/buildfile +++ b/etc/buildfile @@ -6,6 +6,4 @@ systemd/file{brep-load.service brep-load.timer} install = data/etc/ -systemd/: install = data/etc/systemd/ - -#@@ BC install.subdirs
\ No newline at end of file +install.subdirs = true # Recreate subdirectories. diff --git a/mod/buildfile b/mod/buildfile index 64e68b2..79d86e0 100644 --- a/mod/buildfile +++ b/mod/buildfile @@ -2,19 +2,8 @@ # copyright : Copyright (c) 2014-2016 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -# @@ BC with 0.3.0: renamed libso to libs. -# -if ($build.version != 30000) # No support for > in 0.3.0 -{ - define mod: libs - mod{*}: bin.lib.prefix = mod_ -} -else -{ - define mod: libso - mod{*}: bin.libprefix = mod_ -} - +define mod: libs +mod{*}: bin.lib.prefix = mod_ mod{*}: install = libexec/ # While we don't need to link to APR, we need to find its header location. @@ -56,12 +45,7 @@ mod{brep}: \ # Don't install any of the module's headers. # {hxx ixx txx}{*}: install = false - -#../web/{hxx ixx txx}{*}: install = false # @@ BC -../web/: -{ - {hxx ixx txx}{*}: install = false -} +../web/{hxx ixx txx}{*}: install = false # Set option prefix to the empty value to handle all unknown request parameters # uniformly with a single catch block. |