diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:37:15 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:37:15 +0000 |
commit | ae5d181b854d3ccb373b6bc01b4869e44ff4d87a (patch) | |
tree | 91f59efb48c56a84cc798e012fccb667b63d3fee /scripts/conf.mingw.sh | |
parent | Initial commit. (diff) | |
download | lynx-upstream.tar.xz lynx-upstream.zip |
Adding upstream version 2.9.0dev.12.upstream/2.9.0dev.12upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'scripts/conf.mingw.sh')
-rwxr-xr-x | scripts/conf.mingw.sh | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/scripts/conf.mingw.sh b/scripts/conf.mingw.sh new file mode 100755 index 0000000..3828a98 --- /dev/null +++ b/scripts/conf.mingw.sh @@ -0,0 +1,38 @@ +#!/bin/bash.exe +# $LynxId: conf.mingw.sh,v 1.2 2014/02/13 13:30:54 tom Exp $ + +LYNX_DEV=d +LYNX_TOP=/cygwin/mingw/lynx2.8.7dev.13 +LYNX_ETC=$LYNX_TOP/lynx-conf + +LDFLAGS="-mno-cygwin -static -L/mingw/lib" \ +LIBS="-lwsock32 -lgdi32 -lmsvcrt -liconv" \ +CFLAGS="-mno-cygwin -I/mingw/include -I/mingw/include/openssl -W -Wall -O3 -D_WINDOWS -DSH_EX -DWIN_EX -DNOUSERS -DNOSIGHUP -DDOSPATH -DUSE_ALT_BLAT_MAILER -DBOXHORI=0 -DBOXVERT=0" \ +CPPFLAGS="-mno-cygwin -I/mingw/include -I/mingw/include/openssl" \ +./configure --prefix=/$LYNX_DEV$LYNX_ETC \ +--host=mingw32 \ +--disable-dired-override \ +--disable-full-paths \ +--enable-addrlist-page \ +--enable-change-exec \ +--enable-charset-choice \ +--enable-default-colors \ +--enable-exec-links \ +--enable-externs \ +--enable-file-upload \ +--enable-gzip-help \ +--enable-nested-tables \ +--enable-nls \ +--enable-vertrace \ +--includedir=/mingw/include \ +--sysconfdir=/$LYNX_DEV$LYNX_ETC \ +--datadir=/$LYNX_DEV$LYNX_ETC \ +--with-bzlib \ +--with-cfg-file=$LYNX_DEV:$LYNX_ETC/lynx.cfg \ +--with-lss-file=$LYNX_DEV:$LYNX_ETC/lynx.lss \ +--with-mime-libdir=c:/ \ +--with-nls-datadir=d:/cygwin/mingw/share \ +--with-pkg-config=no \ +--with-screen=curses \ +--with-ssl=/mingw/lib \ +--with-zlib |