diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-22 18:49:51 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-01-22 18:49:51 +0100 |
commit | a2595477869d5fee2f916bc857ca028e3b2fc677 (patch) | |
tree | ecfa1e465947f6bc8b47488f38d322c7b118263b /source4/build | |
parent | 907ec5ba7bac2b5431a14f02f0dc1f5e126366e2 (diff) | |
download | samba-a2595477869d5fee2f916bc857ca028e3b2fc677.tar.gz samba-a2595477869d5fee2f916bc857ca028e3b2fc677.tar.bz2 samba-a2595477869d5fee2f916bc857ca028e3b2fc677.zip |
build: Remove support for DESCRIPTION setting that is now unused.
(This used to be commit 91d7ba5202e6c375456a42c2c6861f63c7fcfc20)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/m4/public.m4 | 17 | ||||
-rw-r--r-- | source4/build/smb_build/config_mk.pm | 2 |
2 files changed, 8 insertions, 11 deletions
diff --git a/source4/build/m4/public.m4 b/source4/build/m4/public.m4 index 6d693eaeee..81da34db86 100644 --- a/source4/build/m4/public.m4 +++ b/source4/build/m4/public.m4 @@ -34,21 +34,20 @@ ENABLE = YES " ]) -dnl SMB_LIBRARY(name,description,obj_files,required_subsystems,version,so_version,cflags,ldflags,pcname) +dnl SMB_LIBRARY(name,obj_files,required_subsystems,version,so_version,cflags,ldflags,pcname) AC_DEFUN([SMB_LIBRARY], [ SMB_INFO_LIBRARIES="$SMB_INFO_LIBRARIES ################################### # Start Library $1 @<:@LIBRARY::$1@:>@ -DESCRIPTION = $2 -OBJ_FILES = $3 -PRIVATE_DEPENDENCIES = $4 -VERSION = $5 -SO_VERSION = $6 -CFLAGS = $7 -LDFLAGS = $8 -PC_NAME = $9 +OBJ_FILES = $2 +PRIVATE_DEPENDENCIES = $3 +VERSION = $4 +SO_VERSION = $5 +CFLAGS = $6 +LDFLAGS = $7 +PC_NAME = $8 ENABLE = YES # End Library $1 ################################### diff --git a/source4/build/smb_build/config_mk.pm b/source4/build/smb_build/config_mk.pm index fa3949db2e..aa075490bc 100644 --- a/source4/build/smb_build/config_mk.pm +++ b/source4/build/smb_build/config_mk.pm @@ -99,8 +99,6 @@ my $section_types = { "OBJ_FILES" => "list", - "DESCRIPTION" => "string", - "PRIVATE_DEPENDENCIES" => "list", "PUBLIC_DEPENDENCIES" => "list", |