diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2014-03-24 11:35:27 +0100 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2014-03-24 11:43:21 +0100 |
commit | 2fc2b3a217e5479c9ee6c4484c629023bec3efec (patch) | |
tree | ecd5f5c01aea2c5315d039327d011372ffe00835 /src/modules/prefs | |
parent | c336820fb032fc5efff93cf91e4ed0a6183b032a (diff) |
prefs: Add EVIL_LIBS to build to avoid problems with missing regex.h under mingw
Thanks to Adrien Nader to pointing this out.
In the longer term we need to re-factor some parts of the elm build system to
better reflect a build under mingw to avoid spreading @EVIL_LIBS@ and such
everywhere. But for now this is a good fix
@fix
Diffstat (limited to 'src/modules/prefs')
-rw-r--r-- | src/modules/prefs/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/prefs/Makefile.am b/src/modules/prefs/Makefile.am index 72ded15c0..3f1868878 100644 --- a/src/modules/prefs/Makefile.am +++ b/src/modules/prefs/Makefile.am | |||
@@ -60,7 +60,7 @@ elm_horizontal_box.c \ | |||
60 | elm_vertical_frame.c \ | 60 | elm_vertical_frame.c \ |
61 | elm_horizontal_frame.c | 61 | elm_horizontal_frame.c |
62 | 62 | ||
63 | module_la_LIBADD = @ELEMENTARY_LIBS@ $(top_builddir)/src/lib/libelementary.la | 63 | module_la_LIBADD = @ELEMENTARY_LIBS@ $(top_builddir)/src/lib/libelementary.la @EVIL_LIBS@ |
64 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version | 64 | module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version |
65 | module_la_LIBTOOLFLAGS = --tag=disable-static | 65 | module_la_LIBTOOLFLAGS = --tag=disable-static |
66 | 66 | ||