mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 11:27:39 +02:00
Early return from auth_socket system checks on Windows
No need to run through all system checks, we already know it is not possible to authenticate with AF_UNIX socket.
This commit is contained in:
parent
8ada144012
commit
54f79a0f7f
1 changed files with 4 additions and 0 deletions
|
|
@ -14,6 +14,10 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA
|
||||
|
||||
IF(WIN32)
|
||||
RETURN()
|
||||
ENDIF()
|
||||
|
||||
CHECK_CXX_SOURCE_COMPILES(
|
||||
"#define _GNU_SOURCE
|
||||
#include <sys/socket.h>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue