diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-01-28 12:58:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:34 -0500 |
commit | ad6303f82fa862111c239b32b39f299e563a0802 (patch) | |
tree | 8534fe0fab5b44b8f50f70c46141225704e3de42 /source4/build/smb_build | |
parent | 654a21178fa7e908e3a2be42d5522ea1b1b23250 (diff) | |
download | samba-ad6303f82fa862111c239b32b39f299e563a0802.tar.gz samba-ad6303f82fa862111c239b32b39f299e563a0802.tar.bz2 samba-ad6303f82fa862111c239b32b39f299e563a0802.zip |
r13208: Clearly separate named pipes from the IPC$ NTVFS type.
This allows the easy addition of additional named pipes and removes the
circular dependencies between the CIFS, RPC and RAP servers.
Simple tests for a custom named pipe included.
(This used to be commit 898d15acbd18e3b302a856c847e08c22c5024792)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/smb_build_h.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/build/smb_build/smb_build_h.pm b/source4/build/smb_build/smb_build_h.pm index 3b178c8226..d88f98040e 100644 --- a/source4/build/smb_build/smb_build_h.pm +++ b/source4/build/smb_build/smb_build_h.pm @@ -28,7 +28,10 @@ sub _prepare_build_h($) foreach my $key (values %{$depend}) { my $DEFINE = (); - next if ($key->{TYPE} ne "LIBRARY" and $key->{TYPE} ne "SUBSYSTEM"); + next if ($key->{TYPE} ne "LIBRARY" and + $key->{TYPE} ne "SUBSYSTEM" and + $key->{TYPE} ne "BINARY" and + $key->{TYPE} ne "MODULE"); next unless defined($key->{INIT_FUNCTIONS}); $DEFINE->{COMMENT} = "$key->{TYPE} $key->{NAME} INIT"; |