diff -Naur dssi-1.1.1/configure.ac dssi-1.1.1-haiku/configure.ac
|
old
|
new
|
|
| 118 | 118 | esac |
| 119 | 119 | AM_CONDITIONAL(DARWIN, test x$darwin = xyes) |
| 120 | 120 | |
| | 121 | AC_CHECK_FUNCS(ftello fseeko getpt getnameinfo getopt_long strcasestr dlopen) |
| | 122 | |
| | 123 | AC_SUBST(DLFLAGS) |
| | 124 | DLFLAGS="" |
| | 125 | if test "$ac_cv_func_dlopen" = "no"; then |
| | 126 | AC_SEARCH_LIBS(dl,dlopen, [ DLFLAGS="-ldl" ] ) |
| | 127 | fi |
| | 128 | |
| 121 | 129 | dnl Set GCC warning flags |
| 122 | 130 | changequote(,)dnl |
| 123 | 131 | if test "x$GCC" = "xyes"; then |
diff -Naur dssi-1.1.1/examples/Makefile.am dssi-1.1.1-haiku/examples/Makefile.am
|
old
|
new
|
|
| 8 | 8 | |
| 9 | 9 | dssi_analyse_plugin_SOURCES = dssi_analyse_plugin.c |
| 10 | 10 | dssi_analyse_plugin_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(ALSA_CFLAGS) |
| 11 | | dssi_analyse_plugin_LDADD = $(AM_LDFLAGS) -ldl |
| | 11 | dssi_analyse_plugin_LDADD = $(AM_LDFLAGS) $(DLFLAGS) |
| 12 | 12 | |
| 13 | 13 | dssi_list_plugins_SOURCES = dssi_list_plugins.c |
| 14 | 14 | dssi_list_plugins_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(ALSA_CFLAGS) |
| 15 | | dssi_list_plugins_LDADD = $(AM_LDFLAGS) -ldl |
| | 15 | dssi_list_plugins_LDADD = $(AM_LDFLAGS) $(DLFLAGS) |
| 16 | 16 | |
| 17 | 17 | dssi_osc_send_SOURCES = dssi_osc_send.c |
| 18 | 18 | dssi_osc_send_CFLAGS = -I$(top_srcdir)/dssi $(AM_CFLAGS) $(LIBLO_CFLAGS) |