diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-02-02 12:49:45 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-02-02 12:49:45 +0100 |
commit | 1bb8d5978cb6e05c81da7c1bb8cb5b33279e1667 (patch) | |
tree | 8d1dc74166666995bfa2173dcdf12e0f0c6f356d /apps | |
parent | 2426bd1b9dd0a79249329c6f51781d16136fad9d (diff) | |
parent | 82b271855c019c23e1e8163f9f7a02def8c36dc3 (diff) | |
download | nextcloud-server-1bb8d5978cb6e05c81da7c1bb8cb5b33279e1667.tar.gz nextcloud-server-1bb8d5978cb6e05c81da7c1bb8cb5b33279e1667.zip |
Merge pull request #13817 from owncloud/core-apps-dependencies
encryption requires openssl and user_ldap requires ldap :speak_no_evil:
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/appinfo/info.xml | 3 | ||||
-rw-r--r-- | apps/user_ldap/appinfo/info.xml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index 6fcef693bed..7f7e09d6271 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -19,4 +19,7 @@ <filesystem/> </types> <ocsid>166047</ocsid> + <dependencies> + <lib>openssl</lib> + </dependencies> </info> diff --git a/apps/user_ldap/appinfo/info.xml b/apps/user_ldap/appinfo/info.xml index a1a934f0140..88462902421 100644 --- a/apps/user_ldap/appinfo/info.xml +++ b/apps/user_ldap/appinfo/info.xml @@ -18,4 +18,7 @@ A user logs into ownCloud with their LDAP or AD credentials, and is granted acce <admin>admin-ldap</admin> </documentation> <ocsid>166061</ocsid> + <dependencies> + <lib>ldap</lib> + </dependencies> </info> |