Re: compiling curl-loader for mac.
Status: Alpha
Brought to you by:
coroberti
From: aaron s. <bei...@gm...> - 2007-12-10 03:17:23
|
hm. strange. it's getting through all compilations correctly except when it starts the compile for curl-loader, the last compile at the end of the make file.. ($(OBJ_DIR)/%.o: %.c $(CC) $(CFLAGS) $(PROF_FLAG) $(OPT_FLAGS) $(DEBUG_FLAGS) $(INCDIR) -c -o $(OBJ_DIR)/$*.o $<). batch.c, which requires fdsetsize.h, the first include of bites/types.h kills it. Which file is that supposed to be referencing? From curl / openssl? thanks for any help. On Dec 9, 2007 6:31 PM, aaron smith <bei...@gm...> wrote: > robert, I thought I'd open a new thread for mac install, in case anyone > else comes across this. I think I just about got it.. > > So anyway, I'm trying to install curl-loader on a Mac Intel. So far i've > done the following: > > 1. update "openssl.sl" -> (OPENSSLDIR=/usr/include/openssl) > 2. Update MakeFile (line 158) > from: cp -a $(CURL_BUILD)/include/curl ./inc/curl > to: cp -RL $(CURL_BUILD)/include/curl ./inc/curl > > I now run: > sudo make cleanall > sudo make > > The make is getting hung up on:: > > gcc -W -Wall -Wpointer-arith -pipe -DCURL_LOADER_FD_SETSIZE=20000 > -D_FILE_OFFSET_BITS=64 -g -I. -I./inc -I/usr/include/openssl/include -c -o > obj/batch.o batch.c > In file included from batch.c:23: > fdsetsize.h:27:24: error: bits/types.h: No such file or directory > make: *** [obj/batch.o] Error 1 > > In the file fdsetsize.h, it includes a bits/types.h, but that isn't here? > > Any ideas? > > Thanks all. > |