Skip to content

Commit d4fbf9c

Browse files
author
Dave Dykstra
committed
don't build pacparse on win32 by default, missing sys/socket.h
1 parent f6c3cfa commit d4fbf9c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Makefile.win32

+2-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ PYTHON ?= python
4545

4646
.PHONY: clean pymod install-pymod
4747

48-
all: pacparser.dll pactester pacparse
48+
all: pacparser.dll pactester
4949

5050
pacparser.o: pacparser.c pac_utils.h js.lib
5151
$(CC) $(CFLAGS) -c pacparser.c -o pacparser.o
@@ -69,14 +69,12 @@ pactester: pactester.c pacparser.h pacparser.o
6969
pacparse: pacparse.c pacparser.h pacparser.o
7070
$(CC) pacparse.c pacparser.o -o pacparse -ljs -Lspidermonkey -lws2_32
7171

72-
dist: pacparser.dll pactester pacparse pacparser.def
72+
dist: pacparser.dll pactester pacparser.def
7373
if exist dist rmdir /s /q dist
7474
mkdir dist
7575
$(CP) pacparser.dll dist
7676
$(CP) pacparser.h dist
7777
$(CP) pactester.exe dist
78-
$(CP) pacparse.exe dist
79-
$(CP) pacwget dist
8078
$(CP) pacparser.def dist
8179
if exist pacparser.lib $(CP) pacparser.lib dist
8280
$(CP) ..\README.md dist\README.txt

0 commit comments

Comments
 (0)