Skip to content
Snippets Groups Projects
Commit 2d939c9c authored by Herbert Valerio Riedel's avatar Herbert Valerio Riedel :man_dancing:
Browse files

Remove obsolete `--with-cc` flag from configure.ac

This non-standard flag was used previously by GHC's build-system to set the `CC` variable.

See https://phabricator.haskell.org/D1608 for more details
parent cc7f64b0
No related branches found
No related tags found
No related merge requests found
...@@ -3,11 +3,10 @@ AC_INIT([Haskell time package], [1.6], [ashley@semantic.org], [time]) ...@@ -3,11 +3,10 @@ AC_INIT([Haskell time package], [1.6], [ashley@semantic.org], [time])
# Safety check: Ensure that we are in the correct source directory. # Safety check: Ensure that we are in the correct source directory.
AC_CONFIG_SRCDIR([lib/include/HsTime.h]) AC_CONFIG_SRCDIR([lib/include/HsTime.h])
AC_ARG_WITH([cc], # These are to silence warnings with older Cabal versions
[C compiler],
[CC=$withval])
AC_ARG_WITH([gcc],[Gnu C compiler]) AC_ARG_WITH([gcc],[Gnu C compiler])
AC_ARG_WITH([compiler],[Haskell compiler]) AC_ARG_WITH([compiler],[Haskell compiler])
AC_PROG_CC() AC_PROG_CC()
AC_CONFIG_HEADERS([lib/include/HsTimeConfig.h]) AC_CONFIG_HEADERS([lib/include/HsTimeConfig.h])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment