diff options
| author | Zsolt Takács | 2014-02-06 10:39:33 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2014-02-16 18:27:23 +0000 | 
| commit | 806ab72118527ab055d24a2602c3aa9c32edb80f (patch) | |
| tree | b3e3d8d873ba707f78d81b12180d0e15132c9c0c | |
| parent | b8a5265bb513ce9259502d38881f2e0621445404 (diff) | |
| download | homebrew-806ab72118527ab055d24a2602c3aa9c32edb80f.tar.bz2 | |
mysql-connector-c++: add missing mysql dependency.
The dependency is needed for building and it's linked so at runtime too.
Closes #26464.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/mysql-connector-c++.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/Library/Formula/mysql-connector-c++.rb b/Library/Formula/mysql-connector-c++.rb index c31cbff22..837f5938e 100644 --- a/Library/Formula/mysql-connector-c++.rb +++ b/Library/Formula/mysql-connector-c++.rb @@ -7,6 +7,7 @@ class MysqlConnectorCxx < Formula    depends_on 'cmake' => :build    depends_on 'boost' => :build +  depends_on 'mysql'    def install      system "cmake", ".", *std_cmake_args | 
