diff mbox

[FFmpeg-devel,2/2] configure: use watt socket library instead of libsocket library for djgpp builds

Message ID da89d45f62f9b47cb5b27a0eac673991b4f24533.1543062564.git.pross@xvid.org
State New
Headers show

Commit Message

Peter Ross Nov. 24, 2018, 12:41 p.m. UTC
rational:

libsocket development ceased in 2001. it only ever worked using windows virtual dos mode.
http://rich.phekda.org/richdawe/lsck/lsck_lnk.htm

watt-32 is maintained. it can work using dos or using windows virtual dos mode.
http://www.watt-32.net/
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/configure b/configure
index d3c036f82a..de71b806b9 100755
--- a/configure
+++ b/configure
@@ -5293,7 +5293,7 @@  case $target_os in
         add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
         ;;
     *-dos|freedos|opendos)
-        network_extralibs="-lsocket"
+        network_extralibs="-lwatt"
         objformat="coff"
         enable dos_paths
         ;;