aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-06-17 02:05:22 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-06-17 02:05:22 +0000
commit186c3bd2c4a43344bf09d15609bb4732ac0f881e (patch)
tree90331f0554e7039e1f370b1609be908adb34a75b
parentfe9462c17a644ec7183d4a6e8ed196125d42b76f (diff)
downloadupstream-186c3bd2c4a43344bf09d15609bb4732ac0f881e.tar.gz
upstream-186c3bd2c4a43344bf09d15609bb4732ac0f881e.tar.bz2
upstream-186c3bd2c4a43344bf09d15609bb4732ac0f881e.zip
mark openswan as 2.4 only for now (doesn't work on 2.6.22, does anyone even need this on 2.6?)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7649 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/openswan/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/openswan/Makefile b/package/openswan/Makefile
index 1fd2e20af60..9035a3c9848 100644
--- a/package/openswan/Makefile
+++ b/package/openswan/Makefile
@@ -30,7 +30,7 @@ define Package/openswan
$(call Package/openswan/Default)
SECTION:=net
CATEGORY:=Network
- DEPENDS:=+kmod-openswan +libgmp +ip
+ DEPENDS:=@LINUX_2_4 +kmod-openswan +libgmp +ip
TITLE+= (daemon)
DESCRIPTION+=\\\
\\\
@@ -41,6 +41,7 @@ endef
define KernelPackage/openswan
SUBMENU:=Network Support
$(call Package/openswan/Default)
+ DEPENDS:=@LINUX_2_4
TITLE+= (kernel module)
DESCRIPTION+=\\\
\\\
lor: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
**Description** Please explain the changes you made here.
If the feature changes current behaviour, explain why your solution is better.

:rotating_light: Before submitting your PR, please read [contribute](http://ghdl.readthedocs.io/en/latest/contribute.html#fork-modify-and-pull-request) in the [Docs](http://ghdl.readthedocs.io/en/latest/index.html), and review the following checklist:

- [ ] DO indicate which issues are either fixed or closed by this PR. See [GitHub Help: Closing issues using keywords](https://help.github.com/articles/closing-issues-via-commit-messages/).

**When contributing to the GHDL codebase...**

- [ ] DO make sure you are requesting to **pull a topic/feature/bugfix branch** (right side). Don't request your master!
- [ ] DO make sure you are making a pull request against the **master branch** (left side). Also you should start *your branch* off *our master*.
- [ ] DO make sure that GHDL can be successfully built. See [Building GHDL](https://github.com/ghdl/ghdl#building-ghdl).
- [ ] CONSIDER adding a unit test if your PR resolves an issue.
- [ ] CONSIDER modifying the docs, at least in the TODO, if your contribution is relevant to any of the content.
- [ ] AVOID breaking the continuous integration build.
- [ ] AVOID breaking the testsuite.

**When contributing to the docs...**

- [ ] DO make sure that the build is successful. See [ghdl/ghdl#572 (issuecomment-390466024)](https://github.com/ghdl/ghdl/issues/572#issuecomment-390466024).

**Further comments**

If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did, what alternatives you considered, etc.

:heart: Thank you!