]> git.saurik.com Git - wxWidgets.git/commitdiff
fix makefile for digitalmars
authorChris Elliott <biol75@york.ac.uk>
Wed, 3 Sep 2003 13:59:53 +0000 (13:59 +0000)
committerChris Elliott <biol75@york.ac.uk>
Wed, 3 Sep 2003 13:59:53 +0000 (13:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23364 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

lib/_sc/Readme.txt
lib/_sc/wsock32_sc.def
src/msw/makefile.sc

index a0061668d6b4b88af3b4cd4e092c2b6d41902806..307bd9f5903b821fcd24712479b8b317fcae6570 100644 (file)
@@ -1,4 +1,15 @@
 This directory contains files for the Digitalmars compiler, currently 8.34 beta
 to resolve externals which are not present in the .lib files released by DigitalMars.
 
 This directory contains files for the Digitalmars compiler, currently 8.34 beta
 to resolve externals which are not present in the .lib files released by DigitalMars.
 
+To find the names of the functions
+
+//create a library from the dll e.g.
+implib ws.lib c:\WINNT\system32\wsock32.dll
+
+//make a listing
+lib -l ws.lib
+
+//read the listing e.g.
+type ws.lst | more
+
 Chris Elliott, biol75@york.ac.uk, 07 May 03
 Chris Elliott, biol75@york.ac.uk, 07 May 03
index 9cb5991ef2c68c9a6adf3a6fadaa9ce56ec36c36..d27e7427589fb338cfb704f0f088aff40daa4d37 100644 (file)
@@ -21,6 +21,7 @@ EXPORTS
     _select@20 = select
     _WSAGetLastError@0 = WSAGetLastError
     _getsockname@12 = getsockname
     _select@20 = select
     _WSAGetLastError@0 = WSAGetLastError
     _getsockname@12 = getsockname
+    _getsockopt@20 = getsockopt
     _bind@12 = bind
     _ioctlsocket@12 = ioctlsocket
     _socket@12 = socket
     _bind@12 = bind
     _ioctlsocket@12 = ioctlsocket
     _socket@12 = socket
index 06d311015c11077f7a432ec6f7838676b454d8cf..a432b53aaa2d4bf94ec58765977ad3f759dbc009 100644 (file)
@@ -43,6 +43,7 @@ GENERICOBJS= $(GENDIR)\busyinfo.obj \
                $(GENDIR)\numdlgg.obj \
                $(GENDIR)\panelg.obj \
                $(GENDIR)\progdlgg.obj \
                $(GENDIR)\numdlgg.obj \
                $(GENDIR)\panelg.obj \
                $(GENDIR)\progdlgg.obj \
+               $(GENDIR)\renderg.obj \
                $(GENDIR)\sashwin.obj \
                $(GENDIR)\scrlwing.obj \
                $(GENDIR)\selstore.obj \
                $(GENDIR)\sashwin.obj \
                $(GENDIR)\scrlwing.obj \
                $(GENDIR)\selstore.obj \
@@ -61,6 +62,7 @@ COMMONOBJS = $(COMMDIR)\accesscmn.obj \
                $(COMMDIR)\appcmn.obj \
                $(COMMDIR)\artprov.obj \
                $(COMMDIR)\artstd.obj \
                $(COMMDIR)\appcmn.obj \
                $(COMMDIR)\artprov.obj \
                $(COMMDIR)\artstd.obj \
+                $(COMMDIR)\bookctrl.obj \
                $(COMMDIR)\choiccmn.obj \
                $(COMMDIR)\clipcmn.obj \
                $(COMMDIR)\clntdata.obj \
                $(COMMDIR)\choiccmn.obj \
                $(COMMDIR)\clipcmn.obj \
                $(COMMDIR)\clntdata.obj \
@@ -156,6 +158,7 @@ COMMONOBJS = $(COMMDIR)\accesscmn.obj \
                $(COMMDIR)\quantize.obj \
                $(COMMDIR)\radiocmn.obj \
                $(COMMDIR)\regex.obj \
                $(COMMDIR)\quantize.obj \
                $(COMMDIR)\radiocmn.obj \
                $(COMMDIR)\regex.obj \
+               $(COMMDIR)\rendcmn.obj  \
                $(COMMDIR)\rgncmn.obj \
                $(COMMDIR)\sckaddr.obj \
                $(COMMDIR)\sckfile.obj \
                $(COMMDIR)\rgncmn.obj \
                $(COMMDIR)\sckaddr.obj \
                $(COMMDIR)\sckfile.obj \
@@ -298,6 +301,7 @@ MSWOBJS = $(MSWDIR)\accel.obj \
                $(MSWDIR)\radiobut.obj \
                $(MSWDIR)\regconf.obj \
                $(MSWDIR)\region.obj \
                $(MSWDIR)\radiobut.obj \
                $(MSWDIR)\regconf.obj \
                $(MSWDIR)\region.obj \
+               $(MSWDIR)\renderer.obj \
                $(MSWDIR)\registry.obj \
                $(MSWDIR)\scrolbar.obj \
                $(MSWDIR)\settings.obj \
                $(MSWDIR)\registry.obj \
                $(MSWDIR)\scrolbar.obj \
                $(MSWDIR)\settings.obj \
@@ -343,8 +347,8 @@ MAKEARCHDIR:
 
 #build our own copies of missing libraries
 MAKELIBS:
 
 #build our own copies of missing libraries
 MAKELIBS:
-      implib  /s $(LIBDIR)\$(SHELLLIB) $(LIBDIR)\$(SC_SUFFIX)\$(SHELLLIB).def
-      implib  /s $(LIBDIR)\$(WINSOCKLIB) $(LIBDIR)\$(SC_SUFFIX)\$(WINSOCKLIB).def
+      dimplib  /s $(LIBDIR)\$(SHELLLIB) $(LIBDIR)\$(SC_SUFFIX)\$(SHELLLIB).def
+      dimplib  /s $(LIBDIR)\$(WINSOCKLIB) $(LIBDIR)\$(SC_SUFFIX)\$(WINSOCKLIB).def
 
 $(LIBTARGET): $(OBJECTS)
        -del $(LIBTARGET)
 
 $(LIBTARGET): $(OBJECTS)
        -del $(LIBTARGET)