Skip to content

Commit

Permalink
regenerated configure and makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
danomatika committed Feb 18, 2014
1 parent 560c77f commit d5736e9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 16 deletions.
20 changes: 9 additions & 11 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -5211,15 +5211,13 @@ esac
# add linker flags for GCC (needed by Linaro/udoo)
if test "x$GCC" = xyes; then
case "$host_os" in
darwin*|mingw*)
;;
*)
LDFLAGS+="-Wl,--no-as-needed"
;;
esac
fi
case "$host_os" in
*linux*)
LDFLAGS="$LDFLAGS -Wl,--no-as-needed"
;;
*)
;;
esac
#########################################
##### Externals #####
Expand Down Expand Up @@ -6860,14 +6858,14 @@ fi
Source directory: $srcdir
Installation prefix: $prefix
C++ compiler: $CXX $CXXFLAGS
C++ compiler: $CXX $CXXFLAGS $LDFLAGS
Debug build: $enable_debug
" >&5
$as_echo "
rc-unitd $VERSION is now configured
Source directory: $srcdir
Installation prefix: $prefix
C++ compiler: $CXX $CXXFLAGS
C++ compiler: $CXX $CXXFLAGS $LDFLAGS
Debug build: $enable_debug
" >&6; }
2 changes: 0 additions & 2 deletions data/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,6 @@ thisdir = $(srcdir)
dist_configfiles_DATA = example_config.xml 85-rc-unitd.rules.source
configfilesdir = $(docdir)

#touch $(thisdir)/85-rc-unitd.rules

# include pd files
dist_pd_readme_DATA = $(thisdir)/pd/README
pd_readmedir = $(docdir)/pd
Expand Down
2 changes: 1 addition & 1 deletion src/lsjs/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ lsjs_SOURCES = main.cpp
AM_CPPFLAGS = $(CXXFLAGS) $(SDL_CFLAGS) $(LO_CFLAGS) $(EXTERNALS_CFLAGS)

# libs to link
AM_LDFLAGS = $(SDL_LIBS) $(LO_LIBS)
AM_LDFLAGS = $(LDFLAGS) $(SDL_LIBS) $(LO_LIBS)
all: all-am

.SUFFIXES:
Expand Down
2 changes: 1 addition & 1 deletion src/rc-unit-notifier/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ rc_unit_notifier_LDADD = -L$(top_builddir)/src/lib -lunit \
AM_CPPFLAGS = $(CXXFLAGS) $(SDL_CFLAGS) $(LO_CFLAGS) $(EXTERNALS_CFLAGS)

# libs to link
AM_LDFLAGS = $(SDL_LIBS) $(LO_LIBS)
AM_LDFLAGS = $(LDFLAGS) $(SDL_LIBS) $(LO_LIBS)
all: all-am

.SUFFIXES:
Expand Down
2 changes: 1 addition & 1 deletion src/rc-unitd/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ AM_CPPFLAGS = $(CXXFLAGS) $(SDL_CFLAGS) $(LO_CFLAGS) $(EXTERNALS_CFLAGS) \


# libs to link
AM_LDFLAGS = $(SDL_LIBS) $(LO_LIBS)
AM_LDFLAGS = $(LDFLAGS) $(SDL_LIBS) $(LO_LIBS)
all: all-am

.SUFFIXES:
Expand Down

0 comments on commit d5736e9

Please sign in to comment.