Skip to content

Commit

Permalink
Fix build on case-sensitive filesystems
Browse files Browse the repository at this point in the history
Rename some files to match case-sensitive paths on Fedora.
  • Loading branch information
randstr committed May 24, 2023
1 parent c845aa1 commit 4e70ea3
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2668,7 +2668,7 @@ if(BUILD_wireshark AND QT_FOUND)
${WIN_WS2_32_LIBRARY}
${WIN_VERSION_LIBRARY}
${WINSPARKLE_LIBRARIES}
$<$<BOOL:${WIN32}>:UxTheme.lib>
$<$<BOOL:${WIN32}>:uxtheme.lib>
${SPEEXDSP_LIBRARIES}
${ZLIB_LIBRARIES}
${MINIZIP_LIBRARIES}
Expand Down Expand Up @@ -2781,7 +2781,7 @@ if(BUILD_logray AND QT_FOUND)
${WIN_WS2_32_LIBRARY}
${WIN_VERSION_LIBRARY}
${WINSPARKLE_LIBRARIES}
$<$<BOOL:${WIN32}>:UxTheme.lib>
$<$<BOOL:${WIN32}>:uxtheme.lib>
${SPEEXDSP_LIBRARIES}
${ZLIB_LIBRARIES}
${MINIZIP_LIBRARIES}
Expand Down
2 changes: 1 addition & 1 deletion ui/qt/packet_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
#ifdef Q_OS_WIN
#include "wsutil/file_util.h"
#include <QSysInfo>
#include <Uxtheme.h>
#include <uxtheme.h>
#endif

// To do:
Expand Down
2 changes: 1 addition & 1 deletion writecap/pcapio.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include <sys/time.h>
#endif
#ifdef _WIN32
#include <Windows.h>
#include <windows.h>
#endif

#include <glib.h>
Expand Down
2 changes: 1 addition & 1 deletion wsutil/inet_addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#endif

#ifdef _WIN32
#include <Ws2tcpip.h> /* indirectly defines AF_ values on Windows */
#include <ws2tcpip.h> /* indirectly defines AF_ values on Windows */
#define _NTOP_SRC_CAST_ (PVOID)
#else
#define _NTOP_SRC_CAST_
Expand Down
2 changes: 1 addition & 1 deletion wsutil/interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#ifdef _WIN32
#include <winsock2.h>
#include <iphlpapi.h>
#include <Ws2tcpip.h>
#include <ws2tcpip.h>
#endif

#define WORKING_BUFFER_SIZE 15000
Expand Down
2 changes: 1 addition & 1 deletion wsutil/win32-utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "win32-utils.h"

#include <tchar.h>
#include <VersionHelpers.h>
#include <versionhelpers.h>

/* Quote the argument element if necessary, so that it will get
* reconstructed correctly in the C runtime startup code. Note that
Expand Down

0 comments on commit 4e70ea3

Please sign in to comment.