-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Searching for mysql_config executable in setup fails on windows #5
Comments
also the perl included with the Haskell platform cannot run the mysql_config.pl failing with Maybe there is another way to get the information? |
@ghost I've worked around this by installing http://strawberryperl.com/ and changing more in paul-rouse/mysql#3 |
I'v just describe workaround without perl in the open issue post |
#14 needs to get fixed alongside this. |
had the same problem on Linux CentOS 7, |
I suspect because it has the .pl extension when installed on windows and it cannot be found by
findExecutable
in here http://www.haskell.org/ghc/docs/6.8.3/html/libraries/Cabal/src/Distribution-Compat-Directory.htmlalso note that unless cygwin or some other posix/unix emulation layer is installed, .pl files cannot be executed directly. You have the run the command
perl mysql_config.pl
Perl is included with the Haskell platform on windows, but the perl executable is not in the PATH.
The text was updated successfully, but these errors were encountered: