summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rwxr-xr-xautogen.sh4
-rw-r--r--docs/api/Doxyfile8
-rw-r--r--src/plugin.c4
4 files changed, 10 insertions, 8 deletions
diff --git a/VERSION b/VERSION
index 7179039..2d2ef05 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.2.3
+0.2.4CVS
diff --git a/autogen.sh b/autogen.sh
index 2aa7001..f698fff 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -31,7 +31,7 @@ fi
GETTEXTIZE_FLAGS=--no-changelog
AUTOPOINT_FLAGS=
-LIBTOOLIZE_FLAGS=
+LIBTOOLIZE_FLAGS=--copy
# Some OS's require /usr/local/share/aclocal
@@ -42,7 +42,7 @@ else
ACLOCAL_FLAGS='-I m4 -I /usr/local/share/aclocal'
fi
AUTOHEADER_FLAGS=-Wall
-AUTOMAKE_FLAGS='--add-missing -Wall'
+AUTOMAKE_FLAGS='--add-missing --copy -Wall'
AUTOCONF_FLAGS=-Wno-obsolete
die()
diff --git a/docs/api/Doxyfile b/docs/api/Doxyfile
index c5208e0..fb65002 100644
--- a/docs/api/Doxyfile
+++ b/docs/api/Doxyfile
@@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
PROJECT_NAME = LibRCC
PROJECT_NUMBER =
-OUTPUT_DIRECTORY = /root/xmms/librcc--main--0.1--patch-9/docs/api/
+OUTPUT_DIRECTORY = ../../docs/api/
OUTPUT_LANGUAGE = English
USE_WINDOWS_ENCODING = NO
EXTRACT_ALL = YES
@@ -58,9 +58,9 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------
-INPUT = /root/xmms/librcc--main--0.1--patch-9/src/ \
- /root/xmms/librcc--main--0.1--patch-9/ui/ \
- /root/xmms/librcc--main--0.1--patch-9/examples/
+INPUT = ../../src/ \
+ ../../ui/ \
+ ../../examples/
FILE_PATTERNS = librcc.h \
librccui.h \
example1.c \
diff --git a/src/plugin.c b/src/plugin.c
index 68e20e8..b3289b7 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -103,6 +103,7 @@ rcc_plugin_handle rccPluginGetFreeHandle(rcc_plugin_type type) {
}
rcc_plugin_handle rccPluginLoad(rcc_plugin_type type, const char *name) {
+#ifdef RCC_PLUGINS
void *res;
void *infofunc;
char *pluginfn;
@@ -145,7 +146,8 @@ rcc_plugin_handle rccPluginLoad(rcc_plugin_type type, const char *name) {
default:
return NULL;
}
-
+#endif /* RCC_PLUGINS */
+
return NULL;
}