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
2f149571
Commit
2f149571
authored
Mar 09, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Remove a few no longer used definitions.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
44839493
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
34 deletions
+0
-34
configure
configure
+0
-17
configure.ac
configure.ac
+0
-14
config.h.in
include/config.h.in
+0
-3
No files found.
configure
View file @
2f149571
...
...
@@ -7788,7 +7788,6 @@ WINEPRELOADER_LDFLAGS=""
LIBEXT
=
"so"
DLLEXT
=
".so"
IMPLIBEXT
=
"def"
# Extract the first word of "ldd", so it can be a program name with args.
set
dummy ldd
;
ac_word
=
$2
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for
$ac_word
"
>
&5
...
...
@@ -8153,7 +8152,6 @@ fi
LIBEXT
=
"dll"
DLLEXT
=
""
IMPLIBEXT
=
"a"
enable_iphlpapi
=
${
enable_iphlpapi
:-
no
}
enable_kernel32
=
${
enable_kernel32
:-
no
}
enable_msvcrt
=
${
enable_msvcrt
:-
no
}
...
...
@@ -8164,12 +8162,6 @@ fi
with_x
=
${
with_x
:-
no
}
with_pthread
=
${
with_pthread
:-
no
}
crtlibs
=
""
case
$host_os
in
mingw32
*
)
crtlibs
=
"-lmsvcrt"
;;
esac
LIBWINE_SHAREDLIB
=
"libwine.dll"
LIBWINE_IMPORTLIB
=
"libwine.a"
...
...
@@ -16560,23 +16552,14 @@ fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_asm_func_def
"
>
&5
$as_echo
"
$ac_cv_asm_func_def
"
>
&6
;
}
case
"
$ac_cv_asm_func_def
"
in
".def"
)
$as_echo
"#define __ASM_FUNC(name)
\"
.def
\"
__ASM_NAME(name)
\"
; .scl 2; .type 32; .endef
\"
"
>>
confdefs.h
asm_func_header
=
".def
$asm_name_prefix
\"
#name suffix
\"
; .scl 2; .type 32; .endef"
;;
".type @function"
)
$as_echo
"#define __ASM_FUNC(name)
\"
.type
\"
__ASM_NAME(name)
\"
,@function
\"
"
>>
confdefs.h
asm_func_header
=
".type
$asm_name_prefix
\"
#name suffix
\"
,@function"
;;
".type 2"
)
$as_echo
"#define __ASM_FUNC(name)
\"
.type
\"
__ASM_NAME(name)
\"
,2
\"
"
>>
confdefs.h
asm_func_header
=
".type
$asm_name_prefix
\"
#name suffix
\"
,2"
;;
*
)
$as_echo
"#define __ASM_FUNC(name)
\"\"
"
>>
confdefs.h
asm_func_header
=
""
;;
esac
...
...
configure.ac
View file @
2f149571
...
...
@@ -710,7 +710,6 @@ AC_SUBST(WINELOADER_LDFLAGS,"")
AC_SUBST(WINEPRELOADER_LDFLAGS,"")
LIBEXT="so"
DLLEXT=".so"
IMPLIBEXT="def"
WINE_PATH_SONAME_TOOLS
WINE_CONFIG_HELPERS
...
...
@@ -724,7 +723,6 @@ case $host_os in
AC_CHECK_TOOL(DLLTOOL,dlltool,false)
LIBEXT="dll"
DLLEXT=""
IMPLIBEXT="a"
dnl Disable modules that can't be used on Windows
enable_iphlpapi=${enable_iphlpapi:-no}
enable_kernel32=${enable_kernel32:-no}
...
...
@@ -737,13 +735,6 @@ case $host_os in
with_x=${with_x:-no}
with_pthread=${with_pthread:-no}
dnl Mingw needs explicit msvcrt for linking libwine and winsock for wininet
crtlibs=""
case $host_os in
mingw32*)
crtlibs="-lmsvcrt" ;;
esac
AC_SUBST(LIBWINE_SHAREDLIB,"libwine.dll")
AC_SUBST(LIBWINE_IMPORTLIB,"libwine.a")
AC_SUBST(LIBWINE_LDFLAGS,"-shared \$(srcdir)/wine.def")
...
...
@@ -2058,19 +2049,14 @@ AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def,
ac_cv_asm_func_def=".type 2",
ac_cv_asm_func_def="unknown")])]))
AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive])
case "$ac_cv_asm_func_def" in
".def")
AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"])
asm_func_header=".def $asm_name_prefix\" #name suffix \"; .scl 2; .type 32; .endef" ;;
".type @function")
AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"])
asm_func_header=".type $asm_name_prefix\" #name suffix \",@function" ;;
".type 2")
AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"])
asm_func_header=".type $asm_name_prefix\" #name suffix \",2" ;;
*)
AC_DEFINE([__ASM_FUNC(name)], [""])
asm_func_header="" ;;
esac
...
...
include/config.h.in
View file @
2f149571
...
...
@@ -1631,9 +1631,6 @@
/* Define to a macro to define an assembly function */
#undef __ASM_DEFINE_FUNC
/* Define to a macro to generate an assembly function directive */
#undef __ASM_FUNC
/* Define to a macro to generate an assembly function with C calling
convention */
#undef __ASM_GLOBAL_FUNC
...
...
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