From c60d604544107eea9e4b28e3e60640b2c06a0eec Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 6 Oct 2021 10:19:24 +0200 Subject: [PATCH] makefiles: Remove libwine_port. Signed-off-by: Alexandre Julliard --- configure | 2 -- configure.ac | 1 - libs/port/Makefile.in | 1 - tools/makedep.c | 1 - 4 files changed, 5 deletions(-) delete mode 100644 libs/port/Makefile.in diff --git a/configure b/configure index f1d9aeb24ef..d9ba80332bd 100755 --- a/configure +++ b/configure @@ -1786,7 +1786,6 @@ enable_xpsprint enable_xpssvcs enable_fonts enable_include -enable_port enable_wine enable_loader enable_nls @@ -21012,7 +21011,6 @@ wine_fn_config_makefile dlls/xpsprint enable_xpsprint wine_fn_config_makefile dlls/xpssvcs enable_xpssvcs wine_fn_config_makefile fonts enable_fonts wine_fn_config_makefile include enable_include -wine_fn_config_makefile libs/port enable_port wine_fn_config_makefile libs/wine enable_wine wine_fn_config_makefile loader enable_loader wine_fn_config_makefile nls enable_nls diff --git a/configure.ac b/configure.ac index 3fff076470e..4497e98e7bb 100644 --- a/configure.ac +++ b/configure.ac @@ -3842,7 +3842,6 @@ WINE_CONFIG_MAKEFILE(dlls/xpsprint) WINE_CONFIG_MAKEFILE(dlls/xpssvcs) WINE_CONFIG_MAKEFILE(fonts) WINE_CONFIG_MAKEFILE(include) -WINE_CONFIG_MAKEFILE(libs/port) WINE_CONFIG_MAKEFILE(libs/wine) WINE_CONFIG_MAKEFILE(loader) WINE_CONFIG_MAKEFILE(nls) diff --git a/libs/port/Makefile.in b/libs/port/Makefile.in deleted file mode 100644 index 670b272cbf1..00000000000 --- a/libs/port/Makefile.in +++ /dev/null @@ -1 +0,0 @@ -STATICLIB = libwine_port.a diff --git a/tools/makedep.c b/tools/makedep.c index 15939edfb78..88b179a9070 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -2024,7 +2024,6 @@ static struct strarray add_unix_libraries( const struct makefile *make, struct s struct strarray all_libs = empty_strarray; unsigned int i, j; - strarray_add( &all_libs, "-lwine_port" ); if (make->native_unix_lib && strcmp( make->unixlib, "ntdll.so" )) strarray_add( &all_libs, "-lntdll" ); strarray_addall( &all_libs, get_expanded_make_var_array( make, "EXTRALIBS" )); strarray_addall( &all_libs, libs );