We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e2811 commit ade5dc1Copy full SHA for ade5dc1
2 files changed
.github/workflows/bins.yml
@@ -247,9 +247,7 @@ jobs:
247
./configure \
248
--prefix=/mingw64 \
249
--enable-static \
250
- --disable-shared \
251
- --with-sqlite3 \
252
- --with-editline
+ --with-sqlite3
253
254
- name: Build
255
run: make V=1
configure.ac
@@ -33,6 +33,14 @@ AC_SUBST(abssrcdir)
33
CXX=`echo $CXX | sed -e 's/-std=gnu++11//g'`
34
CPPFLAGS="$CPPFLAGS -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -D_GNU_SOURCE -DUSE_OS_TZDB=1 -DHAS_REMOTE_API=0"
35
36
+case "$host_os" in
37
+*)
38
+ AC_DEFINE([USE_OS_TZDB], [1], [use tzdb])
39
+ ;;
40
+mingw*)
41
42
+esac
43
+
44
AC_ARG_ENABLE([debug],
45
AS_HELP_STRING([--enable-debug],
46
[Compile with symbols]))
0 commit comments