Skip to content

Commit

Permalink
Add libidn.a and iconv libraries if USE_IDNA=1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gisle Vanem committed Dec 17, 2004
1 parent 3590fff commit 83b7094
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/makefile.dj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ ifeq ($(USE_ZLIB),1)
CFLAGS += -DUSE_MANUAL
endif

ifeq ($(USE_IDNA),1)
EX_LIBS += $(LIBIDN_ROOT)/lib/dj_obj/libidn.a -liconv
endif

EX_LIBS += $(WATT32_ROOT)/lib/libwatt.a

CFLAGS += -DUSE_ENVIRONMENT
Expand All @@ -34,6 +38,7 @@ CSOURCES = $(CURL_SOURCES)
OBJECTS = $(addprefix $(OBJ_DIR)/, $(CURL_SOURCES:.c=.o))

all: $(OBJ_DIR) config.h $(PROGRAM)
@echo Welcome to cURL

$(PROGRAM): $(OBJECTS) ../lib/libcurl.a
$(CC) -o $@ $^ $(EX_LIBS)
Expand Down Expand Up @@ -78,4 +83,4 @@ djgpp/writeenv.o: writeenv.c setup.h config.h ../lib/config.dj ../lib/setup.h \
djgpp/writeout.o: writeout.c setup.h config.h ../lib/config.dj ../lib/setup.h \
../lib/config.h ../include/curl/curl.h ../include/curl/curlver.h \
../include/curl/easy.h ../include/curl/multi.h \
../include/curl/mprintf.h writeout.h
../include/curl/mprintf.h writeout.h

0 comments on commit 83b7094

Please sign in to comment.