about summary refs log tree commit diff stats
path: root/INSTALLATION
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALLATION')
-rw-r--r--INSTALLATION26
1 files changed, 25 insertions, 1 deletions
diff --git a/INSTALLATION b/INSTALLATION
index 3dcc566d..cb523ef7 100644
--- a/INSTALLATION
+++ b/INSTALLATION
@@ -912,6 +912,30 @@ IV. Compile instructions -- Win32 (Windows95/98/NT)
 
 Borland C:
 
+--  --------------------------------------------------------------------------
+    Download these "setup" files from http://gnuwin32.sourceforge.net
+	libiconv-1.9.2-1.exe (libiconv)
+	libintl-0.14.4.exe (libintl)
+	openssl-0.9.8h-1-setup.exe (openssl)
+	pdcurses-2.6.exe (pdcurses)
+	zlib-1.2.3.exe (zlib)
+    Install all of the packages in the same directory, e.g., "c:\app\GnuWin32".
+
+    Fix is needed in GnuWin32 include/zconf.h, change line reading
+    	#if 1	/* HAVE_UNISTD_H -- this line is updated by ./configure */
+    to
+    	#ifdef HAVE_UNISTD_H
+
+    Prepare import-libraries using Borland's implib program.  The ".lib"
+    files that it uses are a different format than the Microsoft import
+    libraries.
+    	for {name} in *.dll
+	do
+		implib -a {name}.lib {name}.dll
+	done
+
+--  --------------------------------------------------------------------------
+
     The original Win32 port was built with Borland C++ 4.52, but later
     versions reportedly can be used.  Before compiling the Lynx sources, you
     need a curses library, and it is recommended that you have the zlib
@@ -1387,4 +1411,4 @@ VIII. Acknowledgment
 
 -- 1999/04/24 - H. Nelson <lynx-admin@irm.nara.kindai.ac.jp>
 -- vile:txtmode
--- $LynxId: INSTALLATION,v 1.117 2012/02/03 22:29:17 tom Exp $
+-- $LynxId: INSTALLATION,v 1.118 2012/07/05 00:40:44 tom Exp $
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319