diff options
author | jsorg71 <jsorg71> | 2005-11-26 00:57:58 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-11-26 00:57:58 +0000 |
commit | c22e66e9aec8e9147d3e56d9350a58fea0a40c75 (patch) | |
tree | 535ace48aeedbd0ab0ca97b25a1a323ec6099021 /libxrdp/Makefile | |
parent | baf7f173aea2d77bf5b40504f948253f63a176a8 (diff) | |
download | xrdp-proprietary-c22e66e9aec8e9147d3e56d9350a58fea0a40c75.tar.gz xrdp-proprietary-c22e66e9aec8e9147d3e56d9350a58fea0a40c75.zip |
changed ssl prefix
Diffstat (limited to 'libxrdp/Makefile')
-rw-r--r-- | libxrdp/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libxrdp/Makefile b/libxrdp/Makefile index 3eb305d8..437b2af3 100644 --- a/libxrdp/Makefile +++ b/libxrdp/Makefile @@ -7,7 +7,8 @@ LIBXRDPOBJ = libxrdp.o xrdp_tcp.o xrdp_iso.o xrdp_mcs.o \ CFLAGS = -Wall -O2 -I../common -fPIC C_OS_FLAGS = $(CFLAGS) -c LDFLAGS = -shared -LIBS = -ldl -lcrypto +LIBS = -ldl +LIBS += -lcrypto CC = gcc all: libxrdp @@ -29,6 +30,6 @@ file.o: os_calls.o: $(CC) $(C_OS_FLAGS) ../common/os_calls.c + ssl_calls.o: $(CC) $(C_OS_FLAGS) ../common/ssl_calls.c - |