Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libprojectM/Common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <typeinfo>
#include <cstdarg>
#include <cassert>
#include "config.h"

#ifdef _MSC_sVER
#define strcasecmp(s, t) _strcmpi(s, t)
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/libprojectM/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ AM_CPPFLAGS = \
$(FTGL_CFLAGS) $(CG_CFLAGS)

# system headers/libraries/data to install
include_HEADERS = projectM.hpp
include_HEADERS = projectM.hpp Common.hpp dlldefs.h event.h fatal.h PCM.hpp
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So Common.hpp includes config.h as of 4/5. Commit log says "Add FTGL configure flag". I can remove config.h from Common.hpp but I would break whatever was being tried with the FTGL configure flag. For places that need this flag, could we include config.h at the lower level files?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that sounds like a fine idea, yes 👍

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lib_LTLIBRARIES = libprojectM.la # public, possibly-shared library

# link flags
Expand Down