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 | 91d7ba5202e6c375456a42c2c6861f63c7fcfc20 (patch) | |
tree | c00f902e38c536f1ff44250f8f6551241d68b0f2 /source/build/m4 | |
parent | e9f99732677f46d599c270cfcb5042c11d34d338 (diff) | |
download | samba-91d7ba5202e6c375456a42c2c6861f63c7fcfc20.tar.gz |
build: Remove support for DESCRIPTION setting that is now unused.
Diffstat (limited to 'source/build/m4')
-rw-r--r-- | source/build/m4/public.m4 | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/source/build/m4/public.m4 b/source/build/m4/public.m4 index 6d693eaeeea..81da34db86b 100644 --- a/source/build/m4/public.m4 +++ b/source/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 ################################### |