Skip to content

Commit

Permalink
add std.net.browser
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Jul 19, 2011
1 parent 8fef7af commit ac289bb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ STD_MODULES = $(addprefix std/, algorithm array ascii base64 bigint \
stream string syserror system traits typecons typetuple uni \
uri utf variant xml zip zlib)

STD_NET_MODULES = $(addprefix std/net/, isemail)
STD_NET_MODULES = $(addprefix std/net/, browser isemail)

# OS-specific D modules
EXTRA_MODULES_LINUX := $(addprefix std/c/linux/, linux socket)
Expand Down
12 changes: 10 additions & 2 deletions win32.mak
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ SRCS_3 = std\variant.d \
std\windows\charset.d \
std\windows\iunknown.d \
std\windows\registry.d \
std\windows\syserror.d
std\windows\syserror.d \
std\net\browser.d

# The separation is a workaround for bug 4904 (optlink bug 3372).
# See: http://lists.puremagic.com/pipermail/phobos/2010-September/002741.html
Expand Down Expand Up @@ -250,6 +251,7 @@ DOCS= $(DOC)\object.html \
$(DOC)\std_c_string.html \
$(DOC)\std_c_time.html \
$(DOC)\std_c_wcharh.html \
$(DOC)\std_net_browser.html \
$(DOC)\std_net_isemail.html \
$(DOC)\phobos.html

Expand All @@ -274,7 +276,7 @@ SRC_STD= std\zlib.d std\zip.d std\stdint.d std\container.d std\conv.d std\utf.d
std\regex.d std\datebase.d \
std\__fileinit.d std\gregorian.d std\exception.d std\ascii.d

SRC_STD_NET= std\net\isemail.d
SRC_STD_NET= std\net\browser.d std\net\isemail.d

SRC_STD_C= std\c\process.d std\c\stdlib.d std\c\time.d std\c\stdio.d \
std\c\math.d std\c\stdarg.d std\c\stddef.d std\c\fenv.d std\c\string.d \
Expand Down Expand Up @@ -574,6 +576,9 @@ errorfunction.obj : std\internal\math\errorfunction.d

### std\net

browser.obj : std\net\browser.d
$(DMD) -c $(DFLAGS) std\net\browser.d

isemail.obj : std\net\isemail.d
$(DMD) -c $(DFLAGS) std\net\isemail.d

Expand Down Expand Up @@ -904,6 +909,9 @@ $(DOC)\std_c_time.html : $(STDDOC) std\c\time.d
$(DOC)\std_c_wcharh.html : $(STDDOC) std\c\wcharh.d
$(DMD) -c -o- $(DFLAGS) -Df$(DOC)\std_c_wcharh.html $(STDDOC) std\c\wcharh.d

$(DOC)\std_net_browser.html : $(STDDOC) std\net\browser.d
$(DMD) -c -o- $(DFLAGS) -Df$(DOC)\std_net_browser.html $(STDDOC) std\net\browser.d

$(DOC)\std_net_isemail.html : $(STDDOC) std\net\isemail.d
$(DMD) -c -o- $(DFLAGS) -Df$(DOC)\std_net_isemail.html $(STDDOC) std\net\isemail.d

Expand Down

1 comment on commit ac289bb

@andralex
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One can tell which makefile is the better one :o).

Please sign in to comment.