Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c0f4fc49
Commit
c0f4fc49
authored
Jan 11, 2009
by
Andrey Turkin
Committed by
Alexandre Julliard
Jan 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
programs: Add cacls stub.
parent
1c56d293
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
0 deletions
+58
-0
.gitignore
.gitignore
+1
-0
configure
configure
+10
-0
configure.ac
configure.ac
+1
-0
Makefile.in
programs/cacls/Makefile.in
+15
-0
cacls_main.c
programs/cacls/cacls_main.c
+31
-0
No files found.
.gitignore
View file @
c0f4fc49
...
...
@@ -223,6 +223,7 @@ loader/wine.de.man
loader/wine.fr.man
loader/wine.man
programs/Makeprog.rules
programs/cacls/cacls
programs/clock/clock
programs/cmd/cmd
programs/cmdlgtst/cmdlgtst
...
...
configure
View file @
c0f4fc49
...
...
@@ -26929,6 +26929,15 @@ programs/Makefile: programs/Makefile.in Make.rules"
ac_config_files
=
"
$ac_config_files
programs/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/cacls/Makefile"
test
"x
$enable_cacls
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
cacls"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
cacls"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
programs/cacls/Makefile: programs/cacls/Makefile.in programs/Makeprog.rules"
ac_config_files
=
"
$ac_config_files
programs/cacls/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/clock/Makefile"
test
"x
$enable_clock
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
clock"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
...
...
@@ -28414,6 +28423,7 @@ do
"libs/wpp/Makefile") CONFIG_FILES="
$CONFIG_FILES
libs/wpp/Makefile" ;;
"loader/Makefile") CONFIG_FILES="
$CONFIG_FILES
loader/Makefile" ;;
"programs/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/Makefile" ;;
"programs/cacls/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/cacls/Makefile" ;;
"programs/clock/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/clock/Makefile" ;;
"programs/cmd/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/cmd/Makefile" ;;
"programs/cmdlgtst/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/cmdlgtst/Makefile" ;;
...
...
configure.ac
View file @
c0f4fc49
...
...
@@ -2144,6 +2144,7 @@ WINE_CONFIG_MAKEFILE([libs/wine/Makefile],[Make.rules])
WINE_CONFIG_MAKEFILE([libs/wpp/Makefile],[Make.rules])
WINE_CONFIG_MAKEFILE([loader/Makefile],[Make.rules],[],[ALL_TOP_DIRS])
WINE_CONFIG_MAKEFILE([programs/Makefile],[Make.rules],[],[ALL_TOP_DIRS])
WINE_CONFIG_MAKEFILE([programs/cacls/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/clock/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/cmd/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/cmdlgtst/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS])
...
...
programs/cacls/Makefile.in
0 → 100644
View file @
c0f4fc49
EXTRADEFS
=
-DWINE_NO_UNICODE_MACROS
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
cacls.exe
APPMODE
=
-mconsole
IMPORTS
=
kernel32
C_SRCS
=
\
cacls_main.c
@MAKE_PROG_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
programs/cacls/cacls_main.c
0 → 100644
View file @
c0f4fc49
/*
* ACL viewer/editor stub
* Copyright (C) 2009 Andrey Turkin
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdlib.h>
#include <stdio.h>
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
cacls
);
int
main
(
int
argc
,
char
**
argv
)
{
WINE_FIXME
(
"This is dummy cacls, not performing ACL manipulations
\n
"
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment