mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-20 02:36:27 +02:00
24 lines
680 B
Plaintext
24 lines
680 B
Plaintext
# ***************************************************************************
|
|
# IPV6_FLAGS.msvc (!INCLUDE ed by "makefile-dllmod.msvc")
|
|
# --------------------------------------------------------------------------
|
|
# (C) Copyright Enrico Sorichetti, 2012
|
|
# --------------------------------------------------------------------------
|
|
# Sets compiler flags for IPV6 support
|
|
#
|
|
# ***************************************************************************
|
|
|
|
!IFDEF DISABLE_IPV6
|
|
|
|
!MESSAGE IPV6 SUPPORT DISABLED
|
|
|
|
!ELSE
|
|
|
|
ipv6_flags =
|
|
ipv6_flags = $(ipv6_flags) /D ENABLE_IPV6
|
|
!MESSAGE IPV6 FLAGS $(ipv6_flags)
|
|
cflags = $(cflags) $(ipv6_flags)
|
|
|
|
!ENDIF
|
|
|
|
# End of Flags for IPV6 support
|