Skip to content

Commit

Permalink
remove unused -DDYNAMIC_DRIVER from c_src/Makefile
Browse files Browse the repository at this point in the history
Thanks to Richard Carlsson for pointing out this unused option.
  • Loading branch information
vinoski committed Mar 27, 2014
1 parent db48102 commit 36a3600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c_src/Makefile
Expand Up @@ -43,12 +43,12 @@ endif
../priv/lib/setuid_drv.$(DLL): setuid_drv.$(OBJ)
$(LD_SHARED) $(OUT) $@ $< $(DLL_LIBS)
setuid_drv.$(OBJ): setuid_drv.c
$(CC) -c $(FPIC) $(CFLAGS) -DDYNAMIC_DRIVER $<
$(CC) -c $(FPIC) $(CFLAGS) $<

../priv/lib/yaws_sendfile_drv.$(DLL): yaws_sendfile_drv.$(OBJ) hashtable.$(OBJ)
$(LD_SHARED) $(OUT) $@ $^ $(DLL_LIBS)
yaws_sendfile_drv.$(OBJ): yaws_sendfile_drv.c
$(CC) -c $(FPIC) $(CFLAGS) -DDYNAMIC_DRIVER $<
$(CC) -c $(FPIC) $(CFLAGS) $<
hashtable.$(OBJ): hashtable.c
$(CC) -c $(FPIC) $(CFLAGS) $<

Expand Down

0 comments on commit 36a3600

Please sign in to comment.