]> git.sesse.net Git - vlc/commitdiff
Remove some leftovers from pre-libtool era
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 1 May 2011 18:13:54 +0000 (21:13 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 2 May 2011 08:01:12 +0000 (11:01 +0300)
(Note __BUILTIN__ was not used anymore as we have !__PLUGIN__)

bootstrap
extras/analyser/zsh.cpp
m4/vlc.m4
src/libvlc-module.c
src/modules/.gitignore [deleted file]
vlc-config.in.in

index 6ce643b5629f4551d0a0a8fb2ff1efe687863f80..ceeb9d9812a084c5323bd23d2b6e1b0d7909fa85 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -113,7 +113,6 @@ mv -f INSTALL.git INSTALL
 ##  files which need to be regenerated
 ##
 rm -f vlc-config.in vlc-config
-rm -f src/misc/modules_builtin.h
 rm -f stamp-h*
 
 # Shut up
index f9a7427540bd87cabc18440dec9a0d41335952b0..6b5dd133761f625ad74e19d07c9e246740c1a6ee 100644 (file)
@@ -43,7 +43,6 @@ typedef std::pair<int, std::string> mcpair;
 
 /* evil hack */
 #undef __PLUGIN__
-#undef __BUILTIN__
 #include <../src/modules/modules.h>
 
 void ParseModules( mumap &mods, mcmap &mods2 );
index 38c5b90adf47b84a2ae10b3d7bff96d3cb2e718d..e82a47c6a9467a3807269cd4dc73e1b1ef8b2cd7 100644 (file)
--- a/m4/vlc.m4
+++ b/m4/vlc.m4
@@ -6,10 +6,6 @@ dnl  Macros to add plugins or builtins and handle their flags
 m4_pattern_allow([^PKG_CONFIG(_LIBDIR)?$])
 
 
-AC_DEFUN([VLC_ADD_BUILTINS], [
-  BUILTINS="${BUILTINS} $1"
-])
-
 AC_DEFUN([VLC_ADD_PLUGIN], [
   m4_foreach_w([element], [$1], [
     [PLUGINS="${PLUGINS} ]element["]
index b5e2fca5ea2e554bda891bb81c391e9386cff5c4..73d61d8a542b7d77f0ff6e0539af1cca25700251 100644 (file)
@@ -27,7 +27,6 @@
 // Pretend we are a builtin module
 #define MODULE_NAME main
 #define MODULE_PATH main
-#define __BUILTIN__
 
 
 #ifdef HAVE_CONFIG_H
diff --git a/src/modules/.gitignore b/src/modules/.gitignore
deleted file mode 100644 (file)
index c67848d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-builtin.h
index 0673b74d47e8d9b223582c72034e1c7ed8747101..2b649c87e20d9746bc4aacd807040b5609ffb353 100644 (file)
@@ -8,7 +8,6 @@ datarootdir="@datarootdir@"
 optim="@optim@"
 
 plugins="@PLUGINS@ "
-builtins="@BUILTINS@ "
 
 cppflags=""
 cflags=""
@@ -38,7 +37,6 @@ Options:
 Modules:
         vlc                       the main VLC object
         plugin                    flags for plugin modules
-        builtin                   flags for built-in modules
         MODULE                    any available module (dummy, gtk, avi, etc.)
         libs                      flags for external libs
 BLAH
@@ -159,10 +157,6 @@ while test $# -gt 0; do
       echo_plugin=yes
       cppflags="${cppflags} -D__LIBVLC__ -D__PLUGIN__"
       ;;
-    builtin)
-      echo_builtin=yes
-      cppflags="${cppflags} -D__LIBVLC__ -D__BUILTIN__"
-      ;;
     *)
       module="$tgt"
       ;;
@@ -189,10 +183,6 @@ if test "${echo_list}" = yes; then
     echo "${plugins}"
     printf '\n'
   fi
-  if test "${echo_builtin}" = yes; then
-    echo "${builtins}"
-    printf '\n'
-  fi
   exit 0
 fi