When _XOPEN_SOURCE is defined, make sure it's defined to 500. Required in
[oweals/openssl.git] / INSTALL
diff --git a/INSTALL b/INSTALL
index cc6b731741fda0296bc38d6bf385e6d39c04bd2d..503474f2e4cef2f6f295348caaf37c9c795b1dba 100644 (file)
--- a/INSTALL
+++ b/INSTALL
      generic configurations "cc" or "gcc" should usually work on 32 bit
      systems.
 
-     Configure creates the file Makefile.ssl from Makefile.org and
+     Configure creates the file Makefile from Makefile.org and
      defines various macros in crypto/opensslconf.h (generated from
      crypto/opensslconf.h.in).
 
      the failure that isn't a problem in OpenSSL itself (like a missing
      or malfunctioning bc).  If it is a problem with OpenSSL itself,
      try removing any compiler optimization flags from the CFLAG line
-     in Makefile.ssl and run "make clean; make". Please send a bug
+     in Makefile and run "make clean; make". Please send a bug
      report to <openssl-bugs@openssl.org>, including the output of
      "make report" in order to be added to the request tracker at
      http://www.openssl.org/support/rt2.html.
        cd objtree/"`uname -s`-`uname -r`-`uname -m`"
        (cd $OPENSSL_SOURCE; find . -type f) | while read F; do
                mkdir -p `dirname $F`
-               ln -s $OPENSSL_SOURCE/$F $F
+               rm -f $F; ln -s $OPENSSL_SOURCE/$F $F
+               echo $F '->' $OPENSSL_SOURCE/$F
        done
        make -f Makefile.org clean