svn commit: r277598 - stable/10/secure/lib/libcrypto

Jung-uk Kim jkim at FreeBSD.org
Fri Jan 23 19:17:05 UTC 2015


Author: jkim
Date: Fri Jan 23 19:17:04 2015
New Revision: 277598
URL: https://svnweb.freebsd.org/changeset/base/277598

Log:
  MFC:		r277274
  
  Update buildinf.h to make SSLeay_version(3) little bit more useful.

Modified:
  stable/10/secure/lib/libcrypto/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/secure/lib/libcrypto/Makefile
==============================================================================
--- stable/10/secure/lib/libcrypto/Makefile	Fri Jan 23 19:14:36 2015	(r277597)
+++ stable/10/secure/lib/libcrypto/Makefile	Fri Jan 23 19:17:04 2015	(r277598)
@@ -390,9 +390,9 @@ CLEANFILES=	buildinf.h opensslconf.h
 
 buildinf.h: ${.CURDIR}/Makefile
 	( echo "#ifndef MK1MF_BUILD"; \
-	echo "  /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \
-	echo "  #define CFLAGS \"$(CC)\""; \
-	echo "  #define PLATFORM \"FreeBSD-${MACHINE_ARCH}\""; \
+	echo "    /* auto-generated by util/mkbuildinf.pl for crypto/cversion.c */"; \
+	echo "    #define CFLAGS \"compiler: ${COMPILER_TYPE}\""; \
+	echo "    #define PLATFORM \"platform: FreeBSD-${MACHINE_ARCH}\""; \
 	echo "#endif" ) > ${.TARGET}
 
 .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"


More information about the svn-src-all mailing list