components/openssl/openssl-1.0.1/patches/29-devcrypto_engine.patch
changeset 1489 bad87e4131b9
parent 1488 04528ffd139d
child 1490 709dae0743cb
equal deleted inserted replaced
1488:04528ffd139d 1489:bad87e4131b9
     1 --- /tmp/Makefile	Mon Feb 14 14:59:22 2011
       
     2 +++ openssl-1.0.0d/engines/Makefile	Mon Feb 14 15:00:35 2011
       
     3 @@ -26,7 +26,8 @@
       
     4  APPS=
       
     5  
       
     6  LIB=$(TOP)/libcrypto.a
       
     7 -LIBNAMES= 4758cca aep atalla cswift gmp chil nuron sureware ubsec padlock capi
       
     8 +LIBNAMES= 4758cca aep atalla cswift gmp chil nuron sureware ubsec padlock capi \
       
     9 +	  devcrypto
       
    10  
       
    11  LIBSRC=	e_4758cca.c \
       
    12  	e_aep.c \
       
    13 @@ -38,7 +39,8 @@
       
    14  	e_sureware.c \
       
    15  	e_ubsec.c \
       
    16  	e_padlock.c \
       
    17 -	e_capi.c
       
    18 +	e_capi.c \
       
    19 +	e_devcrypto.c
       
    20  LIBOBJ= e_4758cca.o \
       
    21  	e_aep.o \
       
    22  	e_atalla.o \
       
    23 @@ -49,7 +51,8 @@
       
    24  	e_sureware.o \
       
    25  	e_ubsec.o \
       
    26  	e_padlock.o \
       
    27 -	e_capi.o
       
    28 +	e_capi.o \
       
    29 +	e_devcrypto.o
       
    30  
       
    31  SRC= $(LIBSRC)
       
    32  
       
    33 @@ -63,7 +66,8 @@
       
    34  	e_nuron_err.c e_nuron_err.h \
       
    35  	e_sureware_err.c e_sureware_err.h \
       
    36  	e_ubsec_err.c e_ubsec_err.h \
       
    37 -	e_capi_err.c e_capi_err.h
       
    38 +	e_capi_err.c e_capi_err.h \
       
    39 +	e_devcrypto_err.c e_devcrypto_err.h
       
    40  
       
    41  ALL=    $(GENERAL) $(SRC) $(HEADER)
       
    42  
       
    43 @@ -78,7 +82,7 @@
       
    44  		for l in $(LIBNAMES); do \
       
    45  			$(MAKE) -f ../Makefile.shared -e \
       
    46  				LIBNAME=$$l LIBEXTRAS=e_$$l.o \
       
    47 -				LIBDEPS='-L.. -lcrypto $(EX_LIBS)' \
       
    48 +				LIBDEPS='-L.. -lcrypto -lcryptoutil $(EX_LIBS)' \
       
    49  				link_o.$(SHLIB_TARGET); \
       
    50  		done; \
       
    51  	else \