From: cg Date: Sat, 23 Mar 2013 15:30:38 +0000 (+0200) Subject: Fix MSVC compilation problem in lib-src. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~526^2~111 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d7158313e21be4fb986627b38c2a5decc5844374;p=emacs.git Fix MSVC compilation problem in lib-src. lib-src/makefile.w32-in (LIB_SRC): Move before first use. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 0d7a0a4591e..03412aa23b9 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2013-03-23 cg (tiny change) + + * makefile.w32-in (LIB_SRC): Move before first use. + 2013-03-16 Paul Eggert * pop.c: Fix ERRMAX typo (Bug#13925). diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index 8d016bc16be..5ec559ff985 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -27,6 +27,7 @@ LOCAL_FLAGS = -DNO_LDAV=1 -DNO_ARCHIVES=1 -I../lib \ -I../nt/inc -I../src $(EMACS_EXTRA_C_FLAGS) LIBS = $(BASE_LIBS) $(ADVAPI32) +LIB_SRC = . # The following target is used by makefile.w32-in files in other directories. make-docfile: $(BLD)/make-docfile.exe @@ -360,7 +361,6 @@ TAGS: $(BLD)/etags.exe *.c *.h ### DEPENDENCIES ### EMACS_ROOT = .. -LIB_SRC = . SRC = $(EMACS_ROOT)/src NT_INC = $(EMACS_ROOT)/nt/inc GNU_LIB = $(EMACS_ROOT)/lib