diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 3 | ||||
l--------- | src/apk-static.c | 1 | ||||
-rw-r--r-- | src/apk.c | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index bea288e..c9cda6a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -41,9 +41,10 @@ endif CFLAGS_ALL += -D_ATFILE_SOURCE CFLAGS_apk.o := -DAPK_VERSION=\"$(FULL_VERSION)\" +CFLAGS_apk-static.o := -DAPK_VERSION=\"$(FULL_VERSION)\" -DOPENSSL_NO_ENGINE progs-$(STATIC) += apk.static -apk.static-objs := $(apk-objs) +apk.static-objs := $(filter-out apk.o,$(apk-objs)) apk-static.o LDFLAGS_apk.static := -static LDFLAGS_apk += -nopie -L$(obj) diff --git a/src/apk-static.c b/src/apk-static.c new file mode 120000 index 0000000..bf745af --- /dev/null +++ b/src/apk-static.c @@ -0,0 +1 @@ +apk.c
\ No newline at end of file @@ -12,13 +12,17 @@ #include <stdio.h> #include <fcntl.h> #include <ctype.h> +#include <errno.h> #include <stdarg.h> #include <stdlib.h> #include <string.h> #include <getopt.h> #include <sys/stat.h> +#include <openssl/crypto.h> +#ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> +#endif #include "apk_defines.h" #include "apk_database.h" |